@font-face {
    font-family: 'Agrandir';
    src: url(../assets/fonts/Agrandir-Regular.otf);
}

@font-face {
    font-family: 'Agrandirlight';
    src: url(../assets/fonts/Agrandir-Narrow.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Agrandir', 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8138e2, #279aeb);
}

/* Gradient backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #ff5eeb 0%, #8138e2 50%, #279aeb 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #ff5eeb 0%, #8138e2 50%, #279aeb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utility Classes */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.back-button {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.back-button i {
    margin-bottom: 0.3rem;
}

.back-button:hover {
    color: #ff5eeb;
    border-color: rgba(255, 94, 235, 0.3);
    background: rgba(255, 94, 235, 0.1);
    transform: translateX(5px);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 94, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(129, 56, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(39, 154, 235, 0.1) 0%, transparent 50%);
}

.beta-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.beta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.beta-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(255, 94, 235, 0.2), rgba(129, 56, 226, 0.2));
    border: 2px solid #ff5eeb;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #ff5eeb;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        box-shadow: 0 0 0 0 #ff5eeb66;
    }
    50% {
        box-shadow: 0 0 0 15px #ff5eeb00;
    }
}

.beta-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.beta-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Warning Cards */
.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    animation: fadeInUp 1s ease 0.4s both;
}

.warning-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
}

.warning-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(255, 94, 235, 0.2), rgba(129, 56, 226, 0.2));
    color: #ff5eeb;
}

.warning-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ff5eeb;
}

.warning-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Info Section */
.info-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: fadeInUp 1s ease 0.6s both;
}

.info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-list {
    list-style: none;
    margin: 2rem 0;
}

.info-list li {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    color: #ff5eeb;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-list li strong {
    color: #ff5eeb;
}

/* Confirmation Section */
.confirmation-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 3rem;
    margin: 4rem 0;
    border: 2px solid rgba(255, 94, 235, 0.2);
    text-align: center;
    animation: fadeInUp 1s ease 0.8s both;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ff5eeb;
    cursor: pointer;
    position: relative;
    bottom: 3px;
}

.checkbox-container label {
    cursor: pointer;
    user-select: none;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    margin: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
    color: #ffffff;
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary.enabled {
    opacity: 1;
    cursor: pointer;
}

.btn-primary.enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 94, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #666;
}

.btn-secondary:hover {
    background: #666;
    transform: translateY(-2px);
}

.action-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Support Section */
.support-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 28px;
    padding: 3.5rem;
    margin: 4rem 0;
    border: 2px solid rgba(255, 94, 235, 0.2);
    text-align: center;
    animation: fadeInUp 1s ease 0.8s both;
    position: relative;
    overflow: hidden;
}
.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff5eeb, #8138e2, #279aeb);
}
.support-section h3 {
    color: #ff5eeb;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border: none;
    padding: 0;
}
.support-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.support-link {
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 2px solid #8138e2;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}
.support-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}
.support-link:hover::before {
    left: 100%;
}
.support-link:hover {
    background: #8138e2;
    box-shadow: 0 15px 40px rgba(129, 56, 226, 0.4);
}
.support-link.primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: none; /* Remove direct background */
    border: none;
}

.support-link.primary::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
}
.support-link.primary:hover {
    box-shadow: 0 15px 40px rgba(255, 94, 235, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .beta-header h1 {
        font-size: 2.5rem;
    }

    .beta-header p {
        font-size: 1.1rem;
    }

    .warning-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .warning-card,
    .info-section,
    .confirmation-section,
    .support-section {
        padding: 2rem;
    }
    .support-links {
        flex-direction: column;
        align-items: center;
    }
    .support-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .info-section h2 {
        font-size: 2rem;
    }

    .checkbox-container {
        flex-direction: row;
        gap: 1rem;
        text-align: left;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .main-content {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .beta-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .warning-card,
    .info-section,
    .confirmation-section,
    .support-section {
        padding: 1.5rem;
    }

    .warning-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .support-links {
        flex-direction: column;
    }
}