﻿/* =============================================================
   BESTIA2 - KIRMIZI BEYAZ PREMIUM TEMA (%125 BUYUTULMUS)
   Ana Kirmizi: #1e0a10 (Cardinal Red)
   Koyu Kirmizi: #8B0000 (Dark Red)
   Acik Kirmizi: #E63946 (Accent Red)
   Beyaz: #FFFFFF
   Acik Gri: #F5F5F5
   Koyu Arka Plan: #1A1A1A
   ============================================================= */

/* === GENEL RESET === */
* {
    box-sizing: border-box;
}

/* === UST NAVIGASYON PANELI === */
.bestia-navbar {
    background: linear-gradient(135deg, #1e0606 0%, #622121 100%);
    border-bottom: 4px solid #1e0a10;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.bestia-navbar .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1750px;
    margin: 0 auto;
    padding: 0 38px;
    height: 88px;
}

/* Logo */
.bestia-navbar .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.bestia-navbar .navbar-logo {
    height: 69px;
    width: auto;
    filter: drop-shadow(0 0 13px rgba(139, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.bestia-navbar .navbar-logo:hover {
    filter: drop-shadow(0 0 19px rgba(139, 0, 0, 0.8));
    transform: scale(1.05);
}

.bestia-navbar .logo-text {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.bestia-navbar .logo-text span {
    color: #1e0a10;
}

/* Ana Menu */
.bestia-navbar .nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bestia-navbar .nav-item {
    position: relative;
}

.bestia-navbar .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.bestia-navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #1e0a10;
    transition: width 0.3s ease;
}

.bestia-navbar .nav-link:hover {
    color: #1e0a10;
    background: rgba(139, 0, 0, 0.1);
}

.bestia-navbar .nav-link:hover::before {
    width: 80%;
}

.bestia-navbar .nav-link i {
    font-size: 18px;
    color: #1e0a10;
}

/* Dropdown Menu */
.bestia-navbar .dropdown {
    position: relative;
}

.bestia-navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1A1A1A;
    border: 1px solid #1e0a10;
    border-radius: 10px;
    padding: 13px 0;
    min-width: 225px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(13px);
    transition: all 0.3s ease;
    box-shadow: 0 13px 38px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: block;
}

.bestia-navbar .dropdown:hover .dropdown-menu,
.bestia-navbar .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bestia-navbar .dropdown-toggle {
    cursor: pointer;
}

.bestia-navbar .dropdown-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.bestia-navbar .dropdown-item:hover {
    background: rgba(139, 0, 0, 0.2);
    color: #1e0a10;
    padding-left: 31px;
}

.bestia-navbar .dropdown-item i {
    color: #1e0a10;
    width: 25px;
}

/* HEMEN OYNA Butonu */
.bestia-navbar .btn-play {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #1e0a10 0%, #8B0000 100%);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 63px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 19px rgba(139, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.bestia-navbar .btn-play::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;
}

.bestia-navbar .btn-play:hover {
    background: linear-gradient(135deg, #E63946 0%, #1e0a10 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 31px rgba(139, 0, 0, 0.6);
}

.bestia-navbar .btn-play:hover::before {
    left: 100%;
}

.bestia-navbar .btn-play i {
    font-size: 20px;
}

/* Mobil Menu Butonu */
.bestia-navbar .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 13px;
    z-index: 10001;
}

.bestia-navbar .mobile-toggle span {
    width: 35px;
    height: 4px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

/* === HERO SECTION (ANA SAYFA / TANITIM) === */
.bestia-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 88px;
}

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

.bestia-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(139, 0, 0, 0.2) 100%
    );
    z-index: 2;
}

.bestia-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 875px;
    padding: 25px;
    margin-top: 38px;
}

/* Hero Logo */
.bestia-hero .hero-logo {
    max-width: 470px;
    width: 100%;
    height: auto;
    margin: 0 auto 25px auto;
    display: block;
    filter: drop-shadow(0 0 38px rgba(139, 0, 0, 0.5));
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% { filter: drop-shadow(0 0 25px rgba(139, 0, 0, 0.4)); }
    50% { filter: drop-shadow(0 0 50px rgba(139, 0, 0, 0.7)); }
}

.bestia-hero .hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid #1e0a10;
    border-radius: 63px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 25px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.4); }
    50% { box-shadow: 0 0 25px 6px rgba(139, 0, 0, 0.2); }
}

.bestia-hero .hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 0 38px rgba(0, 0, 0, 0.5);
}

.bestia-hero .hero-title span {
    color: #1e0a10;
    display: block;
    font-size: 38px;
}

.bestia-hero .hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 400;
    max-width: 563px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Butonlari */
.bestia-hero .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.bestia-hero .btn-hero {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bestia-hero .btn-hero-primary {
    background: linear-gradient(135deg, #1e0a10 0%, #8B0000 100%);
    color: #fff;
    border: 3px solid #1e0a10;
    box-shadow: 0 10px 38px rgba(139, 0, 0, 0.4);
}

.bestia-hero .btn-hero-primary:hover {
    background: linear-gradient(135deg, #E63946 0%, #1e0a10 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(139, 0, 0, 0.6);
}

.bestia-hero .btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 3px solid #fff;
}

.bestia-hero .btn-hero-secondary:hover {
    background: #fff;
    color: #1A1A1A;
    transform: translateY(-4px);
}

/* Countdown */
.bestia-countdown {
    display: flex;
    gap: 13px;
    justify-content: center;
    margin-top: 19px;
}

.bestia-countdown .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 13px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 10px;
    min-width: 69px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bestia-countdown .countdown-item:hover {
    background: rgba(139, 0, 0, 0.1);
    border-color: #ffffff;
    transform: translateY(-4px);
}

.bestia-countdown .countdown-number {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.bestia-countdown .countdown-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* === OYUNU INDIR SECTION === */
.bestia-download {
    background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    padding: 75px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bestia-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #1e0a10, transparent);
}

.bestia-download .download-btn {
    display: flex;
    align-items: center;
    gap: 19px;
    padding: 25px 75px;
    background: linear-gradient(135deg, #1e0a10 0%, #8B0000 100%);
    color: #fff;
    text-decoration: none;
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 10px;
    border: 3px solid #1e0a10;
    transition: all 0.4s ease;
    box-shadow: 0 10px 38px rgba(139, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.bestia-download .download-btn::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;
}

.bestia-download .download-btn:hover {
    background: linear-gradient(135deg, #E63946 0%, #1e0a10 100%);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 19px 63px rgba(139, 0, 0, 0.6);
}

.bestia-download .download-btn:hover::before {
    left: 100%;
}

.bestia-download .download-btn i {
    font-size: 30px;
    animation: bounce-icon 2s infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* === TESLIM EDILEN ODULLER SECTION === */
.bestia-rewards {
    background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    padding: 125px 0;
    position: relative;
    overflow: hidden;
}

.bestia-rewards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #1e0a10, transparent);
}

.bestia-rewards .section-header {
    text-align: center;
    margin-bottom: 75px;
}

.bestia-rewards .section-tag {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid #1e0a10;
    border-radius: 63px;
    color: #1e0a10;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 19px;
}

.bestia-rewards .section-title {
    font-size: 53px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.bestia-rewards .section-title span {
    color: #1e0a10;
}

.bestia-rewards .section-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 750px;
    margin: 0 auto;
}

/* Odul Kartlari */
.bestia-rewards .rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 38px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 38px;
}

.bestia-rewards .reward-card {
    background: linear-gradient(145deg, #1E1E1E 0%, #151515 100%);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 20px;
    padding: 44px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bestia-rewards .reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1e0a10, #E63946);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.bestia-rewards .reward-card:hover {
    transform: translateY(-13px);
    border-color: #1e0a10;
    box-shadow: 0 25px 63px rgba(139, 0, 0, 0.2);
}

.bestia-rewards .reward-card:hover::before {
    transform: scaleX(1);
}

.bestia-rewards .reward-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1e0a10 0%, #8B0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 31px;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 13px 38px rgba(139, 0, 0, 0.3);
}

.bestia-rewards .reward-title {
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.bestia-rewards .reward-amount {
    font-size: 40px;
    font-weight: 800;
    color: #1e0a10;
    margin-bottom: 19px;
}

.bestia-rewards .reward-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* === FOOTER === */
.bestia-footer {
    background: #0D0D0D;
    padding: 100px 0 38px;
    position: relative;
}

.bestia-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #1e0a10, transparent);
}

.bestia-footer .footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 38px;
}

.bestia-footer .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 63px;
    padding-bottom: 63px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bestia-footer .footer-brand {
    max-width: 438px;
}

.bestia-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.bestia-footer .footer-logo-img {
    height: 75px;
    width: auto;
    filter: drop-shadow(0 0 13px rgba(139, 0, 0, 0.4));
}

.bestia-footer .footer-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.bestia-footer .footer-logo-text span {
    color: #1e0a10;
}

.bestia-footer .footer-about {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 31px;
}

.bestia-footer .footer-social {
    display: flex;
    gap: 15px;
}

.bestia-footer .social-link {
    width: 53px;
    height: 53px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 23px;
    transition: all 0.3s ease;
}

.bestia-footer .social-link:hover {
    background: #1e0a10;
    border-color: #1e0a10;
    transform: translateY(-4px);
}

.bestia-footer .footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 31px;
    position: relative;
    padding-bottom: 15px;
}

.bestia-footer .footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 3px;
    background: #1e0a10;
}

.bestia-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bestia-footer .footer-links li {
    margin-bottom: 15px;
}

.bestia-footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bestia-footer .footer-links a:hover {
    color: #1e0a10;
    padding-left: 6px;
}

.bestia-footer .footer-links a i {
    font-size: 15px;
    color: #1e0a10;
}

.bestia-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 38px;
    flex-wrap: wrap;
    gap: 25px;
}

.bestia-footer .copyright {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.bestia-footer .copyright span {
    color: #1e0a10;
}

.bestia-footer .footer-badges {
    display: flex;
    gap: 19px;
}

.bestia-footer .badge-item {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

/* === DISCORD WIDGET === */
.discord-float {
    position: fixed;
    left: 31px;
    bottom: 31px;
    z-index: 9998;
}

.discord-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.discord-float .discord-img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 6px 19px rgb(111, 11, 11));
    transition: all 0.3s ease;
}

.discord-float a:hover .discord-img {
    transform: translateY(-6px) scale(1.1);
    filter: drop-shadow(0 10px 31px rgba(118, 4, 4, 0.586));
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .bestia-navbar .nav-menu {
        display: none;
    }
    
    .bestia-navbar .mobile-toggle {
        display: flex;
    }
    
    .bestia-footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .bestia-hero .hero-title {
        font-size: 53px;
    }
}

@media (max-width: 768px) {
    .bestia-navbar .navbar-container {
        padding: 0 25px;
    }
    
    .bestia-hero .hero-title {
        font-size: 40px;
    }
    
    .bestia-hero .hero-subtitle {
        font-size: 20px;
    }
    
    .bestia-hero .btn-hero {
        padding: 18px 35px;
        font-size: 16px;
    }
    
    .bestia-countdown {
        gap: 13px;
    }
    
    .bestia-countdown .countdown-item {
        min-width: 88px;
        padding: 19px;
    }
    
    .bestia-countdown .countdown-number {
        font-size: 35px;
    }
    
    .bestia-footer .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bestia-footer .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .bestia-footer .footer-brand {
        max-width: 100%;
    }
    
    .bestia-footer .footer-social {
        justify-content: center;
    }
    
    .bestia-footer .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    
    .bestia-rewards .section-title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .bestia-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bestia-hero .btn-hero {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .bestia-countdown .countdown-item {
        min-width: 75px;
        padding: 15px;
    }
    
    .bestia-countdown .countdown-number {
        font-size: 30px;
    }
    
    .bestia-countdown .countdown-label {
        font-size: 11px;
    }
}

/* === MOBIL MENU === */
@media (max-width: 1024px) {
    .bestia-navbar .navbar-container {
        padding: 0 19px;
    }
    
    .bestia-navbar .navbar-logo {
        height: 56px;
    }
    
    /* Menuyu sagdan acilir panel olarak ayarla */
    .bestia-navbar .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 350px;
        height: 100vh;
        background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
        flex-direction: column;
        padding: 113px 25px 38px 25px;
        gap: 6px;
        border-left: 4px solid #1e0a10;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998;
        overflow-y: auto;
        display: flex !important;
        box-shadow: -13px 0 50px rgba(0, 0, 0, 0.5);
    }
    
    .bestia-navbar .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .bestia-navbar .nav-item {
        width: 100%;
    }
    
    .bestia-navbar .nav-link {
        padding: 20px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 18px;
        justify-content: flex-start;
        border-radius: 10px;
        margin-bottom: 3px;
    }
    
    .bestia-navbar .nav-link:hover {
        background: rgba(139, 0, 0, 0.15);
    }
    
    .bestia-navbar .nav-link::before {
        display: none;
    }
    
    .bestia-navbar .dropdown-menu {
        position: static;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        border-radius: 10px;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 13px 0 13px 19px;
        margin-top: 6px;
        box-shadow: none;
    }
    
    .bestia-navbar .dropdown-item {
        padding: 15px 19px;
        font-size: 16px;
    }
    
    .bestia-navbar .btn-play {
        display: none;
    }
    
    /* Hamburger menu butonu goster */
    .bestia-navbar .mobile-toggle {
        display: flex !important;
        z-index: 10000;
    }
    
    .bestia-navbar .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: #1e0a10;
    }
    
    .bestia-navbar .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(25px);
    }
    
    .bestia-navbar .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
        background: #1e0a10;
    }
}

@media (max-width: 768px) {
    .bestia-navbar .navbar-container {
        height: 75px;
        padding: 0 19px;
    }
    
    .bestia-navbar .navbar-logo {
        height: 50px;
    }
    
    .bestia-navbar .nav-menu {
        width: 325px;
        padding: 100px 19px 25px 19px;
    }
    
    .bestia-navbar .nav-link {
        padding: 18px 19px;
        font-size: 16px;
    }
}

/* Mobil menu overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* === EK STILLER === */
.bestia-navbar .nav-menu.active {
    display: flex !important;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Body padding for fixed navbar */
body {
    padding-top: 0;
    background: #0D0D0D;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
}

/* Link default colors */
a {
    color: inherit;
    text-decoration: none;
}

/* Selection color */
::selection {
    background: #1e0a10;
    color: #fff;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #1e0a10;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E63946;
}
