* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #160a2d 35%, #1e113a 70%, #000000 100%);
    color: #f3f4f6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.bg-element-1 {
    top: 5rem;
    left: 3.3;
    width: 18rem;
    height: 18rem;
    background: #160a2d;
    animation: float 6s ease-in-out infinite;
}

.bg-element-2 {
    bottom: 5rem;
    right: 3.3;
    width: 24rem;
    height: 24rem;
    background: #1e113a;
    animation: float 6s ease-in-out infinite 2s;
}

.bg-element-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16rem;
    height: 16rem;
    background: #160a2d;
    animation: float 6s ease-in-out infinite 4s;
}

.navbar {
    border-bottom: 1px solid rgba(22, 10, 45, 0.3);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 50;
    animation: slideDown 0.6s ease-out;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.logo {
    font-size: 3.3;
    font-weight: bold;
    color: #6c3aa5;
    -webkit-text-fill-color: #6c3aa5;
    background: none;
    animation: none;
}

.nav-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    background: none;
    border: none;
    color: #a3a0b3;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideDown 0.6s ease-out;
}

.tab:nth-child(1) {
    animation-delay: 0.1s;
}

.tab:nth-child(2) {
    animation-delay: 0.2s;
}

.tab:nth-child(3) {
    animation-delay: 0.3s;
}

.tab:nth-child(4) {
    animation-delay: 0.4s;
}

.tab:hover {
    background: rgba(22, 10, 45, 0.3);
    color: #d0c8e0;
    transform: scale(1.05);
}

.tab.active {
    background: #160a2d;
    color: white;
    box-shadow: 0 0 20px rgba(22, 10, 45, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
}

.content {
    position: relative;
    z-index: 10;
    padding: 3rem 1rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.card {
    background: linear-gradient(135deg, rgba(22, 10, 45, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(22, 10, 45, 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    transition: all 0.3s ease;
    animation: scaleIn 0.5s ease-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(22, 10, 45, 0.3);
}

.card-title {
    font-size: 3.3;
    font-weight: bold;
    color: #6c3aa5;
    -webkit-text-fill-color: #6c3aa5;
    background: none;
    animation: none;
    margin-bottom: 1.5rem;
}

.card-content {
    space-y: 1.5rem;
}

.card-content>*+* {
    margin-top: 1.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, #160a2d, #1e113a);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #1e113a, #160a2d);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(22, 10, 45, 0.6);
}

.btn-secondary {
    border: 1px solid #160a2d;
    color: #a3a0b3;
    background: transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(22, 10, 45, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(22, 10, 45, 0.6);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #160a2d;
    border-radius: 9999px;
    color: #a3a0b3;
    animation: pulseGlow 2s ease-in-out infinite;
}

.update-block {
    background: rgba(22, 10, 45, 0.3);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(22, 10, 45, 0.2);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out;
}

.update-block:nth-child(odd) {
    animation-delay: 0.1s;
}

.update-block:nth-child(even) {
    animation-delay: 0.2s;
}

.update-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(22, 10, 45, 0.6);
}

.update-block h3 {
    color: #4f25ab;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.update-block ul {
    list-style: none;
    padding-left: 0;
}

.update-block li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.update-block li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #1e113a;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(22, 10, 45, 0.3);
    border: 1px solid rgba(22, 10, 45, 0.2);
    color: #a3a0b3;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out;
}

.contact-link:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-link:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-link:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-link:nth-child(4) {
    animation-delay: 0.4s;
}

.contact-link:hover {
    background: rgba(22, 10, 45, 0.5);
    border-color: rgba(22, 10, 45, 0.4);
    color: #d0c8e0;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(22, 10, 45, 0.6);
}

.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(22, 10, 45, 0.3);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
    animation: slideUp 0.6s ease-out;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(22, 10, 45, 0.3);
    border: 1px solid rgba(22, 10, 45, 0.2);
    color: #a3a0b3;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(22, 10, 45, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(22, 10, 45, 0.6);
}

.social-icon {
    width: 2rem;
    height: 2rem;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
}

.icon-sparkles::before {
    content: '✨';
    font-size: 1.5rem;
}

.icon-zap::before {
    content: '⚡';
    font-size: 1.5rem;
    color: #fbbf24;
}

.icon-download::before {
    content: '⬇️';
    font-size: 1.5rem;
}

.icon-message::before {
    content: '💬';
    font-size: 1.5rem;
}

.icon-users::before {
    content: '👥';
    font-size: 1.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(22, 10, 45, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(22, 10, 45, 0.8);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@media (max-width:768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-tabs {
        width: 100%;
        justify-content: center;
    }

    .tab {
        flex: 1;
        text-align: center;
    }

    .card-title {
        font-size: 2rem;
    }

    .bg-element-1,
    .bg-element-2,
    .bg-element-3 {
        width: 12rem;
        height: 12rem;
    }
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    padding: 1rem 0;
    backdrop-filter: blur(5px);
    background: transparent;
    z-index: 1000;
}

@keyframes fadeInSpinReverse {
    0% {
        opacity: 0;
        transform: rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: rotate(-360deg);
    }
}

.logo-fade-spin-reverse {
    animation: fadeInSpinReverse 2.5s ease forwards;
}