* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-size: 16px; /* Bootstrap 3 base font size */
}

.primary-color { color: #0D32BF; }
.secondary-color { color: #FF4834; }
.bg-primary { background: #0D32BF; }
.bg-secondary { background: #FF4834; }

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 2.4rem; /* Increased from 1.8rem */
    font-weight: bold;
    color: #0D32BF;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-bottom: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.8rem; /* Increased from default */
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0D32BF;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0D32BF 0%, #1a4fff 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem; /* Increased from 3rem */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content .subtitle {
    font-size: 1.6rem; /* Increased from 1.3rem */
    color: #FF4834;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-content .date-info {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem; /* Added explicit size */
}

.cta-button {
   background:#FF4834;
    color: var(--white);
    padding: 18px 36px; /* Increased padding */
    border: none;
    color:#fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.4rem; /* Added explicit font size */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: #e63e2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 72, 52, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 18px 36px; /* Increased padding */
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem; /* Added explicit font size */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.cta-button.secondary:hover{
     background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    /* background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite; */
}

.floating-card i {
    font-size: 5rem; /* Increased from 4rem */
    color: #FF4834;
    margin-bottom: 1rem;
}

.floating-card h3 {
    color: #0D32BF;
    margin-bottom: 0.5rem;
    font-size: 1.5rem; /* Added explicit size */
}

@keyframes float {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(-5deg) translateY(-20px); }
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem; /* Increased from 2.5rem */
    font-weight: 700;
    color: #0D32BF;
    margin-bottom: 3rem;
}
.main-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.problems-list {
    /* background: #f8f9ff;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0; */
}

.problems-list ul {
    list-style: none;
}

.problems-list li {
    padding: 1rem 0;
    list-style-type: none;
    /* padding-left: 3rem; */
    position: relative;
    font-size: 1.4rem /* Increased from 1.1rem */
}


.strategies-list {
    background: linear-gradient(135deg, #0D32BF 0%, #1a4fff 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.strategies-list ol {
    list-style: none;
    counter-reset: strategy-counter;
}

.strategies-list li {
    padding: 1rem 0;
    padding-left: 4rem;
    position: relative;
    font-size: 1.4rem; /* Increased from 1.1rem */
    counter-increment: strategy-counter;
}

.strategies-list li::before {
    content: counter(strategy-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    background: #FF4834;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem; /* Added explicit font size */
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0D32BF 0%, #FF4834 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3.5rem; /* Increased from 3rem */
    color: #0D32BF;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #0D32BF;
    font-size: 2rem; /* Increased from 1.5rem */
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.4rem; /* Added explicit font size */
    line-height: 1.6;
}

/* Special Offer */
.special-offer {
  background: linear-gradient(135deg, #1747ee 0%, #6180eb 100%);
    color: white;
    padding: 4rem;
    border-radius: 30px;
    margin: 4rem 0;
    /* text-align: center; */
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.special-offer h2 {
    font-size: 3rem; /* Increased from 2.5rem */
    margin-bottom: 2rem;
    text-align: center;
}

.special-offer p {
    font-size: 1.6rem; /* Added explicit font size */
    margin-bottom: 1.5rem;
}

.price-highlight {
    font-size: 3.5rem; /* Increased from 3rem */
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Category Tags */
.categories {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.category-tag {
    background: #f8f9ff;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #0D32BF;
    font-size: 1.6rem; /* Added explicit font size */
}

.category-tag.highlight {
    background: #0D32BF;
    color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #FF4834;
    margin-bottom: 1rem;
    font-size: 1.5rem; /* Increased from 1.3rem */
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.5rem 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    /* Added explicit font size */
}

.footer-section ul li a:hover {
    color: #FF4834;
}

.footer-section p {
     /* Added explicit font size */
    line-height: 1.6;
}

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

.social-links a {
    width: 45px; /* Increased from 40px */
    height: 45px; /* Increased from 40px */
    background: #FF4834;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 1.4rem; /* Added explicit font size */
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 1rem; /* Added explicit font size */
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Slightly smaller base font on mobile */
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Increased from 2rem */
    }

    .hero-content .subtitle {
        font-size: 1.3rem; /* Adjusted for mobile */
    }

    .section-title {
        font-size: 2.2rem; /* Adjusted for mobile */
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .categories {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .special-offer h2 {
        font-size: 2.2rem; /* Adjusted for mobile */
    }

    .price-highlight {
        font-size: 2.8rem; /* Adjusted for mobile */
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* join css */
  .reg-form-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .reg-form-wrapper {
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
        }

        .reg-form-card {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(16, 53, 198, 0.1);
            overflow: hidden;
            border: 1px solid #e9ecef;
        }

        .reg-form-header {
            background: linear-gradient(135deg, #1035C6 0%, #0d2ea8 100%);
            color: white;
            padding: 30px 20px;
            text-align: center;
            position: relative;
        }

        .reg-form-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .reg-form-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .reg-form-subtitle {
            font-size: 16px;
            font-weight: 400;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .reg-form-body {
            padding: 40px 30px;
        }

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

        .reg-form-label {
            display: block;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .reg-form-required {
            color: #e74c3c;
            margin-left: 3px;
        }

        .reg-form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }

        .reg-form-input:focus {
            outline: none;
            border-color: #1035C6;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(16, 53, 198, 0.1);
        }

        .reg-form-input:hover {
            border-color: #bdc3c7;
        }

        .reg-form-captcha {
            margin: 25px 0;
            display: flex;
            justify-content: center;
        }

        .reg-form-footer {
            background-color: #f8f9fa;
            padding: 30px;
            border-top: 1px solid #e9ecef;
            text-align: center;
        }

        .reg-form-terms {
            font-size: 12px;
            color: #6c757d;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .reg-form-terms-highlight {
            color: #e74c3c;
            font-weight: 700;
            font-size: 14px;
        }

        .reg-form-terms-link {
            color: #1035C6;
            text-decoration: none;
            font-weight: 600;
        }

        .reg-form-terms-link:hover {
            text-decoration: underline;
        }

        .reg-form-submit {
            background: linear-gradient(135deg, #1035C6 0%, #0d2ea8 100%);
            color: white;
            border: none;
            padding: 14px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .reg-form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(16, 53, 198, 0.3);
        }

        .reg-form-submit:active {
            transform: translateY(0);
        }

        .reg-form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .reg-form-submit:hover::before {
            left: 100%;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .reg-form-container {
                padding: 15px;
            }

            .reg-form-header {
                padding: 25px 15px;
            }

            .reg-form-title {
                font-size: 24px;
            }

            .reg-form-subtitle {
                font-size: 14px;
            }

            .reg-form-body {
                padding: 30px 20px;
            }

            .reg-form-footer {
                padding: 25px 20px;
            }

            .reg-form-input {
                font-size: 16px; /* Prevents zoom on iOS */
            }
        }

        @media (max-width: 480px) {
            .reg-form-container {
                padding: 10px;
            }

            .reg-form-header {
                padding: 20px 15px;
            }

            .reg-form-title {
                font-size: 22px;
            }

            .reg-form-body {
                padding: 25px 15px;
            }

            .reg-form-footer {
                padding: 20px 15px;
            }

            .reg-form-submit {
                width: 100%;
                padding: 16px;
            }
        }

        /* Animation for form appearance */
        .reg-form-card {
            animation: slideUp 0.6s ease-out;
        }

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

        /* Input validation styles */
        .reg-form-input:invalid {
            /* border-color: #e74c3c; */
        }

        .reg-form-input:valid {
            /* border-color: #27ae60; */
        }

        /* Loading state for submit button */
        .reg-form-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
        /* contest */
       .contest-main-container {
             max-width: 1200px;
            margin: 0 auto;
        
            /* border-radius: 16px; */
            /* box-shadow: 0 10px 40px rgba(16, 57, 207, 0.1); */
            overflow: hidden;
            position: relative;
        }

        .contest-main-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #1039CF 0%, #FF4834 100%);
        }

        .contest-header-section {
            padding: 40px 30px 20px;
            text-align: center;
            background: linear-gradient(135deg, #1039CF 0%, #0f2db8 100%);
            color: white;
            position: relative;
            height: 250px;
            /* overflow: hidden; */
        }

        .contest-header-section::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 20px;
            background: white;
            border-radius: 20px 20px 0 0;
        }

        .contest-title-main {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .contest-subtitle {
            font-size: 1.4rem;
            opacity: 0.9;
            font-weight: 400;
        }

        .contest-management-notice {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 16px 24px;
            margin: 20px 30px;
            border-radius: 12px;
            border-left: 4px solid #1039CF;
         
            color: #1565c0;
        }

        .contest-content-section {
            padding: 30px;
        }

        .contest-banner-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contest-banner-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(16, 57, 207, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(30px, -30px);
        }

        .contest-banner-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(16, 57, 207, 0.15);
            border-color: #1039CF;
        }

        .contest-banner-image {
            flex-shrink: 0;
            width: 120px;
            height: 120px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .contest-banner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .contest-banner-card:hover .contest-banner-image img {
            transform: scale(1.05);
        }

        .contest-banner-details {
            flex: 1;
        }

        .contest-banner-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1039CF;
            margin-bottom: 12px;
        }

        .contest-banner-description {
            font-size: 1.4rem;
            color: #64748b;
            line-height: 1.6;
        }

        .contest-form-container {
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid #e2e8f0;
        }

        .contest-form-header {
           background: linear-gradient(135deg, #3e58cb 0%, #001886 100%);
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            margin-bottom: 30px;
            font-size: 1.6rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(255, 72, 52, 0.3);
        }

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

        .contest-form-label {
            display: block;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
            font-size: 1.4rem;
        }

        .contest-form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1.4rem;
            background: white;
            transition: all 0.3s ease;
            outline: none;
        }

        .contest-form-input:focus {
            border-color: #1039CF;
            box-shadow: 0 0 0 4px rgba(16, 57, 207, 0.1);
            transform: translateY(-1px);
        }

        .contest-terms-section {
            text-align: center;
            margin: 25px 0;
            font-size: 0.95rem;
            color: #64748b;
        }

        .contest-terms-link {
            color: #1039CF;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contest-terms-link:hover {
            color: #0c2fa3;
            text-decoration: underline;
        }

        .contest-submit-button {
            width: auto;

            padding: 18px;
            background: linear-gradient(135deg, #FF4834 0%, #e53e3e 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.4rem;
            font-weight: 700;
            cursor: pointer;
        
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 20px rgba(255, 72, 52, 0.3);
        }

        .contest-submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 72, 52, 0.4);
            background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
        }

        .contest-submit-button:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contest-page-wrapper {
                padding: 10px;
            }

            .contest-header-section {
                padding: 30px 20px 15px;
            }

            .contest-title-main {
                font-size: 2rem;
            }

            .contest-subtitle {
                font-size: 1rem;
            }

            .contest-management-notice {
                margin: 15px 20px;
                padding: 12px 16px;
                font-size: 1.2rem;
            }

            .contest-content-section {
                padding: 20px;
            }

            .contest-banner-card {
                flex-direction: column;
                text-align: center;
                gap: 20px;
                padding: 25px 20px;
            }

            .contest-banner-image {
                width: 100px;
                height: 100px;
            }

            .contest-banner-title {
                font-size: 1.5rem;
            }

            .contest-banner-description {
                font-size: 1.4rem;
            }

            .contest-form-container {
                padding: 20px;
            }

            .contest-form-input {
                padding: 14px 16px;
            }

            .contest-submit-button {
                padding: 16px;
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .contest-title-main {
                font-size: 1.8rem;
            }

            .contest-banner-title {
                font-size: 1.3rem;
            }

            .contest-form-header {
                padding: 16px;
                font-size: 1.4rem;
            }

            .contest-banner-card {
                padding: 20px 15px;
            }

            .contest-form-container {
                padding: 15px;
            }
        }

        /* Animation */
        @keyframes contest-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contest-main-container {
            animation: contest-fadeInUp 0.6s ease-out;
        }

        /* Loading state for button */
        .contest-submit-button.loading {
            background: #94a3b8;
            cursor: not-allowed;
            transform: none;
        }

        .contest-submit-button.loading:hover {
            transform: none;
            box-shadow: 0 6px 20px rgba(148, 163, 184, 0.3);
        }