* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0B0B0B;
    color: #fff;
    overflow-x: hidden;
    cursor: default;
}

::-webkit-scrollbar {
    width: 6px;
    background: #111;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(#FFD700, #00D4FF);
    border-radius: 20px;
}

/* LOADING */
#loader {
    position: fixed;
    inset: 0;
    background: #0B0B0B;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.9s, visibility 0.9s;
}
#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.crow-loader {
    font-size: 5rem;
    color: #FFD700;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
    animation: pulseCrow 1.2s infinite alternate;
}
@keyframes pulseCrow {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}
.loader-bar {
    width: 200px;
    height: 3px;
    background: #222;
    border-radius: 4px;
    margin-top: 24px;
    overflow: hidden;
}
.loader-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FFD700, #00D4FF);
    animation: loadFill 2.4s ease forwards;
}
@keyframes loadFill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* AURORA */
.aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.aurora span {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: auroraMove 22s infinite alternate ease-in-out;
}
.aurora span:nth-child(1) {
    width: 600px;
    height: 600px;
    background: #00D4FF;
    top: -15%;
    left: -15%;
}
.aurora span:nth-child(2) {
    width: 700px;
    height: 700px;
    background: #7B2FBE;
    bottom: -20%;
    right: -10%;
    animation-delay: -6s;
}
.aurora span:nth-child(3) {
    width: 500px;
    height: 500px;
    background: #FFD700;
    top: 50%;
    left: 50%;
    animation-delay: -12s;
    opacity: 0.15;
}
@keyframes auroraMove {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(60px, -50px) scale(1.3);
    }
}

/* PARTICLES */
#particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 12s infinite linear;
}
@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1.2);
    }
}

.cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2;
    mix-blend-mode: screen;
    transition: left 0.06s, top 0.06s;
}
.cursor-trail {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15);
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: 0.08s;
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 30px;
}
.glass {
    background: rgba(22, 22, 22, 0.4);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER / HERO */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 0 30px;
}
.logo-crow {
    font-size: 6rem;
    color: #FFD700;
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.2);
    animation: crowFly 3s infinite alternate;
}
@keyframes crowFly {
    0% {
        transform: rotate(-4deg) scale(1);
    }
    100% {
        transform: rotate(4deg) scale(1.05);
    }
}
.hero h1 {
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #fff, #FFD700, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
}
.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #ccc;
    letter-spacing: 2px;
    margin: 12px 0 30px;
}

/* COUNTDOWN */
.countdown-wrap {
    background: rgba(22, 22, 22, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    padding: 18px 28px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin: 20px 0 30px;
}
.cd-item {
    text-align: center;
    min-width: 70px;
}
.cd-item .num {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}
.cd-item .label {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BUTTONS */
.btn {
    padding: 14px 38px;
    border-radius: 60px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}
.btn-primary {
    background: linear-gradient(145deg, #FFD700, #e6b800);
    color: #0B0B0B;
    border: 1px solid rgba(255, 215, 0, 0.4);
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(135deg, #FFD700, #00D4FF, #FFD700);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGlow 4s linear infinite;
    pointer-events: none;
}
@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}
.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.25);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out;
    pointer-events: none;
}
@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* FORM */
.form-card {
    padding: 32px 28px;
    max-width: 720px;
    margin: 20px auto;
    background: rgba(22, 22, 22, 0.35);
    backdrop-filter: blur(18px);
    border-radius: 40px;
    border: 1px solid rgba(255, 215, 0, 0.06);
}
.form-card .field {
    margin-bottom: 18px;
}
.form-card label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ddd;
    margin-bottom: 6px;
}
.form-card input,
.form-card textarea,
.form-card select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 30px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}
.form-card input:focus,
.form-card textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}
.form-card textarea {
    min-height: 90px;
    resize: vertical;
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.stat-item {
    text-align: center;
    padding: 22px 10px;
    background: rgba(22, 22, 22, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.04);
}
.stat-item .number {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-item .label {
    color: #aaa;
    font-size: 0.85rem;
}

/* STRUCTURE */
.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    margin: 20px 0;
}
.struct-card {
    background: rgba(22, 22, 22, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 18px 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.04);
    transition: 0.3s;
}
.struct-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: scale(1.03);
}
.struct-card i {
    font-size: 2.6rem;
    color: #FFD700;
    margin-bottom: 6px;
}

/* VISI MISI */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0;
}
.tl-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(22, 22, 22, 0.25);
    backdrop-filter: blur(6px);
    padding: 18px 24px;
    border-radius: 30px;
    border-left: 4px solid #FFD700;
}
.tl-item .icon {
    font-size: 1.6rem;
    color: #00D4FF;
    min-width: 40px;
}

/* RULES */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin: 20px 0;
}
.rule-item {
    background: rgba(22, 22, 22, 0.25);
    backdrop-filter: blur(6px);
    padding: 16px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 215, 0, 0.04);
}
.rule-item i {
    font-size: 1.4rem;
    color: #FFD700;
    min-width: 28px;
}

/* TIMELINE JOIN */
.join-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 40px;
    margin: 20px 0;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #ccc;
}
.step .circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, #FFD700, #00D4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #0B0B0B;
    font-size: 1.4rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

/* GALERI - 1 gambar utama foto grup Marga Crow V15 (panjang) */
.gallery-main {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.gallery-item-main {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    max-width: 700px;
    width: 100%;
    aspect-ratio: auto;
    background: linear-gradient(145deg, #222, #0B0B0B);
    border: 2px solid rgba(255, 215, 0, 0.12);
    transition: 0.4s;
    cursor: pointer;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.05);
}
.gallery-item-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.6s;
}
.gallery-item-main:hover img {
    transform: scale(1.02);
}
.gallery-item-main .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    color: #fff;
    gap: 6px;
}
.gallery-item-main:hover .overlay {
    opacity: 1;
}
.gallery-item-main .overlay i {
    font-size: 2.8rem;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}
.gallery-item-main .overlay span {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #FFD700, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gallery-item-main .badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFD700;
    letter-spacing: 2px;
}

/* TESTIMONI SLIDER */
.testi-slider {
    background: rgba(22, 22, 22, 0.3);
    backdrop-filter: blur(14px);
    border-radius: 40px;
    padding: 30px 20px;
    margin: 30px 0;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.04);
}
.testi-track {
    display: flex;
    transition: transform 0.7s ease;
}
.testi-item {
    min-width: 100%;
    padding: 10px 0;
}
.testi-item .stars {
    color: #FFD700;
    font-size: 1.8rem;
    letter-spacing: 4px;
}
.testi-item p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #ddd;
}

/* FAQ */
.faq-item {
    background: rgba(22, 22, 22, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    margin: 12px 0;
    padding: 6px 22px;
    border: 1px solid rgba(255, 215, 0, 0.04);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-weight: 500;
    cursor: pointer;
}
.faq-question i {
    color: #FFD700;
    transition: 0.3s;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: #bbb;
    font-weight: 300;
}
.faq-item.active .faq-answer {
    max-height: 140px;
    padding-bottom: 18px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ADMIN CARD */
.admin-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    justify-content: center;
    background: rgba(22, 22, 22, 0.3);
    backdrop-filter: blur(12px);
    padding: 24px 32px;
    border-radius: 60px;
    border: 1px solid rgba(255, 215, 0, 0.06);
    margin: 20px 0;
}
.admin-card .avatar {
    font-size: 3.4rem;
    color: #FFD700;
}
.admin-card .info h4 {
    font-size: 1.2rem;
}
.admin-card .info .status {
    color: #00ff88;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.admin-card .info .status::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 16px #00ff88;
}

/* FLOATING BUTTONS */
.float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
.float-btn:hover {
    transform: scale(1.1);
}

/* MUSIC TOGGLE */
.music-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    background: rgba(22, 22, 22, 0.7);
    backdrop-filter: blur(12px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.2);
    cursor: pointer;
    font-size: 1.4rem;
    transition: 0.2s;
}

.footer {
    text-align: center;
    padding: 30px 0 10px;
    color: #555;
    font-weight: 300;
    border-top: 1px solid rgba(255, 215, 0, 0.04);
    margin-top: 40px;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    .countdown-wrap {
        gap: 16px;
    }
    .cd-item .num {
        font-size: 2rem;
    }
    .form-card {
        padding: 20px;
    }
}