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

#home {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.7) 80%,
            rgba(0, 0, 0, 1) 100%),
        url("picture/home.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
    color: white;
}


#home p {
    margin: 0;
}

/* PORTFOLIO */
#home p:nth-child(1) {
    font-size: 18px;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #cbd5e1;
    margin-bottom: 10px;
}

/* FATT */
#home p:nth-child(2) {
    font-size: 90px;
    font-weight: 800;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;

    text-shadow:
        0 0 10px rgba(255, 255, 255, .3),
        0 0 30px rgba(255, 255, 255, .2);
}

/* Welcome */
#home p:nth-child(3) {
    font-size: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e2e8f0;
}

#home {
    position: relative;
}

.paper-tear {
    position: absolute;
    left: 0;
    bottom: -1px;

    width: 100%;
    line-height: 0;
}

.paper-tear svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Wave di atas Section Organisasi */
#organisasi {
    background-color: #ffffff;
    position: relative;
    padding: 120px 20px 60px;
}

.org-top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.org-top-wave svg {
    display: block;
    width: 100%;
    height: 120px;
    transform: scaleY(-1);
}


html {
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    width: 100%;
    min-height: 100%;
}

/* Profile Section - Minimalist macOS Window Concept */
#profile {
    background-color: #EEF2F6;
    padding: 80px 20px 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}



.mac-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.profile-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
}

.profile-title span {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* macOS Window Card */
.mac-window {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mac-window:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

/* Window Header Bar */
.mac-header {
    background: #f8fafc;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.mac-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mac-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.mac-dot.red {
    background: #ff5f56;
}

.mac-dot.yellow {
    background: #ffbd2e;
}

.mac-dot.green {
    background: #27c93f;
}

.mac-address-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 5px 20px;
    font-size: 12.5px;
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.mac-address-bar i {
    font-size: 11px;
    color: #94a3b8;
}

.mac-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    background: #f0fdf4;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
}

.status-indicator {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Window Content Body */
.mac-body {
    padding: 36px 36px 44px 36px;
}

.mac-hero {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-bottom: 32px;
}

.mac-avatar-box {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
    background: linear-gradient(135deg, #6366f1, #a855f7);
    padding: 3px;
}

.mac-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #ffffff;
}

.mac-greeting {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 4px;
}

.mac-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.mac-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.mac-tag {
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mac-tag i {
    color: #6366f1;
}

.mac-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* Minimalist Stat Cards Grid */
.mac-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.mac-stat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mac-stat-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    font-size: 18px;
    flex-shrink: 0;
}

.stat-icon-box.purple {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.stat-icon-box.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.stat-icon-box.amber {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.stat-icon-box.emerald {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 6px;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 4px;
}

.stat-value.song-title {
    font-size: 13.5px;
    font-weight: 700;
}

.stat-sub {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

/* Footer Skills & Socials */
.mac-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.mac-skills {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.skill-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    margin-right: 4px;
}

.skill-item {
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
}

.mac-socials {
    display: flex;
    gap: 10px;
}

.mac-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.mac-social-btn:hover {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
    transform: translateY(-2px);
}

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

    .mac-tags {
        justify-content: center;
    }

    .mac-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mac-address-bar {
        display: none;
    }

    .mac-body {
        padding: 28px 20px 36px 20px;
    }
}

@media (max-width: 480px) {
    .mac-stats-grid {
        grid-template-columns: 1fr;
    }

    .mac-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   ORGANISASI SECTION (Minimalist Instagram Feed / Story Cards Concept)
   ========================================================================== */
#organisasi {
    position: relative;
    background:
        linear-gradient(to bottom,
            rgba(15, 23, 42, 0.78) 0%,
            rgba(15, 23, 42, 0.88) 100%),
        url("picture/organisasi.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 120px 20px 90px 20px;
}

/* Film Strip Bottom Divider */
.film-strip-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111111;
    border-top: 2px solid #222222;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
}

.film-holes {
    height: 12px;
    width: 100%;
    background-image: radial-gradient(circle, transparent 40%, #111 45%),
        radial-gradient(circle, #000 70%, transparent 75%);
    background-size: 28px 12px;
    background-repeat: repeat-x;
    opacity: 0.85;
}

.film-holes.top-holes {
    background-image: repeating-linear-gradient(90deg,
            #0f172a 0px,
            #0f172a 12px,
            transparent 12px,
            transparent 28px);
    height: 10px;
    margin: 0 10px;
}

.film-holes.bottom-holes {
    background-image: repeating-linear-gradient(90deg,
            #0f172a 0px,
            #0f172a 12px,
            transparent 12px,
            transparent 28px);
    height: 10px;
    margin: 0 10px;
}

.film-strip-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: 'Space Grotesk', monospace;
    font-size: 11px;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 2px;
    opacity: 0.8;
}

.insta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.insta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 48, 108, 0.2);
    color: #ff75a0;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1px solid rgba(225, 48, 108, 0.35);
    backdrop-filter: blur(8px);
}

.insta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.insta-title span {
    background: linear-gradient(135deg, #ff75a0, #fd1d1d, #f56040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insta-subtitle {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 36px;
}

/* Instagram Profile Bar */
.insta-profile-bar {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    text-align: left;
}

.insta-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.25);
    flex-shrink: 0;
}

.insta-account-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.verified {
    color: #38bdf8;
    font-size: 14px;
}

.insta-account-meta {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Instagram Posts Grid (2 Cards side by side) */
.insta-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-top: 50px;
    padding-bottom: 150px;
}

.insta-post-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.insta-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.insta-post-card.featured {
    border-color: rgba(99, 102, 241, 0.3);
}

/* Post Header */
.post-header {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
}

.post-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-mini {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #e1306c, #f56040);
    overflow: hidden;
}

.user-avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.username {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 4px;
}

.location {
    font-size: 11.5px;
    color: #64748b;
}

.post-more {
    color: #94a3b8;
    cursor: pointer;
    font-size: 16px;
}

/* Post Media Frame */
.post-media {
    position: relative;
    width: 100%;
    height: 230px;
    background: #0f172a;
    overflow: hidden;
}

.post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-post-card:hover .post-img {
    transform: scale(1.04);
}

.post-badge-float {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.post-badge-float.gold {
    background: linear-gradient(135deg, #6366f1, #a855f7);
}

/* Post Action Bar */
.post-actions {
    padding: 12px 18px 4px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.actions-left {
    display: flex;
    gap: 14px;
}

.action-icon {
    font-size: 20px;
    color: #475569;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.action-icon:hover {
    transform: scale(1.15);
}

.heart-active {
    color: #e1306c;
}

.bookmark-active {
    color: #0f172a;
}

/* Post Body / Caption */
.post-body {
    padding: 8px 18px 18px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.likes-count {
    font-size: 12.5px;
    color: #334155;
    margin-bottom: 8px;
}

.post-role-pill {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.post-role-pill.gold {
    color: #d97706;
    background: #fef3c7;
}

.post-caption {
    font-size: 13.5px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 12px;
    flex-grow: 1;
}

.post-caption strong {
    color: #0f172a;
    font-weight: 700;
}

.post-hashtags {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 500;
}

/* Responsive Breakdown */
@media (max-width: 768px) {
    .insta-posts-grid {
        grid-template-columns: 1fr;
    }

    .insta-title {
        font-size: 30px;
    }

    .insta-profile-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   PANITIA SECTION (Vertical Card Stack Concept)
   ========================================================================== */
#panitia {
    padding: 110px 20px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.panitia-container {
    max-width: 900px;
    margin: 0 auto;
}

.panitia-header {
    text-align: center;
    margin-bottom: 50px;
}

.panitia-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 12px;
    margin-bottom: 8px;
}

.panitia-title span {
    color: #6366f1;
}

.panitia-subtitle {
    font-size: 15px;
    color: #64748b;
}

/* Minimalist Vintage Filmstrip Timeline */
.panitia-filmstrip-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Filmstrip Center Path (Pita Film) */
.filmstrip-path {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 32px;
    background: #111111;
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
    z-index: 2;
}

/* Sprocket Holes di sisi kiri & kanan pita film */
.filmstrip-holes-left,
.filmstrip-holes-right {
    width: 6px;
    height: 100%;
    background-image: repeating-linear-gradient(to bottom,
            #ffffff 0px,
            #ffffff 10px,
            transparent 10px,
            transparent 20px);
}

/* Timeline Item (Row) */
.timeline-item {
    position: relative;
    width: 50%;
    display: flex;
    z-index: 3;
}

/* Item Kiri */
.timeline-item.left {
    left: 0;
    padding-right: 35px;
    justify-content: flex-end;
}

/* Item Kanan */
.timeline-item.right {
    left: 50%;
    padding-left: 35px;
    justify-content: flex-start;
}

/* Frame Number Dot */
.timeline-frame-dot {
    position: absolute;
    top: 24px;
    background: #1e293b;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 4;
}

.frame-num {
    font-family: 'Space Grotesk', monospace;
    font-size: 10px;
    font-weight: 700;
    color: #f59e0b;
    /* Aksen warna warm orange */
    letter-spacing: 0.5px;
}

.timeline-item.left .timeline-frame-dot {
    right: -25px;
}

.timeline-item.right .timeline-frame-dot {
    left: -25px;
}

/* Watermark Backgrounds untuk kepanitiaan */
.chess_back {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) rotate(15deg);
    margin-left: 100px;
    width: 250px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.30;
    filter: grayscale(100%);
    transition: opacity 0.5s ease;
}

.chess_back img {
    width: 120%;
    height: auto;
    display: block;
}

.pdd_back {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%) scaleX(-1) rotate(-15deg);
    margin-right: 65px;
    width: 250px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.5s ease;
}

.pdd_back img {
    width: 100%;
    height: auto;
    display: block;
}

/* Card Styling inside Timeline */
.panitia-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #cbd5e1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.panitia-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 48px rgba(99, 102, 241, 0.12), 0 8px 16px rgba(15, 23, 42, 0.06);
    border-color: rgba(99, 102, 241, 0.4);
}

.panitia-card-image {
    position: relative;
    width: 100%;
    height: 190px;
    background: #0f172a;
    overflow: hidden;
}

.panitia-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.panitia-card:hover .panitia-card-image img {
    transform: scale(1.08);
}

.panitia-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
    pointer-events: none;
}

.panitia-card-content {
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.panitia-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.panitia-role-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.panitia-card:hover .panitia-role-title {
    color: #4f46e5;
}

.panitia-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 18px;
}

.panitia-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.panitia-tags span {
    font-size: 11.5px;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 5px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.panitia-card:hover .panitia-tags span {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.25);
    color: #4f46e5;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

@media (max-width: 768px) {
    .filmstrip-path {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 55px !important;
        padding-right: 0 !important;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left .timeline-frame-dot,
    .timeline-item.right .timeline-frame-dot {
        left: 1px;
        right: auto;
    }

    .chess_back,
    .pdd_back {
        display: none;
    }

    .panitia-card-image {
        height: 180px;
    }

    .panitia-card-content {
        padding: 18px 20px;
    }
}

/* ==========================================================================
   KOMPETISI SECTION (Ultra-Clean White Theme & Grayscale Watermark)
   ========================================================================== */
#kompetisi {
    padding: 120px 20px 110px 20px;
    background: #ffffff;
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

/* Watermark kompetisi.png di Pojok Kanan Bawah (Hitam Putih / Grayscale) */
.kompetisi-watermark {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
    mix-blend-mode: multiply;
    transition: opacity 0.5s ease;
    transform: translateX(50%);
}

.kompetisi-watermark img {
    height: 100%;
    width: auto;
    display: block;
}

/* Watermark kompetisi2.png di Kanan/Kiri (Kiri, Dimirror & Dirotate) */
.kompetisi-watermark-left {
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
    mix-blend-mode: multiply;
    transition: opacity 0.5s ease;
    transform: translateX(-20%) scaleX(-1) rotate(10deg);
}

.kompetisi-watermark-left img {
    height: 100%;
    width: auto;
    display: block;
}

.kompetisi-container {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.kompetisi-header {
    text-align: center;
    margin-bottom: 56px;
}

.kompetisi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.kompetisi-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.kompetisi-title span {
    color: #6366f1;
}

.kompetisi-subtitle {
    font-size: 15px;
    color: #64748b;
}

/* Grid Cards Kompetisi Premium White */
.kompetisi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Jika jumlah card ganjil, card terakhir otomatis berada di tengah */
.kompetisi-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

.kompetisi-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.kompetisi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.kompetisi-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 24px 50px rgba(99, 102, 241, 0.12), 0 8px 20px rgba(15, 23, 42, 0.06);
}

.kompetisi-card:hover::before {
    opacity: 1;
}

.kompetisi-card-header {
    margin-bottom: 20px;
}

.lomba-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #4f46e5;
    background: rgba(99, 102, 241, 0.08);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.judul-lomba {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.kompetisi-card:hover .judul-lomba {
    color: #4f46e5;
}

.kompetisi-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.judul-karya {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #6366f1;
    padding: 12px 16px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.judul-karya i {
    color: #6366f1;
    font-size: 15px;
    flex-shrink: 0;
}

.kompetisi-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
}

@media (max-width: 768px) {
    .kompetisi-grid {
        grid-template-columns: 1fr;
    }

    .kompetisi-watermark {
        width: 280px;
        opacity: 0.08;
    }

    .kompetisi-card {
        padding: 26px;
    }
}

/* ==========================================================================
   ROAD FOOTER SECTION
   ========================================================================== */
.road-footer {
    width: 100%;
    background-color: #1e293b; /* Asphalt color */
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    margin-top: 0;
}

.road-container {
    position: relative;
    width: 100%;
    height: 100px;
    overflow-x: clip;
    overflow-y: visible;
    border-top: 6px solid #475569; /* Road shoulder border */
}

.road-dashed-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        #ffffff 0px,
        #ffffff 45px,
        transparent 45px,
        transparent 90px
    );
    animation: roadScroll 1.2s linear infinite;
    will-change: background-position;
}

/* Motor GIF sitting in the center, overlapping/extending above the footer */
.road-motor {
    position: absolute;
    bottom: -30px;
    /* Sit on the road */
    left: 20%;
    transform: translateX(-50%);
    height: 300px;
    /* Taller than the container to stick out */
    width: auto;
    z-index: 10;
    pointer-events: none;
}

@keyframes roadScroll {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -90px 0;
    }
}