/* ===================================
   P.I.X.E.L 2026 - Flat Design System
   No gradients, no glow, solid colors only
   =================================== */

/* === CSS Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* P.I.X.E.L 2026 Gradient Color Palette */
    --deep-space: #0c0b48;
    --dark-magenta: #511d43;
    --crimson: #901e3e;
    --fire-red: #dc2525;
    --coral-pink: #e17575;
    --barongsai-red: #ef4444;

    /* Additional Colors */
    --purple-dark: #4a063c;
    --white: #ffffff;
    --light-gray: #f1f5f9;
    --gray: #64748b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0c0b48 0%, #511d43 25%, #901e3e 50%, #dc2525 75%, #e17575 100%);
    --gradient-hero: linear-gradient(135deg, #0c0b48 0%, #4a063c 50%, #901e3e 100%);
    --gradient-warm: linear-gradient(135deg, #901e3e 0%, #dc2525 50%, #e17575 100%);
    --gradient-cool: linear-gradient(135deg, #0c0b48 0%, #511d43 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
}

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

/* === Hero Section === */
.hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-mascot {
    flex: 0 0 300px;
}

.mascot-img {
    width: 100%;
    height: auto;
    max-width: 300px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.theme-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}


.hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--coral-pink);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-gray);
}

.prize-badge {
    background: var(--gradient-warm);
    border: 4px solid var(--coral-pink);
    padding: 24px 40px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 30px;
    transform: rotate(-2deg);
    box-shadow: 0 10px 30px rgba(220, 37, 37, 0.3);
}

.prize-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prize-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
}

.cta-button {
    display: inline-block;
    background: var(--gradient-warm);
    color: var(--white);
    padding: 20px 56px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 37, 37, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 37, 37, 0.4);
}

.hero-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--coral-pink);
    font-weight: 600;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

/* Decorative Planet in Hero */
.hero-planet {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 120px;
    height: auto;
    opacity: 0.8;
    z-index: -1;
    animation: float-slow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}


/* === About Section === */
.about {
    padding: 80px 20px;
    background: var(--gradient-cool);
    color: var(--white);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: inherit;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--gray);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.about-text .highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.about-icons {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.about-icon-item {
    text-align: center;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-icon {
    width: 70px;
    height: 70px;
    color: var(--white);
}

.about-icon-item p {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

/* === Categories Section === */
.categories {
    padding: 80px 20px;
    background: linear-gradient(135deg, #511d43 0%, #901e3e 50%, #dc2525 100%);
}

.categories .section-title {
    color: var(--white);
}

.categories .section-subtitle {
    color: var(--white);
}


.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(135dim, rgba(255, 255, 255, 1) 0%, rgba(241, 245, 249, 1) 100%);
}

.category-roblox {
    border-color: #000;
}

.category-scratch {
    border-color: var(--sunny-orange);
}

.category-lego {
    border-color: #E3000B;
}

.category-logo {
    margin-bottom: 24px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.lego-svg {
    width: 100px;
    height: 100px;
}

.category-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--navy);
}

.category-age {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray);
}

.category-age-range {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--gray);
    font-weight: 600;
}

.category-desc {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--crimson);
}

.category-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
}

/* === Benefits Section === */
.benefits {
    padding: 80px 20px;
    background: var(--gradient-warm);
    color: var(--white);
}

.benefits .section-title {
    color: var(--white);
}

.benefits-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 18px;
}

.benefit-icon {
    min-width: 40px;
    height: 40px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    color: var(--barongsai-red);
}

/* === Timeline Section === */
.timeline {
    padding: 80px 20px;
    background: var(--gradient-cool);
    color: var(--white);
}

.timeline .section-title {
    color: var(--white);
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: var(--fire-red);
    border: 4px solid var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    top: 12px;
    left: 50%;
    right: -50%;
    height: 4px;
    background: var(--sunny-yellow);
    z-index: 1;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.timeline-date {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--coral-pink);
}

.timeline-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* === Requirements Section === */
.requirements {
    padding: 80px 20px;
    background: linear-gradient(135deg, #511d43 0%, #901e3e 100%);
    color: var(--white);
}

.requirements .section-title {
    color: var(--white);
}

.requirements-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 18px;
}

.checkbox {
    min-width: 36px;
    height: 36px;
    background: var(--white);
    color: #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
}

/* === Contact Section === */
.contact {
    padding: 80px 20px;
    background: var(--gradient-hero);
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.contact-category {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--coral-pink);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-person {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-name {
    font-size: 18px;
    font-weight: 600;
}

.contact-wa {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-wa:hover {
    color: var(--coral-pink);
}

/* === Payment Section === */
.payment {
    padding: 80px 20px;
    background: linear-gradient(135deg, #dc2525 0%, #e17575 100%);
    color: var(--white);
}

.payment .section-title {
    color: var(--white);
}

.payment-box {
    max-width: 500px;
    margin: 0 auto 30px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 3px solid var(--navy);
    text-align: center;
}

.payment-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray);
    margin-bottom: 24px;
    font-family: 'Courier New', monospace;
}

.payment-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--barongsai-red);
}

.payment-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
}

/* === Footer === */
.footer {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
}

/* Decorative Planet in Footer */
.footer-planet {
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 100px;
    height: auto;
    opacity: 0.6;
    animation: float-slow 8s ease-in-out infinite reverse;
    pointer-events: none;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 40px;
    gap: 40px;
}

.footer-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--coral-pink);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-organizer {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-gray);
    margin-bottom: 12px;
}

.footer-location {
    font-size: 15px;
    color: var(--coral-pink);
    font-weight: 600;
}

.footer-organizer strong {
    color: var(--white);
}

.footer-register {
    text-align: center;
}

.register-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--coral-pink);
}

.register-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-warm);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 37, 37, 0.3);
}

.register-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 37, 37, 0.5);
}

.register-icon {
    font-size: 24px;
}

.register-text {
    font-size: 18px;
}

.register-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
}

.footer-seo {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--sunny-yellow);
}

.seo-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--coral-pink);
}

.seo-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 20px;
    text-align: justify;
}

.seo-keywords {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray);
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--gray);
}

/* === Teknis Lomba Section === */
.teknis-lomba {
    padding: 60px 20px;
    background: var(--gradient-cool);
    color: var(--white);
}

.teknis-lomba .section-title {
    color: var(--white);
}

.teknis-lomba .section-subtitle {
    color: var(--coral-pink);
    margin-bottom: 40px;
}

.teknis-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
    padding: 24px;
}

.teknis-card:last-child {
    margin-bottom: 0;
}

.teknis-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.teknis-number {
    width: 36px;
    height: 36px;
    background: var(--fire-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.teknis-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.teknis-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.teknis-prosedur h4,
.teknis-aturan h4,
.teknis-penilaian h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--coral-pink);
    margin-bottom: 12px;
}

.teknis-prosedur ol,
.teknis-aturan ul {
    margin: 0;
    padding-left: 20px;
}

.teknis-prosedur ol li,
.teknis-aturan ul li {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
}

.teknis-prosedur ol li:last-child,
.teknis-aturan ul li:last-child {
    margin-bottom: 0;
}

.teknis-prosedur ol li strong,
.teknis-aturan ul li strong {
    color: #fbbf24;
}

.penilaian-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.penilaian-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 13px;
}

.penilaian-label {
    color: rgba(255, 255, 255, 0.9);
}

.penilaian-value {
    font-weight: 700;
    color: #fbbf24;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .hero-main {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-mascot {
        flex: 1;
    }

    .mascot-img {
        max-width: 220px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-logo {
        max-width: 400px;
    }

    .hero-planet {
        width: 80px;
        top: 5%;
        right: 2%;
        z-index: 0;
    }

    .footer-planet {
        width: 70px;
        bottom: 10%;
        left: 2%;
    }



    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .prize-amount {
        font-size: 32px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-icons {
        gap: 40px;
    }

    .icon-circle {
        width: 100px;
        height: 100px;
    }

    .about-icon {
        width: 60px;
        height: 60px;
    }

    .timeline-container {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .timeline-item {
        width: 100%;
        max-width: 320px;
        margin-bottom: 40px;
        position: relative;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    /* Hide ALL lines di mobile */
    .timeline-line {
        display: none !important;
    }

    /* NO vertical connector - clean dots only */
    .timeline-item::after {
        display: none !important;
    }

    .timeline-dot {
        position: relative;
        z-index: 2;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    /* Teknis Lomba Mobile */
    .teknis-title {
        font-size: 18px;
    }

    .teknis-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .teknis-card {
        padding: 20px;
    }

    .penilaian-grid {
        gap: 6px;
    }

    .penilaian-item {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .cta-button {
        padding: 16px 36px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .category-name {
        font-size: 24px;
    }

    .benefit-item,
    .requirement-item {
        font-size: 16px;
    }
}