@supports (-webkit-touch-callout: none) {
    html, body {
        height: 100vh !important;
        min-height: 100vh !important;
    }
}
/* ===== iPhone fullscreen fix ===== */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #000;
}

/* Tvinga iPhone att slopa vita kanter */
:root {
    padding: 0;
    margin: 0;
    background-color: #000;
    height: 100%;
    width: 100%;
    min-height: -webkit-fill-available;
}

body {
    min-height: -webkit-fill-available;
}

/* Ta bort iOS browser safe areas */
@supports(padding: env(safe-area-inset-top)) {
    body {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* =========================
   GLOBAL
========================= */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #070000;
    background: radial-gradient(circle at center, #240000 0%, #070000 70%);
    color: white;
    font-family: Helvetica Neue, sans-serif;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
body.page-loaded {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 450px;
    margin: 0 auto;
    padding: 20px 10px;
    padding-top: 0 !important;
}

/* =========================
   VIDEO CARD
========================= */
.video-card {
    background: rgba(40, 0, 0, 0.55);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.45);
    margin-bottom: 25px;
}
.video-frame video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.35);
}

/* =========================
   CONTENT
========================= */
.profile {
    text-align: center;
}
.title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 0 22px red;
}
.bio {
    max-width: 420px;
    margin: 0 auto 25px;
    line-height: 1.55;
    font-size: 18px;
}

/* =========================
   FLAME GLOW TEXT
========================= */
.flame {
    animation: flame 2s infinite alternate;
}
@keyframes flame {
    0% { text-shadow: 0 0 8px red; }
    100% { text-shadow: 0 0 20px #ff1a1a; }
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: block;
    width: 240px;
    margin: 12px auto;
    padding: 14px;
    text-decoration: none;
    background: linear-gradient(90deg, #700000, #b30000);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
    box-shadow: 0 0 22px rgba(255, 0, 0, 0.6);
    transition: 0.25s ease;
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 32px rgba(255, 0, 0, 1);
}

/* =========================
   GLOW FOLLOW EFFECT
========================= */
.glow-follow {
    position: relative;
    overflow: hidden;
}
.glow-follow::after {
    content: '';
    position: absolute;
    top: var(--y);
    left: var(--x);
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    background: rgba(255, 80, 80, 0.35);
    border-radius: 50%;
    pointer-events: none;
    transition: 0.2s;
}
.glow-follow:hover::after {
    width: 140px;
    height: 140px;
}

/* =========================
   BACKGROUND ANIMATION
========================= */
.bg-parallax {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a0000 0%, #060000 80%);
    z-index: -2;
    animation: par 18s infinite alternate ease;
}
@keyframes par {
    0% { background-position: center; }
    100% { background-position: 60% 40%; }
}

/* Ta bort iPhone play-knappen */
video::-webkit-media-controls {
    display: none !important;
}
video::-webkit-media-controls-start-playback-button {
    display: none !important;
}
