/* ============================
   MAJESTE2 - KOYU KAHVE & ALTIN SARISI TEMA
   ============================ */

:root {
    --brown-darkest: #1a0e0a;
    --brown-darker: #2b1810;
    --brown-dark: #3d2317;
    --brown-medium: #5c3a2a;
    --brown-light: #7a5240;
    --brown-lighter: #a07060;

    --gold-dark: #8B6914;
    --gold: #C9A84C;
    --gold-light: #E8C872;
    --gold-bright: #FFD700;
    --gold-pale: #F5E6B8;

    --text-primary: #F5E6D0;
    --text-secondary: #C4A882;
    --text-muted: #8A7460;

    --bg-primary: #1a0e0a;
    --bg-secondary: #231510;
    --bg-tertiary: #2b1810;
    --bg-card: rgba(60, 35, 20, 0.7);

    /* Degrade renk değişkenleri */
    --grad-section1: linear-gradient(160deg, #1a0e0a 0%, #2e1a0e 40%, #1a0e0a 100%);
    --grad-section2: linear-gradient(160deg, #1e0f0b 0%, #331a0a 50%, #1e0f0b 100%);
    --grad-section3: linear-gradient(135deg, #150d08 0%, #2a1508 40%, #3d1e0a 70%, #150d08 100%);
    --grad-gold:     linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));

    --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);

    --transition: all 0.3s ease;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    zoom: 1.15;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.gold {
    color: var(--gold-bright);
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 14, 10, 0.55);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 14, 10, 0.75);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
}
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), transparent);
    animation: navbarLine 4s ease-in-out infinite;
}

@keyframes navbarLine {
    0%   { left: -60%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}

.navbar.scrolled {
    background: rgba(26, 14, 10, 0.78);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 58px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.4));
    transition: var(--transition);
}

.nav-logo-img:hover {
    filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.7));
    transform: scale(1.07);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 10px rgba(255,215,0,0.4);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navbar Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    list-style: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 180px;
    background: rgba(22, 11, 7, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(201,168,76,0.05);
}

/* Toggle ile menu arasındaki boşluğu kapatan köprü */
.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(22,11,7,0.97);
    border-left: 1px solid rgba(201,168,76,0.2);
    border-top: 1px solid rgba(201,168,76,0.2);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 18px !important;
    color: var(--text-secondary) !important;
    font-size: 0.88rem !important;
    letter-spacing: 1px;
    transition: var(--transition);
    width: 100%;
}

.dropdown-item:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-bright) !important;
    padding-left: 24px !important;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: 1rem;
    color: var(--gold);
}

.dropdown-item::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(90, 50, 25, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(90, 50, 25, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, rgba(26,14,10,0.88) 0%, rgba(26,14,10,0.82) 50%, rgba(26,14,10,0.92) 100%),
        url('img/bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(201,168,76,0.03)"/><circle cx="75" cy="75" r="0.3" fill="rgba(201,168,76,0.02)"/><circle cx="50" cy="10" r="0.4" fill="rgba(201,168,76,0.02)"/></pattern></defs><rect fill="url(%23grain)" width="100" height="100"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(26, 14, 10, 0.6) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    margin-top: -8vh;
}

.hero-logo-wrapper {
    margin-bottom: 8px;
}

.hero-logo-img {
    max-width: 680px;
    width: 92%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(201, 168, 76, 0.45)) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
    animation: fadeInUp 1s ease;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 10px;
    text-shadow: 
        0 0 40px rgba(201, 168, 76, 0.5),
        0 0 80px rgba(201, 168, 76, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-secondary);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 15px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons-download {
    margin-top: 12px;
}

/* Countdown */
.hero-countdown {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
    text-transform: uppercase;
    opacity: 0.85;
}

.countdown-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
    min-width: 52px;
    text-align: center;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px;
    padding: 8px 6px 6px;
}

.countdown-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.countdown-sep {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold-dark);
    margin-bottom: 18px;
    opacity: 0.7;
}

.hero-scroll-indicator {
    position: relative;
    margin-top: 18px;
    z-index: 2;
    color: var(--gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    opacity: 0.6;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--brown-darkest);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.05rem;
}

/* ============================
   SECTIONS COMMON
   ============================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================
   REWARDS SECTION
   ============================ */
.rewards-section {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(90, 50, 25, 0.25) 0%, transparent 50%),
        linear-gradient(180deg, rgba(22,10,4,0.85) 0%, rgba(22,10,4,0.78) 50%, rgba(22,10,4,0.88) 100%),
        url('img/reward.png') center center / cover no-repeat;
    position: relative;
}

.rewards-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.rewards-section .container {
    position: relative;
    z-index: 1;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reward-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.reward-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.reward-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(60, 35, 20, 0.9), rgba(80, 50, 30, 0.9));
}

.reward-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

.reward-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.reward-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.reward-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.reward-card:hover .reward-glow {
    opacity: 1;
}

/* ============================
   SYSTEMS SECTION
   ============================ */
.systems-section {
    background: var(--grad-section2);
    position: relative;
}

.systems-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 70%, rgba(139,105,20,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.featured-system {
    background: transparent !important;
    border: none !important;
}

.featured-system .system-icon i {
    color: var(--gold-bright);
    text-shadow: 0 0 20px rgba(255,215,0,0.4);
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.system-card {
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 35px 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.system-card:hover {
    transform: translateY(-5px);
}

.system-card:hover::before {
    opacity: 1;
}

.system-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 18px;
}

.system-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.system-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================
   PRIZES / RAMAZAN SECTION
   ============================ */
.prizes-section {
    background: var(--grad-section3);
    position: relative;
    overflow: hidden;
}

.prizes-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 100%, rgba(139,105,20,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ramazan-title {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-bright), var(--gold-light), var(--gold-bright));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
    0%   { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.ramazan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.ramazan-card {
    background: linear-gradient(145deg, rgba(35,18,8,0.9), rgba(55,30,12,0.75));
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 14px;
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ramazan-card::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;
}

.ramazan-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 25px rgba(201,168,76,0.1);
}

.ramazan-card:hover::before {
    opacity: 1;
}

.ramazan-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 18px;
    text-shadow: 0 0 25px rgba(201,168,76,0.35);
    transition: var(--transition);
}

.ramazan-card:hover .ramazan-icon {
    color: var(--gold-bright);
    text-shadow: 0 0 35px rgba(255,215,0,0.5);
    transform: scale(1.1);
}

.ramazan-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.ramazan-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.75;
}

.prizes-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.prizes-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.prize-card {
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.prize-card:hover {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.prize-img {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.prize-card span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--brown-darkest);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* ============================
   STREAMER SECTION
   ============================ */
.streamer-section {
    background: var(--grad-section1);
    position: relative;
}

.streamer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.streamer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    border-radius: 15px;
    padding: 50px;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.streamer-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.streamer-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.streamer-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brown-medium), var(--brown-dark));
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--gold);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.25);
}

/* ============================
   DOWNLOAD SECTION
   ============================ */
.download-section {
    background: 
        linear-gradient(180deg, var(--bg-secondary), var(--bg-primary)),
        radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
    text-align: center;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: var(--brown-darkest);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
}

.tanitim-hero-logo {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.4));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-features h4,
.footer-social h4 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.footer-features ul {
    list-style: none;
}

.footer-features li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-features li i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    color: var(--gold);
}

.social-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.live-support {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 15px;
}

.live-support i {
    color: var(--gold);
    margin-right: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links span {
    color: var(--text-muted);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 968px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 5px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .streamer-card {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 14, 10, 0.98);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 20px 0;
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 12px 20px;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .section {
        padding: 60px 0;
    }

    .rewards-grid {
        grid-template-columns: 1fr;
    }

    .systems-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 14px 35px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================
   GLOBAL PARTİKÜLLER
   ============================ */
.particle-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
}

/* ============================
   SCROLLBAR
   ============================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brown-darkest);
}

::-webkit-scrollbar-thumb {
    background: var(--brown-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ============================
   SELECTION
   ============================ */
::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--gold-pale);
}
