* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003366;
    --secondary-color: #0066cc;
    --accent-color: #ff6b35;
    --gold-color: #ffd700;
    --purple-color: #8b5cf6;
    --purple-dark: #6d28d9;
    --black-color: #000000;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f4e4c1;
    --bg-white: #f5f1e8;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #f5f1e8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-color), var(--gold-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-color), var(--gold-color));
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 100px;
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    background-image: url('images/backimg1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #f8f9fa;
}

.hero .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(255, 215, 0, 0.08) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(245, 241, 232, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--purple-color) 0%, var(--primary-color) 50%, var(--gold-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-prize {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.prize-label {
    font-size: 0.9rem;
    color: var(--purple-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.prize-amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-color) 0%, #ffed4e 50%, var(--gold-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--purple-color) 0%, var(--purple-dark) 50%, var(--black-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    animation: fadeInUp 0.8s ease 0.6s both;
    border: 2px solid var(--gold-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-color) 50%, var(--purple-dark) 100%);
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.floating-card {
    position: absolute;
    width: 200px;
    height: 250px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(107, 33, 168, 0.1));
    border-color: rgba(139, 92, 246, 0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0.9;
    transition: var(--transition);
}

.card-1:hover .card-image {
    opacity: 1;
    transform: scale(1.05);
}

.card-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.1));
    border-color: rgba(255, 215, 0, 0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.card-2:hover .card-image {
    opacity: 1;
    transform: scale(1.05);
}

.card-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(139, 92, 246, 0.1));
    border-color: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.card-3:hover .card-image {
    opacity: 1;
    transform: scale(1.05);
}


@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit Section */
.submit-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.submit-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color), var(--gold-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.submit-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--purple-color), var(--gold-color), var(--purple-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-color), var(--purple-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 3px solid var(--gold-color);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.note-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(139, 92, 246, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--purple-color);
    box-shadow: var(--shadow);
    border-top: 2px solid var(--gold-color);
}

.note-box p {
    margin-bottom: 1rem;
}

.note-box p:last-child {
    margin-bottom: 0;
}

/* How to Compete Section */
.how-to-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color), var(--black-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.compete-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.compete-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.compete-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-color), var(--gold-color), var(--purple-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.compete-card:hover::before {
    transform: scaleX(1);
}

.compete-card:hover {
    border-color: var(--purple-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.compete-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.compete-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.compete-card ul {
    list-style: none;
    margin: 1rem 0;
}

.compete-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.compete-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.canvas-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--purple-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 215, 0, 0.1));
}

.canvas-link:hover {
    color: var(--purple-dark);
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(255, 215, 0, 0.2));
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

/* Criteria Section */
.criteria-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--black-color) 0%, var(--purple-dark) 50%, var(--primary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.criteria-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1), transparent 50%);
    pointer-events: none;
}

.criteria-section .section-title,
.criteria-section .section-subtitle {
    color: white;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.criteria-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.criteria-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.criteria-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-color), #ffed4e);
    color: var(--black-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid var(--purple-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.criteria-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Prizes Section */
.prizes-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.prize-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.prize-card:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

.prize-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.prize-gold {
    border: 3px solid var(--gold-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.prize-gold .prize-value {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prize-silver {
    border: 3px solid #c0c0c0;
}

.prize-bronze {
    border: 3px solid #cd7f32;
}

.prize-rank {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.prize-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.prize-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Dates Section */
.dates-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--purple-color), var(--gold-color), var(--purple-dark));
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 150px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black-color);
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold-color), #ffed4e);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 2;
    border: 2px solid var(--purple-color);
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    margin: 0 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.eligibility-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--purple-color);
    border-top: 2px solid var(--gold-color);
}

.eligibility-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.eligibility-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* FAQs Section */
.faqs-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), rgba(255, 215, 0, 0.05));
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--purple-color);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 215, 0, 0.1));
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer {
    padding: 0 2rem;
}

.faq-answer p,
.faq-answer ul {
    padding-bottom: 1.5rem;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1.5rem;
}

.faq-answer ul li {
    padding: 0.5rem 0;
    position: relative;
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--purple-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.contact-box {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 15px;
    border: 2px solid var(--purple-color);
    border-top: 3px solid var(--gold-color);
}

.contact-box a {
    color: var(--purple-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-box a:hover {
    color: var(--purple-dark);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--black-color) 0%, var(--purple-dark) 50%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 20px 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-color), var(--gold-color), var(--purple-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
        min-height: 38vh;
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        display: none;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-date {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin: 0;
    }

    .submit-steps,
    .compete-steps,
    .criteria-grid,
    .prizes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .prize-amount {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

