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

body {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)), url("../assets/images/bg.jpg") center/cover no-repeat;
    overflow: hidden;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.shadow-overlay {
    position: fixed; inset: 0;
    background: radial-gradient(ellipse at 50% 55%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.94) 100%);
    z-index: 1;
}

.hero {
    position: relative; height: 100vh; padding-top: 55px;
    display: flex; flex-direction: column; align-items: center; z-index: 2;
}

.title {
    font-size: 100px; letter-spacing: 18px; font-weight: 700;
    background: linear-gradient(
        110deg,
        #111 0%,
        #111 8%,
        #5a5a5a 20%,
        #c0c0c0 32%,
        #f0f0f0 40%,
        #ffffff 46%,
        #ffffff 54%,
        #f0f0f0 60%,
        #c0c0c0 68%,
        #5a5a5a 80%,
        #111 92%,
        #111 100%
    );
    background-size: 260% auto;
    background-clip: text; -webkit-background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    opacity: 0; animation: fadeIn 2s ease-out forwards, shimmer 7s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.10)) drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

@keyframes shimmer {
    0%   { background-position: 0%   center; }
    50%  { background-position: 100% center; }
    100% { background-position: 0%   center; }
}
@keyframes fadeIn  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.subtitle {
    font-size: 12px; letter-spacing: 9px; margin-top: 14px; font-weight: 400;
    text-transform: uppercase; color: rgba(255,255,255,0.45);
    display: flex; align-items: center; gap: 18px;
}
.subtitle::before, .subtitle::after {
    content: ''; display: block; width: 0; height: 1px; opacity: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3));
    animation: lineExpand 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
    animation-delay: 1.8s;
}
.subtitle::after {
    background: linear-gradient(to left, transparent, rgba(255,255,255,0.3));
    animation-delay: 1.95s;
}
@keyframes lineExpand {
    from { width: 0;    opacity: 0; }
    to   { width: 52px; opacity: 1; }
}

.logo img {
    width: 460px; margin-top: 24px;
    animation: logoFloat 7s ease-in-out infinite, logoGlow 3.5s ease-in-out infinite;
}

.cards { display: flex; gap: 20px; margin-top: 28px; align-items: center; }

.card {
    width: 252px; height: 120px; border-radius: 20px;
    background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(30px); display: flex; flex-direction: column;
    justify-content: center; align-items: center; cursor: pointer;
    transition: 0.5s cubic-bezier(0.2,1,0.3,1); position: relative; overflow: hidden;
}
.card::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.card:hover {
    background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 25px rgba(255,255,255,0.06);
    transform: translateY(-6px) scale(1.02);
}
.card-title { font-size: 21px; font-weight: 700; letter-spacing: 4px; }
.card-sub   { font-size: 10px; font-weight: 300; opacity: 0.45; margin-top: 9px; letter-spacing: 3px; }

/* ─── CENTER CARD (KIDJAYXD) ───────────── */
.card-center {
    width: 300px; height: 148px; border-radius: 22px;
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset,
                0 8px 32px rgba(0,0,0,0.4),
                0 0 40px rgba(255,255,255,0.04);
}
.card-center .card-title { font-size: 25px; letter-spacing: 3px; }
.card-center .card-sub   { opacity: 0.6; letter-spacing: 4px; color: rgba(255,255,255,0.7); }
.card-crown {
    font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,0.25);
    margin-bottom: 7px; text-transform: uppercase;
}
.card-crown i { font-size: 10px; }
.card-center::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    animation: cardShine 5s ease-in-out infinite;
}
@keyframes cardShine { 0%, 60% { left: -100%; } 80%, 100% { left: 180%; } }
.card-center:hover {
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 16px 50px rgba(0,0,0,0.55), 0 0 50px rgba(255,255,255,0.1);
    transform: translateY(-8px) scale(1.03);
}

/* ─── SITE FOOTER BAR ──────────────────── */
.site-footer-bar {
    position: fixed; bottom: 0; left: 0; right: 0; height: 60px;
    display: flex; align-items: center; padding: 0 20px;
    z-index: 100; pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.footer-left  { display: flex; align-items: center; gap: 10px; pointer-events: auto; flex-shrink: 0; }
.footer-center {
    position: absolute; left: 0; right: 0;
    text-align: center; font-size: 10px; font-weight: 300;
    letter-spacing: 2px; color: rgba(255,255,255,0.3); pointer-events: none;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 0 180px;
}
.footer-right { flex-shrink: 0; display: flex; align-items: center; pointer-events: auto; margin-left: auto; }

.social-icons { display: flex; gap: 8px; }
.social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: #fff; transition: 0.3s cubic-bezier(0.2,1,0.3,1);
}
.social-btn i, .social-btn svg { font-size: 16px; width: 16px; height: 16px; display: block; }
.social-btn .fa-facebook-f { transform: translateX(2px); }
.social-btn:hover {
    background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px); box-shadow: 0 0 15px rgba(255,255,255,0.15);
}
.music-control {
    display: flex; align-items: center;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; backdrop-filter: blur(20px); padding: 0 12px; height: 38px; gap: 10px;
    transition: 0.3s cubic-bezier(0.2,1,0.3,1);
}
.music-control:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.play-btn {
    background: none; border: none; color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    width: 16px; height: 16px; padding: 0; flex-shrink: 0;
}
.play-btn svg { width: 12px; height: 12px; }
#vol {
    -webkit-appearance: none; appearance: none;
    width: 80px; height: 3px; border: none; padding: 0; margin: 0;
    background: rgba(255,255,255,0.2); border-radius: 3px;
    outline: none; cursor: pointer; flex-shrink: 0; display: block;
}
#vol::-webkit-slider-runnable-track {
    height: 3px; border-radius: 3px; background: rgba(255,255,255,0.2); cursor: pointer;
}
#vol::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 12px; height: 12px; border-radius: 50%;
    background: #fff; cursor: pointer; margin-top: -4.5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.4); transition: 0.2s;
}
#vol::-moz-range-track { height: 3px; border-radius: 3px; background: rgba(255,255,255,0.2); }
#vol::-moz-range-thumb {
    width: 12px; height: 12px; border-radius: 50%; background: #fff; border: none; cursor: pointer;
}

/* ─── ADMIN BUTTON (inside footer-right) ─ */
.admin-entry-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2); text-decoration: none;
    transition: 0.3s; backdrop-filter: blur(20px); font-size: 13px;
}
.admin-entry-btn:hover {
    background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.6); transform: translateY(-2px);
}

img { pointer-events: none; user-select: none; -webkit-user-drag: none; }

/* ─── PARTICLES ─────────────────────────── */
.particles-container { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.particle { position: absolute; opacity: 0; pointer-events: none; }

.particle.dot {
    background: #fff; border-radius: 50%;
    box-shadow: 0 0 6px rgba(255,255,255,0.9);
    animation: particleDrift linear infinite;
}
.particle.spark { animation: particleTwinkle ease-in-out infinite; }
.particle.spark::before, .particle.spark::after {
    content: ''; position: absolute; background: #fff; border-radius: 2px;
    box-shadow: 0 0 4px rgba(255,255,255,1);
}
.particle.spark::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.particle.spark::after  { width: 2px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); }

@keyframes particleDrift {
    0%   { opacity: 0;   transform: translateY(0)    scale(1); }
    15%  { opacity: 0.9; }
    75%  { opacity: 0.4; }
    100% { opacity: 0;   transform: translateY(-90px) scale(0.5); }
}
@keyframes particleTwinkle {
    0%   { opacity: 0;   transform: scale(0.3) rotate(0deg); }
    25%  { opacity: 1;   transform: scale(1)   rotate(45deg); }
    60%  { opacity: 0.6; transform: scale(1.1) rotate(90deg); }
    100% { opacity: 0;   transform: scale(0.3) rotate(180deg); }
}

/* ─── CARD RIPPLE ───────────────────────── */
.card-ripple {
    position: absolute; width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.18); pointer-events: none;
    transform: translate(-50%,-50%) scale(0);
    animation: rippleOut 0.65s ease-out forwards;
}
@keyframes rippleOut {
    from { transform: translate(-50%,-50%) scale(0); opacity: 0.8; }
    to   { transform: translate(-50%,-50%) scale(50); opacity: 0; }
}
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255,255,255,0.10)) drop-shadow(0 0 70px rgba(255,255,255,0.04)); }
    50%       { filter: drop-shadow(0 0 55px rgba(255,255,255,0.22)) drop-shadow(0 0 110px rgba(255,255,255,0.10)); }
}
.fade { opacity: 0; transform: translateY(20px); animation: fadeIn 1.5s ease forwards; }

/* ─── MOBILE ───────────────────────────── */
@media (max-width: 768px) {
    body { height: auto; min-height: 100dvh; overflow: auto; }
    .hero {
        min-height: 100dvh; overflow: visible;
        padding: 50px 20px 80px; justify-content: flex-start;
    }
    .title { font-size: clamp(36px, 11vw, 80px); letter-spacing: clamp(5px, 3vw, 16px); }
    .subtitle { font-size: clamp(10px, 3.5vw, 18px); letter-spacing: clamp(3px, 2vw, 8px); }
    .logo img { width: clamp(180px, 65vw, 320px); margin-top: 20px; }
    .cards { flex-direction: column; gap: 10px; margin-top: 25px; width: 100%; max-width: 300px; align-items: center; }
    .card { width: 100%; max-width: 300px; height: 82px; }
    .card-center { width: 100%; max-width: 300px; height: 96px; }
    .card-title { font-size: 18px; letter-spacing: 3px; }
    .site-footer-bar { padding: 0 14px; height: 56px; }
    .footer-center { display: none; }
    #vol { width: 60px; }
}
@media (max-width: 400px) {
    .title { font-size: 28px; letter-spacing: 4px; }
    .subtitle { font-size: 9px; letter-spacing: 2px; }
}
