/* ==========================================================================
   恋AIモード (RenAI Mode) - Official Promotional Website Stylesheet
   Modern Glassmorphism & Romance Neon Aesthetics
   ========================================================================== */

:root {
    /* Color Palette */
    --primary-pink: #FF4E88;
    --primary-pink-light: #FF75A0;
    --primary-pink-dark: #D82260;
    --accent-purple: #8A4FFF;
    --accent-purple-light: #B485FF;
    --accent-gold: #FFB800;
    --accent-cyan: #00E5FF;
    
    /* Backgrounds & Glass */
    --bg-dark: #0F0E17;
    --bg-card: rgba(26, 24, 40, 0.75);
    --bg-card-hover: rgba(38, 35, 60, 0.85);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-pink: rgba(255, 78, 136, 0.35);
    --glass-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    
    /* Typography */
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.72);
    --text-dim: rgba(255, 255, 255, 0.45);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF4E88 0%, #FF75A0 50%, #8A4FFF 100%);
    --gradient-gold: linear-gradient(135deg, #FFB800 0%, #FF7A00 100%);
    --gradient-dark: linear-gradient(180deg, #0F0E17 0%, #171526 100%);
    
    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

/* Background Particle Canvas */
#petal-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Typography Utilities */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* Section Header Styles */
.section-header {
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 78, 136, 0.12);
    border: 1px solid var(--glass-border-pink);
    border-radius: 30px;
    color: var(--primary-pink-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 14px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(15, 14, 23, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(15, 14, 23, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #FFF;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 78, 136, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--text-dim);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #FFF;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #FFF;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 78, 136, 0.5);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: inherit;
    filter: blur(14px);
    opacity: 0.55;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-glow:hover::before {
    opacity: 0.85;
    filter: blur(20px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: #FFF;
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--glass-border-pink);
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.glow-pink {
    top: 10%;
    left: -100px;
    background: var(--primary-pink);
}

.glow-purple {
    top: 25%;
    right: -100px;
    background: var(--accent-purple);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 78, 136, 0.12);
    border: 1px solid var(--glass-border-pink);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-pink-light);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-pink);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.22;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Store Download Badges */
.hero-download-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    color: #FFF;
    text-decoration: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.store-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 78, 136, 0.3);
}

.store-icon {
    font-size: 2rem;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-small {
    font-size: 0.7rem;
    color: var(--text-dim);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.store-big {
    font-size: 1.15rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-stars {
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.stat-number {
    font-size: 1.15rem;
    font-weight: 900;
    color: #FFF;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--glass-border);
}

/* Hero Phone Mockup Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    height: 620px;
    background: #000;
    border-radius: 48px;
    padding: 12px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 78, 136, 0.35);
    position: relative;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    background: #1A1A2E;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Chat Message Cards */
.floating-chat-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(18, 16, 28, 0.92);
    border: 1px solid var(--glass-border-pink);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
    max-width: 260px;
}

.bubble-1 {
    top: 15%;
    left: -50px;
    animation-delay: 0s;
}

.bubble-2 {
    bottom: 22%;
    right: -40px;
    animation-delay: 2s;
}

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

.bubble-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary-pink);
    object-fit: cover;
}

.bubble-text {
    display: flex;
    flex-direction: column;
}

.bubble-name {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-pink-light);
}

.bubble-text p {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFF;
    margin: 0;
    line-height: 1.3;
}

.floating-heart-badge {
    position: absolute;
    bottom: 8%;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 78, 136, 0.6);
}

.pulse-heart {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(30, 26, 48, 0.4) 0%, transparent 80%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 36px 30px;
    backdrop-filter: blur(14px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-pink);
    background: var(--bg-card-hover);
    box-shadow: var(--glass-shadow);
}

.highlight-card {
    border-color: var(--glass-border-pink);
    box-shadow: 0 10px 30px rgba(255, 78, 136, 0.15);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    background: var(--primary-pink);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 900;
    color: #FFF;
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 22px;
}

.feature-icon-box.pink { background: rgba(255, 78, 136, 0.15); color: var(--primary-pink); }
.feature-icon-box.purple { background: rgba(138, 79, 255, 0.15); color: var(--accent-purple-light); }
.feature-icon-box.gold { background: rgba(255, 184, 0, 0.15); color: var(--accent-gold); }
.feature-icon-box.coral { background: rgba(255, 107, 107, 0.15); color: #FF6B6B; }
.feature-icon-box.blue { background: rgba(0, 229, 255, 0.15); color: var(--accent-cyan); }
.feature-icon-box.green { background: rgba(46, 213, 115, 0.15); color: #2ED573; }

.feature-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* ==========================================================================
   Character Showcase Section
   ========================================================================== */
.character-section {
    padding: 110px 0;
    position: relative;
}

.character-mode-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.mode-tab {
    padding: 14px 32px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.mode-tab:hover {
    color: #FFF;
    border-color: var(--glass-border-pink);
}

.mode-tab.active {
    background: var(--gradient-primary);
    color: #FFF;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(255, 78, 136, 0.4);
}

.character-showcase {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 36px;
    align-items: center;
}

.character-selector-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 8px;
}

.char-thumb-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
    backdrop-filter: blur(8px);
}

.char-thumb-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--glass-border-pink);
    transform: translateX(6px);
}

.char-thumb-btn.active {
    background: rgba(255, 78, 136, 0.15);
    border-color: var(--primary-pink);
    box-shadow: 0 8px 20px rgba(255, 78, 136, 0.25);
}

.char-thumb-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
}

.char-thumb-btn.active .char-thumb-avatar {
    border-color: var(--primary-pink);
}

.char-thumb-info {
    display: flex;
    flex-direction: column;
}

.char-thumb-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFF;
}

.char-thumb-type {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* Character Detail Card */
.character-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 36px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.char-card-bg-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 78, 136, 0.3) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.char-visual-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 440px;
    background: #1F1D2E;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.char-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.character-detail-card:hover .char-main-img {
    transform: scale(1.04);
}

.char-type-pill {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(15, 14, 23, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-pink);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-pink-light);
}

.char-info-wrap {
    display: flex;
    flex-direction: column;
}

.char-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.char-name {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
}

.char-romaji {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.char-voice-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(138, 79, 255, 0.15);
    border: 1px solid rgba(138, 79, 255, 0.3);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-purple-light);
}

.char-personality-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.char-personality-tags .tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.char-quote-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-pink);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
    position: relative;
}

.quote-icon {
    font-size: 1.1rem;
    color: var(--primary-pink);
    margin-bottom: 8px;
    opacity: 0.7;
}

.char-quote {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFF;
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.5;
}

.char-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.char-action-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Game Spotlight Section (あっち向いてホイ)
   ========================================================================== */
.game-spotlight-section {
    padding: 100px 0;
}

.spotlight-banner {
    background: linear-gradient(135deg, rgba(35, 20, 48, 0.9) 0%, rgba(20, 18, 38, 0.95) 100%);
    border: 1px solid var(--glass-border-pink);
    border-radius: 36px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 78, 136, 0.2);
}

.spotlight-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-pink);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
    color: #FFF;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.spotlight-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 18px;
}

.spotlight-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.spotlight-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.spotlight-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #FFF;
}

.spotlight-features li i {
    color: var(--primary-pink);
}

.game-preview-frame {
    width: 320px;
    height: 420px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--glass-border-pink);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-dpad-preview {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 120px;
    background: rgba(15, 14, 23, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-areas:
        ". up ."
        "left center right"
        ". down .";
    place-items: center;
    padding: 8px;
}

.dpad-btn {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 0.8rem;
    font-weight: 800;
}

.dpad-btn.up { grid-area: up; }
.dpad-btn.left { grid-area: left; }
.dpad-btn.right { grid-area: right; }
.dpad-btn.down { grid-area: down; }
.dpad-btn.center { 
    grid-area: center; 
    font-size: 0.7rem; 
    background: var(--primary-pink); 
}

/* ==========================================================================
   Story Section
   ========================================================================== */
.story-section {
    padding: 100px 0;
}

.story-carousel-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.story-card {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    height: 380px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    box-shadow: var(--glass-shadow);
}

.story-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-pink);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-img {
    transform: scale(1.06);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 14, 23, 0.95) 60%);
    display: flex;
    flex-direction: column;
}

.story-ep {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-pink-light);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.story-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 8px;
}

.story-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 26, 48, 0.3) 0%, transparent 80%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(14px);
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--glass-border-pink);
    transform: translateY(-4px);
}

.review-rating {
    color: var(--accent-gold);
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.review-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.review-author {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 700;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--glass-border-pink);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: #FFF;
    font-size: 1.05rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 22px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   Download CTA Section
   ========================================================================== */
.cta-section {
    padding: 80px 0 120px;
}

.cta-card {
    background: var(--gradient-dark);
    border: 1px solid var(--glass-border-pink);
    border-radius: 40px;
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 78, 136, 0.25);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 78, 136, 0.35) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-logo {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(255, 78, 136, 0.5);
    margin-bottom: 24px;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 36px;
}

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

.btn-pulse {
    animation: ctaPulse 3s infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 78, 136, 0.5); }
    50% { box-shadow: 0 0 0 16px rgba(255, 78, 136, 0); }
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--glass-border);
    background: rgba(15, 14, 23, 0.95);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-pink-light);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-badge, .hero-download-group, .hero-stats {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .character-showcase {
        grid-template-columns: 1fr;
    }
    
    .character-selector-list {
        flex-direction: row;
        overflow-x: auto;
        max-height: none;
        padding-bottom: 12px;
    }
    
    .char-thumb-btn {
        min-width: 180px;
    }
    
    .character-detail-card {
        grid-template-columns: 1fr;
    }
    
    .char-visual-wrap {
        height: 360px;
    }

    .spotlight-banner {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        text-align: center;
    }

    .spotlight-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(15, 14, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-menu.open {
        transform: translateY(0);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .btn-header {
        display: none;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 540px;
        transform: none !important;
    }

    .floating-chat-bubble {
        display: none; /* Hide on small mobile to avoid overflow */
    }
}
