/* Site Main Styles - Epic RPG Theme */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');



:root {

    /* Oyun teması renkleri */

    --bg-ink: #0f0b07;

    --bg-ember: #1a120a;

    --bg-ash: #241911;

    --gold: #e0b26a;

    --gold-strong: #f2c777;

    --gold-dark: #b8860b;

    --text-light: #f0eadf;

    --text-muted: #c9b7a0;

    --border-gold: rgba(224, 178, 106, 0.18);

    --shadow-gold: rgba(224, 178, 106, 0.15);

    --card-top: rgba(34, 24, 16, 0.92);

    --card-bot: rgba(16, 12, 9, 0.92);

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;

    background: var(--bg-ink);

    color: var(--text-light);

    line-height: 1.6;

    overflow-x: hidden;

}



/* ===== CURRENCY ICONS ===== */

.currency-icon {

    width: 18px;

    height: 18px;

    vertical-align: middle;

    object-fit: contain;

    display: inline-block;

    margin-right: 2px;

    filter: drop-shadow(0 1px 2px rgba(0,0,0,.4));

}



/* ===== HEADER / NAVIGATION ===== */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

    background: linear-gradient(180deg, rgba(15, 11, 7, 0.98) 0%, rgba(26, 18, 10, 0.95) 100%);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border-gold);

    transition: background 0.3s ease, box-shadow 0.3s ease;

}



.site-header.scrolled {

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);

}



.header-container {

    max-width: 1400px;

    margin: 0 auto;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 80px;

}



.site-logo {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

}



.site-logo-img {

    height: 45px;

    width: auto;

    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));

    transition: transform 0.3s ease;

}



.site-logo:hover .site-logo-img {

    transform: scale(1.05);

}



.site-logo-icon {

    width: 45px;

    height: 45px;

    background: linear-gradient(135deg, var(--gold-strong) 0%, var(--gold) 100%);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 4px 15px var(--shadow-gold);

}



.site-logo-icon svg {

    width: 24px;

    height: 24px;

    fill: #1a1a1a;

}



.site-logo-text {

    font-family: 'Cinzel', serif;

    font-size: 24px;

    font-weight: 700;

    color: var(--gold-strong);

    letter-spacing: 2px;

    text-transform: uppercase;

}



/* Navigation */

.main-nav {

    display: flex;

    align-items: center;

    gap: 40px;

}



.nav-links {

    display: flex;

    list-style: none;

    gap: 35px;

}



.nav-links a {

    font-family: 'Cinzel', serif;

    font-size: 14px;

    font-weight: 600;

    color: var(--text-muted);

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: all 0.3s ease;

    position: relative;

}



.nav-links a:hover,

.nav-links a.active {

    color: var(--gold-strong);

}



.nav-links a::after {

    content: '';

    position: absolute;

    bottom: -5px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--gold-strong);

    transition: width 0.3s ease;

}



.nav-links a:hover::after,

.nav-links a.active::after {

    width: 100%;

}



/* Auth Buttons */

.nav-auth {

    display: flex;

    gap: 15px;

}



.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 28px;

    border-radius: 8px;

    font-family: 'Cinzel', serif;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    text-decoration: none;

    cursor: pointer;

    transition: all 0.3s ease;

    border: none;

}



.btn-outline {

    background: transparent;

    border: 1px solid var(--border-gold);

    color: var(--text-light);

}



.btn-outline:hover {

    background: rgba(224, 178, 106, 0.1);

    border-color: var(--gold-strong);

    color: var(--gold-strong);

}



.btn-primary {

    background: linear-gradient(135deg, var(--gold-strong) 0%, var(--gold) 100%);

    color: #1a1a1a;

    box-shadow: 0 4px 15px var(--shadow-gold);

}



.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(224, 178, 106, 0.3);

}



.btn-glow {

    position: relative;

    overflow: hidden;

}



.btn-glow::after {

    content: '';

    position: absolute;

    top: -50%;

    left: -60%;

    width: 40%;

    height: 200%;

    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);

    transform: skewX(-25deg);

    animation: btnShine 4s ease-in-out infinite;

}



@keyframes btnShine {

    0%, 100% { left: -60%; }

    50%      { left: 120%; }

}



/* Mobile Menu Toggle */

.mobile-menu-toggle {

    display: none;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    padding: 10px;

}



.mobile-menu-toggle span {

    width: 25px;

    height: 2px;

    background: var(--gold-strong);

    transition: all 0.3s ease;

}



/* ===== HERO SECTION ===== */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    padding: 120px 30px 80px;

    background: 

        linear-gradient(180deg, rgba(10, 12, 16, 0.82) 0%, rgba(13, 17, 23, 0.88) 50%, rgba(10, 12, 16, 0.95) 100%),

        url('/game/assets/webg.png');

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    overflow: hidden;

}



.hero-particles {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    pointer-events: none;

    z-index: 1;

}



.hero::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd700' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

    pointer-events: none;

    z-index: 2;

}



.hero-content {

    max-width: 900px;

    text-align: center;

    position: relative;

    z-index: 10;

    animation: fadeInUp 0.8s ease-out;

}



@keyframes fadeInUp {

    from { opacity: 0; transform: translateY(30px); }

    to   { opacity: 1; transform: translateY(0); }

}



.hero-badge {

    display: inline-block;

    padding: 8px 24px;

    background: rgba(224, 178, 106, 0.08);

    border: 1px solid var(--border-gold);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 600;

    color: var(--gold-strong);

    text-transform: uppercase;

    letter-spacing: 3px;

    margin-bottom: 25px;

    animation: fadeInUp 0.8s ease-out 0.1s both;

}



.hero-title {

    font-family: 'Cinzel', serif;

    font-size: clamp(38px, 7vw, 72px);

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 25px;

    text-transform: uppercase;

    letter-spacing: 4px;

    animation: fadeInUp 0.8s ease-out 0.2s both;

}



.hero-title span {

    background: linear-gradient(135deg, var(--gold-strong) 0%, var(--gold) 50%, var(--gold-dark) 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.hero-subtitle {

    font-size: 17px;

    color: var(--text-muted);

    max-width: 600px;

    margin: 0 auto 35px;

    line-height: 1.8;

    animation: fadeInUp 0.8s ease-out 0.3s both;

}



.hero-buttons {

    display: flex;

    gap: 20px;

    justify-content: center;

    flex-wrap: wrap;

    animation: fadeInUp 0.8s ease-out 0.4s both;

}



.hero-buttons .btn {

    padding: 16px 40px;

    font-size: 14px;

}



/* Hero Mini Stats */

.hero-mini-stats {

    display: flex;

    gap: 40px;

    justify-content: center;

    margin-top: 50px;

    animation: fadeInUp 0.8s ease-out 0.55s both;

}



.hero-mini-stats div {

    font-size: 13px;

    color: var(--text-muted);

    text-transform: uppercase;

    letter-spacing: 1px;

}



.hero-mini-stats strong {

    color: var(--gold-strong);

    font-family: 'Cinzel', serif;

    font-size: 16px;

    margin-right: 6px;

}



/* ===== HOW TO PLAY SECTION ===== */

.how-section {

    padding: 90px 30px;

    background: linear-gradient(180deg, var(--bg-ink) 0%, var(--bg-ash) 100%);

}



.how-grid {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0;

    max-width: 1000px;

    margin: 0 auto;

}



.how-step {

    flex: 1;

    text-align: center;

    padding: 30px 25px;

    position: relative;

}



.how-number {

    width: 56px;

    height: 56px;

    margin: 0 auto 20px;

    background: linear-gradient(135deg, var(--gold-strong), var(--gold-dark));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-family: 'Cinzel', serif;

    font-size: 22px;

    font-weight: 700;

    color: #1a1a1a;

    box-shadow: 0 4px 20px var(--shadow-gold);

}



.how-step h3 {

    font-family: 'Cinzel', serif;

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 10px;

    color: var(--text-light);

}



.how-step p {

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.6;

}



.how-connector {

    width: 60px;

    height: 2px;

    background: linear-gradient(90deg, var(--gold-dark), var(--gold-strong), var(--gold-dark));

    flex-shrink: 0;

    opacity: 0.5;

}



/* ===== FEATURES SECTION ===== */

.features {

    padding: 100px 30px;

    background: linear-gradient(180deg, var(--bg-ash) 0%, var(--bg-ember) 50%, var(--bg-ash) 100%);

}



.section-container {

    max-width: 1200px;

    margin: 0 auto;

}



.section-header {

    text-align: center;

    margin-bottom: 60px;

}



.section-header h2 {

    font-family: 'Cinzel', serif;

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 15px;

    text-transform: uppercase;

    letter-spacing: 3px;

}



.section-header h2 span {

    color: var(--gold-strong);

}



.section-header p {

    color: var(--text-muted);

    font-size: 16px;

    max-width: 600px;

    margin: 0 auto;

}



.features-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 25px;

}



.feature-card {

    background: linear-gradient(180deg, rgba(34, 24, 16, 0.92) 0%, rgba(16, 12, 9, 0.92) 100%);

    border: 1px solid var(--border-gold);

    border-radius: 16px;

    padding: 32px 28px;

    text-align: center;

    transition: all 0.4s ease;

    position: relative;

    overflow: hidden;

}



.feature-card::before {

    content: '';

    position: absolute;

    inset: 0;

    background-image: url('/game/assets/panel/panel_stone.png');

    background-repeat: repeat;

    background-size: 360px 360px;

    opacity: 0.20;

    pointer-events: none;

    z-index: 0;

}



.feature-card::after {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background: linear-gradient(90deg, transparent, var(--gold-strong), transparent);

    opacity: 0;

    transition: opacity 0.3s ease;

}



.feature-card > * {

    position: relative;

    z-index: 1;

}



.feature-card:hover {

    transform: translateY(-5px);

    border-color: rgba(224, 178, 106, 0.4);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

}



.feature-card:hover::after {

    opacity: 1;

}



.feature-icon {

    width: 64px;

    height: 64px;

    margin: 0 auto 20px;

    background: rgba(224, 178, 106, 0.10);

    border: 1px solid rgba(224, 178, 106, 0.12);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.feature-card:hover .feature-icon {

    transform: scale(1.1);

    box-shadow: 0 0 20px var(--shadow-gold);

}



.feature-card h3 {

    font-family: 'Cinzel', serif;

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 12px;

    color: var(--text-light);

}



.feature-card p {

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.7;

}



/* ===== STATS SECTION ===== */

.stats-section {

    padding: 80px 30px;

    background: rgba(34, 24, 16, 0.5);

    border-top: 1px solid var(--border-gold);

    border-bottom: 1px solid var(--border-gold);

}



.stats-grid {

    max-width: 1000px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

    text-align: center;

}



.stat-item h3 {

    font-family: 'Cinzel', serif;

    font-size: 48px;

    font-weight: 700;

    color: var(--gold-strong);

    margin-bottom: 10px;

}



.stat-item p {

    color: var(--text-muted);

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 1px;

}



/* ===== TESTIMONIALS SECTION ===== */

.testimonials-section {

    padding: 90px 30px;

    background: linear-gradient(180deg, var(--bg-ash) 0%, var(--bg-ember) 100%);

}



.testimonials-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;

    max-width: 1000px;

    margin: 0 auto;

}



.testimonial-card {

    background: linear-gradient(180deg, var(--card-top), var(--card-bot));

    border: 1px solid var(--border-gold);

    border-radius: 14px;

    padding: 30px;

    position: relative;

}



.testimonial-card::before {

    content: '\201C';

    font-family: 'Cinzel', serif;

    font-size: 60px;

    color: var(--gold-strong);

    opacity: 0.15;

    position: absolute;

    top: 10px;

    left: 20px;

    line-height: 1;

}



.testimonial-text {

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.7;

    font-style: italic;

    margin-bottom: 18px;

}



.testimonial-author {

    font-family: 'Cinzel', serif;

    font-size: 13px;

    color: var(--gold);

    font-weight: 600;

}



/* ===== CTA SECTION ===== */

.cta-section {

    padding: 100px 30px;

    text-align: center;

    background: 

        linear-gradient(180deg, rgba(13, 17, 23, 0.92) 0%, rgba(10, 12, 16, 0.95) 100%),

        url('/game/assets/webg.png');

    background-size: cover;

    background-position: center bottom;

}



.cta-content {

    max-width: 700px;

    margin: 0 auto;

}



.cta-content h2 {

    font-family: 'Cinzel', serif;

    font-size: 38px;

    font-weight: 700;

    margin-bottom: 20px;

    text-transform: uppercase;

    letter-spacing: 2px;

}



.cta-content p {

    color: var(--text-muted);

    font-size: 16px;

    margin-bottom: 35px;

}



/* ===== FOOTER ===== */

.site-footer {

    background: linear-gradient(180deg, var(--bg-ash) 0%, var(--bg-ink) 100%);

    border-top: 1px solid var(--border-gold);

    padding: 60px 30px 30px;

    position: relative;

}



.site-footer::before {

    content: '';

    position: absolute;

    inset: 0;

    background-image: url('/game/assets/panel/panel_stone.png');

    background-repeat: repeat;

    background-size: 360px 360px;

    opacity: 0.12;

    pointer-events: none;

}



.site-footer > * {

    position: relative;

    z-index: 1;

}



.footer-container {

    max-width: 1200px;

    margin: 0 auto;

}



.footer-top {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;

    margin-bottom: 50px;

}



.footer-brand h3 {

    font-family: 'Cinzel', serif;

    font-size: 24px;

    font-weight: 700;

    color: var(--gold-strong);

    margin-bottom: 15px;

    letter-spacing: 2px;

}



.footer-brand p {

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 20px;

}



.footer-social {

    display: flex;

    gap: 15px;

}



.footer-social a {

    width: 40px;

    height: 40px;

    background: rgba(224, 178, 106, 0.1);

    border: 1px solid var(--border-gold);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--text-muted);

    text-decoration: none;

    transition: all 0.3s ease;

    font-size: 16px;

}



.footer-social a:hover {

    background: var(--gold-strong);

    color: #1a1a1a;

    border-color: var(--gold-strong);

    transform: translateY(-2px);

}



.footer-column h4 {

    font-family: 'Cinzel', serif;

    font-size: 14px;

    font-weight: 700;

    color: var(--text-light);

    margin-bottom: 20px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

}



.footer-column ul {

    list-style: none;

}



.footer-column li {

    margin-bottom: 12px;

}



.footer-column a {

    color: var(--text-muted);

    text-decoration: none;

    font-size: 14px;

    transition: color 0.3s ease, padding-left 0.3s ease;

}



.footer-column a:hover {

    color: var(--gold-strong);

    padding-left: 4px;

}



.footer-bottom {

    border-top: 1px solid rgba(139, 117, 96, 0.15);

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

}



.footer-bottom p {

    color: var(--text-muted);

    font-size: 13px;

}



.footer-bottom-links {

    display: flex;

    gap: 25px;

}



.footer-bottom-links a {

    color: var(--text-muted);

    text-decoration: none;

    font-size: 13px;

    transition: color 0.3s ease;

}



.footer-bottom-links a:hover {

    color: var(--gold-strong);

}



/* ===== PAGE HERO (for inner pages) ===== */

.page-hero {

    padding: 150px 30px 80px;

    text-align: center;

    background: 

        linear-gradient(180deg, rgba(10, 12, 16, 0.88) 0%, rgba(13, 17, 23, 0.92) 100%),

        url('/game/assets/webg.png');

    background-size: cover;

    background-position: center top;

}



.page-hero h1 {

    font-family: 'Cinzel', serif;

    font-size: 48px;

    font-weight: 700;

    margin-bottom: 15px;

    text-transform: uppercase;

    letter-spacing: 3px;

}



.page-hero h1 span {

    color: var(--gold-strong);

}



.page-hero p {

    color: var(--text-muted);

    font-size: 16px;

    max-width: 600px;

    margin: 0 auto;

}



/* ===== CONTENT SECTIONS ===== */

.content-section {

    padding: 80px 30px;

}



.content-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;

}



.content-card {

    background: rgba(34, 24, 16, 0.6);

    border: 1px solid var(--border-gold);

    border-radius: 12px;

    padding: 25px;

    transition: all 0.3s ease;

}



.content-card:hover {

    border-color: rgba(224, 178, 106, 0.4);

    transform: translateY(-3px);

}



.content-card h3 {

    font-family: 'Cinzel', serif;

    font-size: 18px;

    font-weight: 600;

    margin-bottom: 12px;

    color: var(--gold-strong);

}



.content-card p {

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.6;

}



/* ===== CONTACT FORM ===== */

.contact-form {

    max-width: 600px;

    margin: 0 auto;

    background: rgba(34, 24, 16, 0.6);

    border: 1px solid var(--border-gold);

    border-radius: 16px;

    padding: 40px;

}



.contact-form .form-group {

    margin-bottom: 20px;

}



.contact-form label {

    display: block;

    font-size: 12px;

    font-weight: 600;

    color: var(--text-muted);

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 8px;

}



.contact-form input,

.contact-form textarea {

    width: 100%;

    padding: 14px 16px;

    background: rgba(18, 12, 8, 0.65);

    border: 1px solid rgba(224, 178, 106, 0.2);

    border-radius: 10px;

    font-size: 15px;

    color: var(--text-light);

    font-family: inherit;

    transition: all 0.3s ease;

}



.contact-form input:focus,

.contact-form textarea:focus {

    outline: none;

    border-color: rgba(224, 178, 106, 0.5);

    box-shadow: 0 0 0 3px rgba(224, 178, 106, 0.1);

}



.contact-form textarea {

    min-height: 150px;

    resize: vertical;

}



/* ===== SCROLL ANIMATIONS ===== */

.fade-in-view {

    opacity: 0;

    transform: translateY(20px);

    transition: opacity 0.6s ease, transform 0.6s ease;

}

.fade-in-view.visible {

    opacity: 1;

    transform: none;

}



/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {

    .footer-top {

        grid-template-columns: 1fr 1fr;

    }

    .how-grid {

        flex-wrap: wrap;

        gap: 20px;

    }

    .how-connector {

        display: none;

    }

}



@media (max-width: 768px) {

    .header-container {

        height: 70px;

    }

    

    .main-nav {

        position: fixed;

        top: 70px;

        left: 0;

        right: 0;

        background: rgba(10, 12, 16, 0.98);

        flex-direction: column;

        padding: 30px;

        gap: 30px;

        transform: translateY(-100%);

        opacity: 0;

        visibility: hidden;

        transition: all 0.3s ease;

        border-bottom: 1px solid var(--border-gold);

    }

    

    .main-nav.active {

        transform: translateY(0);

        opacity: 1;

        visibility: visible;

    }

    

    .nav-links {

        flex-direction: column;

        align-items: center;

        gap: 20px;

    }

    

    .nav-auth {

        flex-direction: column;

        width: 100%;

    }

    

    .nav-auth .btn {

        width: 100%;

    }

    

    .mobile-menu-toggle {

        display: flex;

    }

    

    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    

    .footer-top {

        grid-template-columns: 1fr;

        text-align: center;

    }

    

    .footer-social {

        justify-content: center;

    }

    

    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }



    .hero-mini-stats {

        flex-direction: column;

        gap: 12px;

    }



    .how-step {

        padding: 20px 15px;

    }



    .testimonials-grid {

        grid-template-columns: 1fr;

    }

}



@media (max-width: 480px) {

    .hero-title {

        font-size: 32px;

        letter-spacing: 2px;

    }

    

    .hero-buttons {

        flex-direction: column;

        width: 100%;

    }

    

    .hero-buttons .btn {

        width: 100%;

    }

    

    .section-header h2 {

        font-size: 28px;

    }

    

    .stats-grid {

        grid-template-columns: 1fr;

    }

    

    .stat-item h3 {

        font-size: 36px;

    }



    .features-grid {

        grid-template-columns: 1fr;

    }

}

/* ===== DOWNLOAD PAGE ===== */
.download-hero {
    padding: 150px 30px 90px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(61,220,132,0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10,12,16,0.94) 0%, rgba(13,17,23,0.97) 100%),
        url('/game/assets/webg.png');
    background-size: cover;
    background-position: center top;
    position: relative;
    overflow: hidden;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -55%);
    background: radial-gradient(circle, rgba(61,220,132,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.download-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Phone Mockup */
.download-phone {
    margin-bottom: 40px;
    animation: fadeInUp 0.7s ease-out both;
}

.phone-frame {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(61,220,132,0.15) 0%, rgba(0,200,83,0.08) 100%);
    border: 2px solid rgba(61,220,132,0.3);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(61,220,132,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}

.phone-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.phone-app-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.phone-app-name {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    color: var(--gold-strong);
    letter-spacing: 1px;
    font-weight: 600;
}

.download-title {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--text-light);
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.download-title span {
    background: linear-gradient(135deg, #3ddc84 0%, #00e676 50%, #69f0ae 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 45px;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

/* Download Button */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 56px;
    background: linear-gradient(135deg, #3ddc84 0%, #00c853 100%);
    border: none;
    border-radius: 14px;
    color: #0a1a0a;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.7s ease-out 0.3s both;
    box-shadow:
        0 6px 30px rgba(61,220,132,0.35),
        0 2px 8px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-download:hover::before {
    left: 100%;
}

.btn-download:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 10px 45px rgba(61,220,132,0.45),
        0 4px 12px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-download:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-download .dl-icon {
    flex-shrink: 0;
}

.btn-download .dl-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.3;
}

.btn-download .dl-text strong {
    font-size: 17px;
}

.btn-download .dl-text small {
    font-size: 12px;
    opacity: 0.7;
    font-weight: 500;
}

/* Download Meta Info */
.download-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
    animation: fadeInUp 0.7s ease-out 0.4s both;
}

.download-meta span {
    color: var(--text-muted);
    font-size: 13px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
}

/* Download Instructions */
.download-instructions {
    padding: 90px 30px;
    background: linear-gradient(180deg, var(--bg-ash) 0%, var(--bg-ember) 100%);
}

/* Download FAQ */
.download-faq {
    padding: 90px 30px;
    background: var(--bg-ember);
    border-top: 1px solid var(--border-gold);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(160deg, rgba(34,24,16,0.7) 0%, rgba(20,14,10,0.8) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(224,178,106,0.35);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-strong);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Nav Download Link */
.nav-download {
    color: #3ddc84 !important;
    font-weight: 600;
}

.nav-download:hover {
    color: #69f0ae !important;
}

/* Hero Android Banner */
.hero-android-banner {
    margin-top: 25px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-android {
    border-color: #3ddc84 !important;
    color: #3ddc84 !important;
    font-size: 13px;
}

.btn-android:hover {
    background: rgba(61,220,132,0.15) !important;
}

@media (max-width: 768px) {
    .download-title {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .download-meta {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .download-hero {
        padding: 130px 20px 60px;
    }

    .download-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .btn-download {
        padding: 16px 36px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .phone-frame {
        width: 100px;
        height: 100px;
    }

    .phone-app-icon {
        width: 44px;
        height: 44px;
    }

    .download-meta span {
        font-size: 12px;
        padding: 6px 12px;
    }
}






