
html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #1a365d;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff6b35;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.cta-button {
    background: #ff6b35;
    color: white !important;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    font-weight: bold;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
}

/* Hero Section */
.hero {
    height: calc(100vh - 100px);
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.6;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    animation: fadeInScale 1.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.scroll-button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    font-weight: bold;
    letter-spacing: 0.5px;
}

.scroll-button:hover {
    background: #e55a2b;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 35px;
    height: 35px;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
    transform: rotate(0deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%) rotate(45deg);
    }
    40% {
        transform: translateY(-15px) translateX(-50%) rotate(45deg);
    }
    60% {
        transform: translateY(-8px) translateX(-50%) rotate(45deg);
    }
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: #1a365d;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background: #ff6b35;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 5px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
    margin-top: 3rem;
}

.step {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #e2e8f0;
}

.step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.6);
    border: 3px solid white;
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a365d;
    font-weight: bold;
}

.step p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Golden Rule */
.golden-rule {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    position: relative;
    overflow: hidden;
}

.golden-rule::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float1 10s infinite ease-in-out;
}

.golden-rule::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float2 12s infinite ease-in-out reverse;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -30px); }
}

.news-flash {
    background: white;
    border: 5px dashed #ff6b35;
    border-radius: 25px;
    padding: 4rem;
    text-align: center;
    position: relative;
    animation: pulseBorder 2s infinite alternate, popIn 1s ease-out;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

@keyframes pulseBorder {
    from { border-color: #ff6b35; }
    to { border-color: #e55a2b; }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.news-flash h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    color: #1a365d;
    font-weight: bold;
    text-transform: uppercase;
}

.news-flash p {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.news-flash strong {
    color: #ff6b35;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f7fafc;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question h2 {
    font-size: 2.5rem;
    color: #1a365d;
    line-height: 1.3;
    font-weight: bold;
}

.faq-answer p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Official Rules */
.rules,
.faq-section {
    padding: 6rem 0;
    background: white;
}

.rules h2,
.faq-section h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    color: #1a365d;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.rules h2::after,
.faq-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background: #ff6b35;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 5px;
}

.rules-toggle,
.faq-toggle {
    text-align: center;
    margin-bottom: 3rem;
}

.rules-toggle button,
.faq-toggle button {
    background: #1a365d;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

.rules-toggle button:hover,
.faq-toggle button:hover {
    background: #2d3748;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.5);
}

.rules-content,
.faq-content {
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

.rules-content.hidden,
.faq-content.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin-bottom: 0;
}

.rules-scroll,
.faq-scroll {
    max-height: 250px;
    overflow-y: auto;
    padding: 2.5rem;
    background: #f7fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
    text-align: justify;
}

.rules-scroll h3,
.faq-scroll h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.rules-scroll h4,
.faq-scroll h4{
    color: #2d3748;
    margin: 2rem 0 0.8rem;
    font-size: 1.4rem;
}

.rules-scroll p,
.faq-scroll p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Action Section */
.action {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a365d, #2d3748);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulseBackground 4s infinite alternate;
}

@keyframes pulseBackground {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(1.2); opacity: 0.8; }
}

.action h2 {
    font-size: 3.5rem;
    margin-bottom: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.action-form {
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.price-display {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    color: #ff6b35;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    animation: rubberBand 1s ease-out;
}

@keyframes rubberBand {
    from { transform: scale3d(1, 1, 1); }
    30% { transform: scale3d(1.25, 0.75, 1); }
    40% { transform: scale3d(0.75, 1.25, 1); }
    50% { transform: scale3d(1.15, 0.85, 1); }
    65% { transform: scale3d(0.95, 1.05, 1); }
    75% { transform: scale3d(1.05, 0.95, 1); }
    to { transform: scale3d(1, 1, 1); }
}

.currency {
    vertical-align: top;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 2.5rem;
    text-align: left;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1.6;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #ff6b35;
    border-color: #ff6b35;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.7);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: checkmarkPop 0.3s ease-out;
}

@keyframes checkmarkPop {
    from { transform: translate(-50%, -50%) scale(0); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 550px;
    align-items: center;
}

.submit-button:hover {
    background: linear-gradient(45deg, #e55a2b, #ff6b35);
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.9);
}

.submit-button:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #ff6b35;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid #2d3748;
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 2.8rem;
    }
    .news-flash h2 {
        font-size: 2.2rem;
    }
    .news-flash p {
        font-size: 1.1rem;
    }
    .faq-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .faq-question {
        margin-bottom: 2rem;
    }
    .rules h2 {
        font-size: 2.8rem;
    }
    .action h2 {
        font-size: 3rem;
    }
    .price-display {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .news-flash {
        padding: 2.5rem;
    }
    .faq-content {
        padding: 2rem;
    }
    .rules-scroll {
        padding: 1.5rem;
    }
    .action-form {
        padding: 2.5rem;
    }
    .price-display {
        font-size: 3.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section {
        padding: 0 15px;
    }
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .container {
        padding: 0 15px;
    }
    .step {
        padding: 1.5rem;
    }
    .news-flash {
        padding: 1.5rem;
    }
    .price-display {
        font-size: 3rem;
    }
    .submit-button {
        font-size: 1.3rem;
        padding: 1.2rem 1.5rem;
    }
    .checkbox-container {
        font-size: 1rem;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.rules-content {
    overflow: hidden;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.5s ease-in-out, margin 0.5s ease-in-out;
}

.rules-content.hidden {
    height: 0 !important;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Hero section specific animations */
.animate-hero-title {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
}

.animate-hero-subtitle {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.4s;
}

.animate-scroll-button {
    animation: zoomIn 1s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.policy-checkbox-container {
    margin: 1rem auto 0 auto;
    max-width: 900px;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    position: relative;
    gap: 0.5rem;
}

.policy-checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkmark {
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: background-color 0.2s, border-color 0.2s;
}

.policy-checkbox-container:hover .custom-checkmark {
    border-color: #999;
}

.policy-checkbox-container input:checked + .custom-checkmark {
    background-color: #007BFF;
    border-color: #007BFF;
}

.policy-checkbox-container input:checked + .custom-checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    user-select: none;
}

.checkbox-label a {
    color: #007BFF;
    text-decoration: underline;
}

.checkbox-label a:hover {
    text-decoration: none;
}

.registration-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: float 3s ease-in-out infinite;
}

.header-icon i {
    font-size: 32px;
    color: white;
}

.registration-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.registration-header p {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 400;
}

/* Form section styles */
.form-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.section-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header i {
    color: #667eea;
    font-size: 1.2rem;
}

.section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #667eea, transparent);
    margin-left: 20px;
    border-radius: 1px;
}

.age-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 10px;
}

/* Form row and group styles */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: #e53e3e;
    font-weight: 600;
}

.optional {
    color: #a0aec0;
    font-weight: 400;
    font-style: italic;
}

/* Input styles */
.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    background: transparent;
    font-size: 1rem;
    color: #2d3748;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-bottom-color: #667eea;
    transform: scale(1.02);
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.form-group input:focus + .input-underline,
.form-group select:focus + .input-underline {
    width: 100%;
}

/* Date input wrapper */
.date-input-wrapper {
    position: relative;
}

.date-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    pointer-events: none;
}

/* Select wrapper */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper:hover .select-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* Guardian section styles */
.guardian-section {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(240, 147, 251, 0.2);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alert styles */
.alert {
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.alert.success {
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.3);
    color: #2f855a;
}

.alert.error {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    color: #c53030;
}

/* Terms Section */
.terms-section {
    background: #f7fafc;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e2e8f0;
}

.registration-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

