/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* SECTION 1: Hero Header */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFE066 0%, #FF6B9D 50%, #4ECDC4 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cloud-1 {
    width: 80px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud-1::before,
.cloud-1::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud-1::after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.cloud-2 {
    width: 100px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.ball-1 {
    width: 40px;
    height: 40px;
    background: #FF6B9D;
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.ball-2 {
    width: 30px;
    height: 30px;
    background: #4ECDC4;
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.motion-line-1,
.motion-line-2 {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
}

.motion-line-1 {
    top: 40%;
    left: 5%;
    animation-delay: 1.5s;
}

.motion-line-2 {
    bottom: 40%;
    right: 10%;
    animation-delay: 4s;
}

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

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

.hero-content {
    text-align: left;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.9;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.title-line-1 {
    display: block;
    color: #FFFFFF;
    animation: bounceIn 1s ease-out;
}

.title-line-2 {
    display: block;
    color: #FF6B9D;
    animation: bounceIn 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.primary-cta {
    display: inline-block;
    background: #FF6B9D;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.4);
    background: #FF5A8A;
}

.secondary-cta {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    padding: 15px 30px;
    border: 3px solid #FFFFFF;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: #FFFFFF;
    color: #FF6B9D;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stikbot-animation {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.stikbot-figure {
    width: 150px;
    height: 150px;
    background: #4ECDC4;
    border-radius: 20px;
    position: relative;
    animation: wiggle 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 1;
}

.stikbot-image {
    width: 200px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
    transform: scale(1.1);
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* SECTION 2: Quick Glance Info */
.quick-info-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-card {
    border-color: #FFE066;
}

.entry-card {
    border-color: #4ECDC4;
}

.dates-card {
    border-color: #FF6B9D;
}

.prizes-card {
    border-color: #9B59B6;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.entry-steps {
    list-style: none;
    text-align: left;
}

.entry-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.step-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.date-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.prize-list {
    list-style: none;
    text-align: left;
}

.prize-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.prize-icon {
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 2px;
}

.parent-note {
    background: linear-gradient(135deg, #FFE066, #FFF2CC);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.note-icon {
    font-size: 2rem;
}

.parent-note p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

/* SECTION 3: Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA, #E9ECEF);
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.subscribe-cta {
    text-align: center;
}

.subscribe-button {
    display: inline-block;
    background: #FF0000;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.subscribe-button:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* SECTION 4 & 5: Collapsible Sections */
.judging-section,
.rules-section {
    padding: 60px 0;
}

.judging-section {
    background: #FFFFFF;
}

.rules-section {
    background: #F8F9FA;
}

.collapsible-section {
    max-width: 800px;
    margin: 0 auto;
}

.section-toggle {
    width: 100%;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    border: none;
    border-radius: 20px;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.section-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
}

.section-toggle h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.toggle-icon {
    font-size: 2rem;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.collapsible-content.active {
    max-height: 1000px;
    padding: 30px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 15px;
}

.criteria-icon {
    font-size: 2rem;
}

.criteria-text {
    display: flex;
    flex-direction: column;
}

.criteria-text strong {
    font-size: 1.1rem;
    color: #333;
}

.percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ECDC4;
}

.helpful-tips h3,
.rules-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.tips-list,
.rules-content ul {
    list-style: none;
    padding-left: 0;
}

.tips-list li,
.rules-content li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.tips-list li::before,
.rules-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ECDC4;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    text-align: center;
}

.footer-link {
    color: #4ECDC4;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFE066;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.social-icon span {
    font-size: 0.8rem;
}

.youtube {
    background: #FF0000;
    color: white;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.tiktok {
    background: #000000;
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .primary-cta,
    .secondary-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-toggle {
        padding: 20px;
    }
    
    .section-toggle h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .parent-note {
        flex-direction: column;
        text-align: center;
    }
}

