/* ============================================
   PAGE-ABOUT.CSS - CLEAN CASINO DESIGN
   RespinnersTV About / O Nás Page
   ============================================ */

/* ============================================
   LAYOUT FIXES
   ============================================ */
body .main-content {
    display: block !important;
    width: 100% !important;
}

body .main-content > section.about-page {
    display: block !important;
    width: 100% !important;
}

/* ============================================
   PAGE CONTAINER
   ============================================ */
.about-page {
    position: relative;
    overflow-x: hidden;
    display: block !important;
    width: 100% !important;
    max-width: 100vw;
    box-sizing: border-box;
    margin-top: calc(var(--nav-height) * -1);
}

.about-page > div {
    display: block !important;
    width: 100% !important;
    flex-shrink: 0;
    min-width: 0;
    box-sizing: border-box;
}

/* Hero, hero-tag, hero-title, hero-desc, stat — see shared.css (.rsp-*) */

/* Background orbs - Subtle */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: orbFloat 30s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-respinners);
    top: -200px;
    right: -150px;
    opacity: 0.08;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-violet));
    bottom: -150px;
    left: -100px;
    opacity: 0.05;
    animation-delay: -10s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-cyan);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.04;
    animation-delay: -16s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--alpha-purple-10);
    border: 1px solid var(--alpha-purple-25);
    border-radius: var(--border-radius-full);
    margin-bottom: 30px;
}

.badge-icon { 
    font-size: 1.2rem; 
}

.badge-text {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--neon-cyan);
}

/* Title - Clean */
.about-page .hero-title {
    font-family: var(--font-display);
    margin-bottom: 25px;
    line-height: 1;
}

.about-page .title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 6px;
}

.about-page .title-accent {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    background: var(--gradient-respinners);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Hero stats - Clean */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 30px;
    background: linear-gradient(160deg, rgba(20, 15, 30, 0.8), rgba(10, 8, 15, 0.95));
    border: 1px solid var(--alpha-white-5);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
}

.stat-pill:hover {
    transform: translateY(-5px);
    border-color: var(--alpha-cyan-40);
    box-shadow: 0 15px 40px var(--alpha-cyan-15), inset 0 0 20px var(--alpha-cyan-10);
}

.stat-pill.highlight {
    border-color: var(--twitch-purple);
    background: linear-gradient(145deg, var(--alpha-purple-12), var(--glass-bg));
}

.stat-pill.highlight:hover {
    box-shadow: 0 0 30px var(--alpha-purple-40);
}

.stat-icon { 
    font-size: 2rem; 
    animation: float 3s ease-in-out infinite;
}

.stat-value {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-respinners);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-glow.btn-primary {
    background: linear-gradient(135deg, var(--alpha-purple-20), var(--alpha-cyan-20));
    backdrop-filter: blur(10px);
    border: 1px solid var(--alpha-cyan-50);
    color: #fff;
    box-shadow: 0 0 20px var(--alpha-cyan-20), inset 0 0 15px var(--alpha-purple-20);
}

.btn-glow.btn-primary:hover {
    background: linear-gradient(135deg, var(--alpha-purple-40), var(--alpha-cyan-40));
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 15px 50px var(--alpha-cyan-40),
        0 0 60px var(--alpha-purple-30),
        inset 0 0 30px var(--alpha-cyan-40);
    border-color: var(--neon-cyan);
}

.btn-glow.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px var(--alpha-cyan-20);
}

.btn-glow.btn-secondary:hover {
    background: var(--alpha-cyan-10);
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
}

.btn-icon { font-size: 1.2rem; }

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--alpha-white-30), transparent);
    transition: left 0.6s ease;
}

.btn-glow:hover .btn-shine {
    left: 100%;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all var(--transition-normal);
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    position: relative;
    box-shadow: var(--glow-cyan);
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: scrollMouse 2s ease-in-out infinite;
}

@keyframes scrollMouse {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

.scroll-text {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.scroll-arrows span {
    transform: rotate(-90deg);
    font-size: 1rem;
    color: var(--neon-cyan);
    animation: scrollArrow 1.5s ease-in-out infinite;
}

.scroll-arrows span:nth-child(2) { animation-delay: 0.2s; }
.scroll-arrows span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollArrow {
    0%, 100% { opacity: 0.3; transform: rotate(-90deg) translateX(0); }
    50% { opacity: 1; transform: rotate(-90deg) translateX(5px); }
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
    padding: 120px 0;
    position: relative;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
}

.text-gradient {
    background: var(--gradient-respinners);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text {
    font-family: var(--font-secondary);
}

.story-text .lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--neon-cyan);
}

/* Story visual */
.story-visual {
    position: relative;
}

.story-card {
    position: relative;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #a855f7, var(--neon-cyan), var(--twitch-purple));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 6s linear infinite;
}

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

/* ============================================
   STREAMERS SECTION
   ============================================ */
.streamers-section {
    padding: calc(var(--nav-height) + 40px) 0 80px;
}

.streamers-section > .container,
.values-section > .container,
.cta-section > .container {
    background: rgba(12, 12, 18, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--alpha-purple-15);
    border-radius: var(--radius-xl, 20px);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.streamers-section > .container::before,
.values-section > .container::before,
.cta-section > .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--alpha-purple-50) 30%,
        var(--alpha-cyan-40) 70%,
        transparent
    );
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.streamer-card {
    position: relative;
    padding: 40px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.streamer-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: var(--gradient-neon);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 6s linear infinite;
}

.streamer-card:hover {
    transform: translateY(-8px);
}

.streamer-card:hover::before {
    opacity: 0;
}

.streamer-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--gradient-neon);
    padding: 4px;
    box-shadow: 0 0 40px var(--alpha-purple-40);
}

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

.streamer-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.streamer-role {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--glow-cyan);
    margin-bottom: 20px;
}

.streamer-bio {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    padding: 120px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    padding: 50px 35px;
    background: linear-gradient(160deg, rgba(20, 15, 30, 0.8), rgba(10, 8, 15, 0.95));
    border: 1px solid var(--alpha-white-5);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--alpha-purple-40);
    box-shadow: 0 25px 60px var(--alpha-black-50), inset 0 0 20px var(--alpha-purple-10);
}

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

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    animation: float 4s ease-in-out infinite;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.value-desc {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 50px;
    background: var(--glass-bg);
    border: 2px solid var(--twitch-purple);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 0 60px var(--alpha-purple-20),
        0 30px 80px var(--alpha-black-30);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--alpha-purple-10), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.cta-desc {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* ============================================
   STREAMERS SHOWCASE - 3D CARDS
   ============================================ */
.streamers-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.streamer-card-3d {
    position: relative;
    background: linear-gradient(160deg, rgba(20, 15, 30, 0.8), rgba(10, 8, 15, 0.95));
    border: 1px solid var(--alpha-white-5);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.streamer-card-3d:hover {
    transform: translateY(-6px);
    border-color: var(--alpha-purple-30);
    box-shadow:
        0 20px 40px var(--alpha-black-40),
        0 0 20px var(--alpha-purple-10);
}

.card-content {
    padding: 40px 35px;
}

/* Avatar container with ring */
.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
}

.avatar-ring {
    position: absolute;
    inset: -8px;
}

.avatar-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.avatar-ring .ring-bg {
    fill: none;
    stroke: var(--alpha-white-10);
    stroke-width: 3;
}

.avatar-ring .ring-progress {
    fill: none;
    stroke: url(#purpleGradient);
    stroke-width: 3;
    stroke-dasharray: 283;
    stroke-dashoffset: 70;
    stroke-linecap: round;
    animation: ringPulse 3s ease-in-out infinite;
}

.avatar-ring.gold .ring-progress {
    stroke: var(--twitch-purple);
}

.avatar-ring.purple .ring-progress {
    stroke: var(--neon-purple);
}

@keyframes ringPulse {
    0%, 100% { stroke-dashoffset: 70; opacity: 1; }
    50% { stroke-dashoffset: 50; opacity: 0.8; }
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-respinners);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--alpha-purple-40);
}

.avatar-letter {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
}

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

.avatar-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px var(--alpha-cyan-50);
}

.status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background: var(--neon-green);
    border-radius: 50%;
    border: 3px solid var(--bg-surface);
    box-shadow: 0 0 15px var(--neon-green);
}

.status-dot.online {
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 15px var(--neon-green); }
    50% { box-shadow: 0 0 25px var(--neon-green), 0 0 40px var(--neon-green); }
}

/* Streamer info */
.streamer-info {
    text-align: center;
    margin-bottom: 25px;
}

.streamer-card-3d .streamer-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.streamer-card-3d .streamer-role {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: var(--glow-cyan);
}

.streamer-bio {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.stat-box {
    padding: 18px 12px;
    background: var(--alpha-black-30);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-box:hover {
    transform: translateY(-2px);
}

.stat-box.highlight {
    background: linear-gradient(145deg, var(--alpha-purple-15), var(--alpha-black-30));
    border-color: var(--alpha-cyan-30);
}

.stat-emoji {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.stat-num {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
}

.stat-txt {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Favorite slots */
.slots-section {
    margin-bottom: 20px;
}

.slots-section h4 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slots-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.slot-tag {
    padding: 8px 16px;
    background: var(--alpha-purple-15);
    border: 1px solid var(--alpha-purple-30);
    border-radius: var(--radius-md);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--neon-purple);
    transition: all var(--transition-normal);
}

.slot-tag:hover {
    transform: translateY(-2px);
}

/* Social buttons */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md, 10px);
    background: var(--alpha-white-4);
    border: 1px solid var(--alpha-white-8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alpha-white-50);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.1);
}

.social-btn.twitch:hover {
    background: var(--alpha-purple-20);
    border-color: var(--alpha-purple-50);
    color: #a855f7;
}

.social-btn.instagram:hover {
    background: rgba(228, 64, 95, 0.2);
    border-color: rgba(228, 64, 95, 0.5);
    color: #e4405f;
}

.social-btn.twitter:hover {
    background: var(--alpha-white-10);
    border-color: var(--alpha-white-30);
    color: #fff;
}

/* Values section enhancements */
.value-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.value-icon-container .icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--alpha-purple-25), transparent 70%);
    filter: blur(15px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.value-card:hover .icon-glow {
    opacity: 1;
}

/* CTA slots animation */
.cta-slots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.cta-reel {
    font-size: 3rem;
    padding: 15px;
    background: var(--bg-surface);
    border: 2px solid var(--twitch-purple);
    border-radius: var(--radius-md);
    animation: reelBounce 2s ease-in-out infinite;
}

.cta-reel:nth-child(2) { animation-delay: 0.2s; }
.cta-reel:nth-child(3) { animation-delay: 0.4s; }

@keyframes reelBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-jackpot {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: var(--gradient-respinners);
    color: #fff;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-jackpot:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px var(--alpha-purple-50), 0 0 40px var(--alpha-cyan-25);
}

.jackpot-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--alpha-white-40), transparent);
    transform: translateX(-100%);
    animation: jackpotShine 3s ease-in-out infinite;
}

@keyframes jackpotShine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.btn-bonus {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--text-primary);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
}

.btn-bonus:hover {
    background: var(--alpha-cyan-10);
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(50px, -50px) scale(1.1) rotate(90deg); }
    50% { transform: translate(-30px, 30px) scale(0.95) rotate(180deg); }
    75% { transform: translate(-50px, -30px) scale(1.05) rotate(270deg); }
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .streamers-showcase {
        grid-template-columns: 1fr;
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .about-hero-section { padding: calc(var(--nav-height) + 16px) 0 32px; }
    .about-hero-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .about-hero-stats { flex-wrap: wrap; }
    .about-hero-title { font-size: 2.6rem; }

    .about-hero {
        padding: 15px 15px 40px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-pill {
        width: 100%;
        max-width: 300px;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-glow {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .streamers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-jackpot, .btn-bonus {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        padding: 12px 24px;
    }
    
    .badge-text {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .title-line {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .title-accent {
        font-size: 2.5rem;
    }
    
    .cta-card {
        padding: 40px 25px;
    }
    
    .value-card {
        padding: 35px 25px;
    }
}

/* ============================================
   BLOG PREVIEW SECTION
   ============================================ */
.about-blog-section {
    padding: 80px 0;
    position: relative;
}

.about-blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--alpha-purple-30), transparent);
}

.ab-blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Featured card spans full width */
.ab-blog-card--featured {
    grid-column: 1 / -1;
}

.ab-blog-card {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--alpha-white-6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.ab-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--twitch-purple), var(--neon-cyan));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.ab-blog-card:hover {
    border-color: var(--alpha-purple-30);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px var(--alpha-black-30), 0 0 24px var(--alpha-purple-8);
}

.ab-blog-card:hover::before {
    opacity: 1;
}

.ab-blog-card-inner {
    padding: 28px 30px;
}

.ab-blog-card--featured .ab-blog-card-inner {
    padding: 36px 40px;
}

/* Meta line */
.ab-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.ab-blog-card-date {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--alpha-white-35);
    letter-spacing: 0.5px;
}

.ab-blog-card-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--alpha-white-20);
}

.ab-blog-card-author {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title */
.ab-blog-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin: 0 0 12px;
    transition: color var(--transition-normal);
}

.ab-blog-card--featured .ab-blog-card-title {
    font-size: 1.5rem;
}

.ab-blog-card:hover .ab-blog-card-title {
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Excerpt */
.ab-blog-card-excerpt {
    font-family: var(--font-secondary);
    font-size: 0.88rem;
    color: var(--alpha-white-40);
    line-height: 1.7;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ab-blog-card--featured .ab-blog-card-excerpt {
    -webkit-line-clamp: 2;
    max-width: 700px;
}

/* Footer: tags + arrow */
.ab-blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ab-blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ab-tag {
    padding: 4px 12px;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--neon-purple);
    background: var(--alpha-purple-10);
    border: 1px solid var(--alpha-purple-20);
    border-radius: 20px;
    transition: all var(--transition-normal);
}

.ab-blog-card:hover .ab-tag {
    background: var(--alpha-purple-15);
    border-color: var(--alpha-purple-35);
}

.ab-blog-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--alpha-white-4);
    border: 1px solid var(--alpha-white-8);
    color: var(--alpha-white-25);
    transition: all var(--transition-normal);
}

.ab-blog-card:hover .ab-blog-card-arrow {
    background: var(--alpha-purple-15);
    border-color: var(--alpha-purple-40);
    color: var(--neon-cyan);
    transform: translateX(4px);
}

/* "All articles" link */
.ab-blog-all {
    text-align: center;
    margin-top: 28px;
}

.ab-blog-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--alpha-white-40);
    text-decoration: none;
    padding: 12px 28px;
    border: 1px solid var(--alpha-white-8);
    border-radius: 30px;
    transition: all var(--transition-normal);
}

.ab-blog-all-link:hover {
    color: var(--neon-cyan);
    border-color: var(--alpha-cyan-30);
    background: var(--alpha-cyan-5);
    transform: translateY(-2px);
}

.ab-blog-all-link svg {
    transition: transform var(--transition-normal);
}

.ab-blog-all-link:hover svg {
    transform: translateX(4px);
}

/* ── Blog section responsive ── */
@media (max-width: 768px) {
    .about-blog-section { padding: 56px 0; }

    .ab-blog-grid {
        grid-template-columns: 1fr;
    }

    .ab-blog-card-inner {
        padding: 22px 20px;
    }

    .ab-blog-card--featured .ab-blog-card-inner {
        padding: 26px 22px;
    }

    .ab-blog-card--featured .ab-blog-card-title {
        font-size: 1.2rem;
    }

    .ab-blog-card-arrow {
        display: none;
    }
}

/* 1080p fix */
@media (max-width: 1920px) {
    .about-story-section,
    .about-values-section {
        padding: 64px 0;
    }
    .about-streamers-section {
        padding: 56px 0;
    }
}
