/* ==========================================================================
   777w.cn Core Stylesheet - Modern Dark/Neon Gaming Theme
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
    --bg-base: #07060b;
    --bg-surface: rgba(18, 16, 26, 0.7);
    --bg-surface-hover: rgba(26, 23, 38, 0.85);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(139, 92, 246, 0.2);
    
    --color-primary: #9d4edd;
    --color-primary-glow: rgba(157, 78, 221, 0.3);
    --color-secondary: #ff007f;
    --color-secondary-glow: rgba(255, 0, 127, 0.3);
    --color-accent: #00f0ff;
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #0b0a0f;
    
    --font-outfit: 'Outfit', 'Noto Sans SC', -apple-system, sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-outfit);
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Background Glowing Effects */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out alternate;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -200px;
    right: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--color-secondary);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 80px) scale(1.1); }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(7, 6, 11, 0.7);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-accent {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-dot {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition-fast);
}

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

.cta-button {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px var(--color-primary-glow);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.4);
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
}

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

.badge-new-games {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
}

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

.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.4);
}

.btn-secondary {
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: 32px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-card {
    flex: 1;
}

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

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Glass Dashboard Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.visual-box {
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-glow);
    padding: 24px;
    position: relative;
}

.visual-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.box-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.box-dot.red { background-color: #ff5f56; }
.box-dot.yellow { background-color: #ffbd2e; }
.box-dot.green { background-color: #27c93f; }

.box-title {
    font-size: 12px;
    color: var(--text-muted);
    font-family: monospace;
    margin-left: 8px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-indicator {
    font-size: 14px;
    font-weight: 600;
}

.chart-time {
    font-size: 11px;
    color: var(--text-muted);
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 140px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
}

.bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.bar-val {
    width: 16px;
    background: linear-gradient(to top, var(--color-primary), var(--color-secondary));
    border-radius: 8px 8px 0 0;
    box-shadow: 0 0 10px var(--color-primary-glow);
    transition: height 1s ease-out;
}

.val-50 { height: 70px; }
.val-60 { height: 84px; }
.val-70 { height: 98px; }
.val-80 { height: 112px; }
.val-90 { height: 126px; }
.val-100 { height: 140px; }

.bar-col span {
    font-size: 10px;
    color: var(--text-muted);
}

.chart-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.summary-item .label {
    color: var(--text-muted);
}

.summary-item .value {
    font-weight: 600;
}

.text-success {
    color: var(--color-accent);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

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

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05), rgba(255, 0, 127, 0.05));
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.traffic-icon { background: rgba(0, 240, 255, 0.1); color: var(--color-accent); }
.media-icon { background: rgba(255, 0, 127, 0.1); color: var(--color-secondary); }
.ads-icon { background: rgba(157, 78, 221, 0.1); color: var(--color-primary); }
.dev-icon { background: rgba(255, 255, 255, 0.05); color: var(--text-main); }

.service-icon svg {
    width: 24px;
    height: 24px;
}

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

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

/* TapTap Games Portal Section */
.games-section {
    padding: 100px 0;
    background: rgba(11, 9, 18, 0.4);
    border-top: 1px solid var(--border-color);
}

.games-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 14px;
}

.filter-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-tab:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
}

.filter-tab.active {
    color: var(--text-dark);
    background: var(--text-main);
    font-weight: 600;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.search-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 10px 16px 10px 40px;
    color: var(--text-main);
    font-size: 14px;
    transition: var(--transition-fast);
}

.search-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary-glow);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Single Game Card */
.game-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11, 9, 18, 0.85);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    color: var(--color-accent);
}

.card-cover {
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
}

.card-cover-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.05);
}

.card-cover-empty svg {
    width: 48px;
    height: 48px;
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-head {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-title-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title-area h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.card-score {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.star-icon {
    width: 14px;
    height: 14px;
    color: #ff9f43;
    fill: #ff9f43;
}

.score-num {
    font-size: 13px;
    font-weight: 700;
    color: #ff9f43;
}

.card-rec {
    font-size: 13px;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 500;
}

.card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.game-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: var(--text-muted);
}

.card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    flex: 1;
}

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

.btn-detail {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-detail:hover {
    background: var(--text-main);
    color: var(--text-dark);
}

.btn-link-taptap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
}

.btn-link-taptap:hover {
    color: var(--color-secondary);
}

.btn-link-taptap svg {
    width: 12px;
    height: 12px;
}

/* Skeleton Loading Cards */
.skeleton-card {
    height: 380px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 75%);
    background-size: 400% 100%;
    animation: loading 1.5s infinite;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

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

/* Contact Section */
.contact-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.contact-card-container {
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-glow);
}

.contact-left {
    padding: 60px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-small {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.contact-left h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 40px;
}

.contact-direct-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.info-row.hover-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

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

.info-text .label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.info-text .value {
    font-size: 15px;
    font-weight: 600;
}

.info-text .value.highlight {
    color: var(--color-accent);
}

.interactive-copy {
    position: relative;
    cursor: pointer;
}

.interactive-copy:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
}

.tooltip {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-main);
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.interactive-copy:hover .tooltip {
    opacity: 1;
}

/* Contact Form Right */
.contact-right {
    padding: 60px;
    background: rgba(255, 255, 255, 0.01);
}

.contact-right h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 10px var(--color-secondary-glow);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px var(--color-primary-glow);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.4);
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 6, 11, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content-box {
    background: #110f1c;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content-box {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--text-main);
}

.modal-body {
    padding: 40px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-loading {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 0;
}

.modal-game-header {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: center;
}

.modal-game-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-game-title h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
}

.modal-game-score {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.modal-game-rec {
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 16px;
}

.modal-game-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-game-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.modal-game-desc h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    border-left: 3px solid var(--color-primary);
    padding-left: 8px;
}

.modal-game-desc p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-footer-actions {
    display: flex;
    justify-content: flex-end;
}

.modal-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.modal-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.4);
}

.modal-btn-primary svg {
    width: 16px;
    height: 16px;
}

/* Footer Section */
footer {
    padding: 80px 0 40px 0;
    background: #030305;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 800;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 400px;
    margin-top: 16px;
    line-height: 1.6;
}

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

.footer-nav h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 8px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-info {
    font-size: 13px;
    color: var(--text-muted);
}

.icp-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.icp-info a:hover {
    color: var(--text-main);
}

.icp-icon {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .contact-card-container {
        grid-template-columns: 1fr;
    }
    
    .contact-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 40px;
    }
    
    .contact-right {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
        gap: 16px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-section {
        padding-top: 180px;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
