/* =====================================
   ROOT VARIABLES
   ===================================== */
:root {
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --purple: rgba(106, 17, 203, 0.45);
    --blue: rgba(37, 117, 252, 0.45);
    --text-white: #fff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --shadow-dark: rgba(0, 0, 0, 0.55);
    --radius-lg: 30px;
    --radius-md: 25px;
    --radius-sm: 20px;
    --blur: blur(18px);
    --transition-fast: 0.35s ease;
    --transition-med: 0.5s ease;
    --transition-slow: 1s ease;
}

/* =====================================
   GLOBAL RESET
   ===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    background: transparent;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    font-family: "Inter", sans-serif;
    color: #111;
    background: transparent;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at top left, var(--purple), transparent 40%),
        radial-gradient(circle at bottom right, var(--blue), transparent 40%);
}

/* =====================================
   BACKGROUND
   ===================================== */
.background {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.8)),
        url("fwatch.jpg");
    background-size: cover;
    background-position: center;
    animation: backgroundZoom 20s infinite alternate;
}

@keyframes backgroundZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

/* =====================================
   CURSOR LIGHT
   ===================================== */
.cursor-light {
    position: fixed;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* =====================================
   PARTICLES
   ===================================== */
.particles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particles span {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    opacity: 0.25;
    animation: floatParticle 10s infinite ease-in-out;
}

@keyframes floatParticle {
    0%   { transform: translateY(0);       opacity: 0; }
    50%  { opacity: 0.5; }
    100% { transform: translateY(-100vh);  opacity: 0; }
}

/* =====================================
   MAIN GLASS CARD
   ===================================== */
.content {
    position: relative;
    z-index: 2;
    width: min(95%, 1000px);
    padding: 50px;
    color: var(--text-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    box-shadow:
        0 30px 80px var(--shadow-dark),
        inset 0 0 40px rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.content.show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================
   TYPOGRAPHY
   ===================================== */
h1 {
    font-size: clamp(60px, 10vw, 100px);
    letter-spacing: -3px;
    color: var(--text-white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tagline {
    margin: 10px 0 40px;
    font-size: 22px;
    color: var(--text-muted);
}

/* =====================================
   BUTTONS / LINKS
   ===================================== */
.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.links a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    color: var(--text-white);
    text-decoration: none;
    font-size: clamp(20px, 5vw, 32px);
    font-weight: 700;
    transition: var(--transition-fast);
}

.links a:hover {
    transform: translateY(-8px) scale(1.04);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 50px var(--blue);
}

/* =====================================
   GOOGLE LINK
   ===================================== */
.google {
    margin-top: 35px;
    font-size: 20px;
}

.google a {
    color: #b8b8ff;
    font-weight: bold;
}

/* =====================================
   IMAGES
   ===================================== */
.truth {
    margin: 40px 0;
    width: min(100%, 500px);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
    transition: var(--transition-med);
}

.truth:hover {
    transform: scale(1.05);
}

/* =====================================
   MEDIA PLAYER
   ===================================== */
.media-player {
    position: relative;
    width: min(90%, 420px);
    height: 120px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.35), rgba(37, 117, 252, 0.25));
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    box-shadow: 0 25px 70px var(--shadow-dark);
    transition: 0.4s ease;
}

.media-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 90px var(--blue);
}

.player-label {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--text-white);
    opacity: 0.65;
}

.media-player audio {
    width: min(90%, 340px);
    margin-top: 10px;
    filter: invert(1) hue-rotate(180deg);
}

/* =====================================
   RESPONSIVE TWEAKS
   ===================================== */
@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    .tagline {
        font-size: 18px;
    }
}