/* StarQueen Premium CSS Stylesheet */
/* Theme: Cyber-Royal (Deep Purple + Neon Pink + Gold) */

:root {
    --primary-purple: #2D0B5A;
    --neon-pink: #FF007F;
    --premium-gold: #FFD700;
    --spark-orange: #FF5C00;
    --midnight-bg: #0F041A;
    --surface-dark: #1B0B36;
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(15, 4, 26, 0.6);
    
    --text-main: #FFFFFF;
    --text-secondary: #B8A9D1;
    --text-muted: #7B6B9B;
    
    --hyper-gradient: linear-gradient(135deg, #2D0B5A 10%, #FF007F 70%, #FF00D4 100%);
    --gold-gradient: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    --spark-gradient: linear-gradient(135deg, #FF5C00, #FF8A00);
    --pink-glow: 0 0 20px rgba(255, 0, 127, 0.4);
    --gold-glow: 0 0 20px rgba(255, 215, 0, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--midnight-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.max-w-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Background Glow Blobs */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.35;
}

.bg-glow-1 {
    background: var(--primary-purple);
    top: -100px;
    right: -100px;
    animation: pulseGlow 10s infinite alternate;
}

.bg-glow-2 {
    background: var(--neon-pink);
    top: 600px;
    left: -200px;
    animation: pulseGlow 12s infinite alternate-reverse;
}

.bg-glow-3 {
    background: var(--primary-purple);
    bottom: 200px;
    right: -200px;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.25; }
    100% { transform: scale(1.2) translate(50px, 50px); opacity: 0.45; }
}

/* Common Typography & Gradients */
.gradient-text {
    background: linear-gradient(135deg, #FF007F, #FFD700, #FF00D4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s linear infinite;
}

.hyper-glow {
    text-shadow: 0 0 30px rgba(255, 0, 127, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.btn-primary {
    background: var(--hyper-gradient);
    color: #FFF;
    box-shadow: var(--pink-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.7);
}

.btn-secondary {
    background: var(--gold-gradient);
    color: #100324;
    box-shadow: var(--gold-glow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #FFF;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-large {
    padding: 16px 36px;
    font-size: 17px;
}

/* Glassmorphism Panel Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Navigation Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(15, 4, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 38px;
    width: 38px;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid var(--premium-gold);
    box-shadow: 0 0 12px rgba(255, 0, 127, 0.4);
    animation: floatIcon 3s ease-in-out infinite alternate;
}

.logo-icon {
    color: var(--premium-gold);
    font-size: 20px;
    text-shadow: var(--gold-glow);
    animation: floatIcon 3s ease-in-out infinite alternate;
}

@keyframes floatIcon {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-4px) rotate(10deg); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-link:hover {
    color: #FFF;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FFF;
    font-size: 22px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 127, 0.1);
    border: 1px solid rgba(255, 0, 127, 0.25);
    padding: 6px 16px;
    border-radius: 30px;
    color: var(--neon-pink);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 24px;
}

.badge-premium i {
    font-size: 11px;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

/* Hero Statistics Counters */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 36px;
}

.stat-card h3 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFF, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

/* Hero Graphic / Phone Mockup */
.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup-wrapper {
    position: relative;
}

.phone-mockup {
    width: 290px;
    height: 580px;
    border-radius: 40px;
    background: #000;
    border: 11px solid #1c1a24;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8), 
                0 0 0 2px rgba(255, 255, 255, 0.05),
                0 0 40px rgba(255, 0, 127, 0.15);
    position: relative;
    overflow: hidden;
}

.phone-speaker {
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 10px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #110324, #05010a);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px 14px 14px;
    overflow: hidden;
}

/* Gradient overlay to make overlays readable on model image */
.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 25%, transparent 65%, rgba(0,0,0,0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.live-badge-static {
    background: var(--neon-pink);
    color: #FFF;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: var(--pink-glow);
}

.viewer-count-static {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #FFF;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-stream-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.mock-ui-overlay {
    margin-top: auto;
    z-index: 3;
}

.streamer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.info-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: 1px solid #FFF;
}

.info-name {
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.verification-badge {
    color: #00e5ff;
    font-size: 9px;
}

.info-level {
    font-size: 9px;
    color: var(--premium-gold);
}

.mock-chat {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 10px;
}

.mock-chat-msg {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 6px 10px;
    color: var(--text-secondary);
}

.mock-chat-msg span {
    font-weight: 700;
    color: #FFF;
    margin-right: 4px;
}

.mock-chat-msg.msg-highlight {
    background: rgba(255, 0, 127, 0.15);
    border: 1px solid rgba(255, 0, 127, 0.25);
    color: var(--neon-pink);
}

.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: floatUpDown 4s ease-in-out infinite;
    z-index: 12;
}

.badge-1 {
    top: 70px;
    right: -40px;
}

.badge-2 {
    bottom: 110px;
    left: -45px;
    animation-delay: -2s;
}

.gold-color { color: var(--premium-gold); }
.pink-color { color: var(--neon-pink); }

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

/* Sections Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
    position: relative;
}

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

.about-card {
    background: rgba(27, 11, 54, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.about-card:hover {
    background: rgba(27, 11, 54, 0.7);
    border-color: rgba(255, 0, 127, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 127, 0.08);
}

.about-icon {
    font-size: 32px;
    color: var(--neon-pink);
    margin-bottom: 24px;
    text-shadow: var(--pink-glow);
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 600;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.feature-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse .feature-info {
    direction: ltr; /* Reset text direction inside layout */
}

.feature-img {
    height: 340px;
    background: radial-gradient(circle at center, rgba(45, 11, 90, 0.3) 0%, rgba(15, 4, 26, 0.2) 70%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-vector-icon {
    font-size: 100px;
    color: var(--neon-pink);
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(255, 0, 127, 0.4));
}

.text-orange {
    color: var(--spark-orange);
    filter: drop-shadow(0 0 20px rgba(255, 92, 0, 0.4));
}

.text-gold {
    color: var(--premium-gold);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.feature-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.feature-info p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-main);
    font-weight: 500;
}

.feature-bullets li i {
    color: var(--neon-pink);
}

/* Simulator Section */
.simulator-section {
    padding: 80px 0;
    position: relative;
}

.simulator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* Stream Window Styles */
.sim-feed-container {
    display: flex;
    justify-content: center;
}

.sim-stream-window {
    width: 100%;
    max-width: 390px;
    height: 520px;
    border-radius: 24px;
    background: #090312;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.6),
                0 0 30px rgba(45, 11, 90, 0.4);
}

.sim-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}

.sim-live-status {
    background: var(--neon-pink);
    color: #FFF;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    box-shadow: var(--pink-glow);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #FFF;
    border-radius: 50%;
    display: inline-block;
    animation: pulseRed 1s infinite alternate;
}

@keyframes pulseRed {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.4); opacity: 1; }
}

.sim-viewers {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #FFF;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sim-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.sim-stream-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.sim-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(45, 11, 90, 0.45) 0%, rgba(15, 4, 26, 0.7) 80%);
    transition: background 0.8s ease;
    z-index: 2;
    mix-blend-mode: overlay;
    opacity: 0.65;
    pointer-events: none;
}
}

.sim-streamer-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--premium-gold);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
    z-index: 2;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.sim-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    z-index: 5;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 60%, transparent);
}

.sim-chat-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 180px;
    overflow-y: hidden;
    mask-image: linear-gradient(to top, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, #000 70%, transparent 100%);
    padding-top: 30px;
}

.sim-chat-bubble {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--text-secondary);
    animation: slideUpIn 0.3s ease forwards;
    transform-origin: bottom left;
}

.sim-chat-bubble span {
    font-weight: 700;
    color: #FFF;
    margin-right: 6px;
}

.sim-chat-bubble.system-msg {
    background: rgba(45, 11, 90, 0.4);
    border-color: rgba(123, 107, 155, 0.2);
    color: #b8a9d1;
}

.sim-chat-bubble.gift-msg {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.25);
    color: var(--premium-gold);
}

.sim-chat-bubble.gift-msg span {
    color: var(--premium-gold);
}

@keyframes slideUpIn {
    0% { transform: translateY(20px) scale(0.9); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Floating Particle Animation */
.floating-heart {
    position: absolute;
    bottom: 60px;
    right: 30px;
    font-size: 24px;
    pointer-events: none;
    z-index: 100;
    animation: heartFlyUp 2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

.floating-gift-item {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    pointer-events: none;
    z-index: 101;
    animation: giftScaleFly 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes heartFlyUp {
    0% { transform: translateY(0) translateX(0) scale(0.5) rotate(0deg); opacity: 0; }
    10% { opacity: 1; transform: translateY(-20px) translateX(var(--x-offset, 0px)) scale(1.2) rotate(var(--rotate, 0deg)); }
    100% { transform: translateY(-300px) translateX(calc(var(--x-offset, 0px) * 2)) scale(0.6) rotate(calc(var(--rotate, 0deg) * 2)); opacity: 0; }
}

@keyframes giftScaleFly {
    0% { transform: translate(-50%, 0) scale(0.1); opacity: 0; }
    20% { opacity: 1; transform: translate(-50%, -80px) scale(1.4); }
    40% { transform: translate(-50%, -80px) scale(1); }
    80% { opacity: 1; }
    100% { transform: translate(-50%, -220px) scale(0.8); opacity: 0; }
}

/* Control Panel Styles */
.sim-controls {
    background: rgba(27, 11, 54, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sim-controls h3 {
    font-size: 22px;
    letter-spacing: -0.5px;
}

.control-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: -16px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.control-group label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Poll Widget Demo */
.poll-widget-demo {
    background: rgba(15, 4, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
}

.poll-question {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.poll-option-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px 14px;
    text-align: left;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    z-index: 1;
}

.poll-option-btn:hover {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 127, 0.04);
}

.poll-option-btn.voted {
    border-color: rgba(255, 215, 0, 0.4);
    pointer-events: none;
}

.poll-option-btn .opt-label {
    position: relative;
    z-index: 3;
}

.poll-option-btn .opt-pct {
    position: relative;
    z-index: 3;
    font-weight: 700;
}

.poll-option-btn .opt-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 0, 127, 0.15), rgba(45, 11, 90, 0.25));
    z-index: 2;
    transition: width 0.6s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.poll-option-btn.voted .opt-bar {
    background: linear-gradient(to right, rgba(255, 215, 0, 0.15), rgba(255, 92, 0, 0.2));
}

.poll-footer {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
    text-align: right;
}

/* Gift Grid */
.gift-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gift-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gift-btn:hover {
    background: rgba(45, 11, 90, 0.4);
    border-color: var(--neon-pink);
    transform: scale(1.05);
}

.gift-icon {
    font-size: 24px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.gift-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
}

.gift-cost {
    font-size: 10px;
    font-weight: 700;
    color: var(--premium-gold);
    display: flex;
    align-items: center;
    gap: 2px;
}

.gift-cost i {
    font-size: 8px;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    position: relative;
}

.download-box {
    margin-top: 50px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.download-box h3 {
    font-size: 28px;
}

.apk-info {
    color: var(--text-secondary);
    font-size: 15px;
}

.apk-features-small {
    display: flex;
    gap: 24px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.apk-features-small span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.apk-features-small i {
    color: var(--neon-pink);
}

/* Footer Styles */
.footer {
    background: #090312;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    max-width: 380px;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group h4 {
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-links-group a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links-group a:hover {
    color: #FFF;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* Responsive Designs */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item.reverse {
        direction: ltr;
    }
    
    .simulator-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 4, 26, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 30px;
        gap: 24px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-btn {
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
}
