:root {
    --primary: #10385a;
    --primary-light: #1a4d75;
    --primary-dark: #0a2a3f;
    --background: #0a1929;
    --background-light: #0f2942;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --accent: #00b4d8;
    --accent-light: #48cae4;
    --warning: #ffb703;
    --danger: #ef476f;
    --success: #06d6a0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a1929;
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 5rem;
}

/* Navigation */
nav {
    background-color: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
}

nav.scrolled {
    background-color: rgba(10, 25, 41, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(135deg, rgba(15, 41, 66, 0.8), rgba(10, 25, 41, 0.9));
    border: 1px solid rgba(0, 180, 216, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.2);
    border-color: rgba(0, 180, 216, 0.3);
}

.feature-card .icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 180, 216, 0.2));
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.feature-card .icon-wrapper i {
    font-size: 2rem;
    color: #00b4d8;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, #00b4d8, #0077b6);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #00b4d8;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
}

/* Loading Animation */
.loading {
    background-color: #0a1929;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #00b4d8;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Menu */
.mobile-menu {
    background-color: #0a1929;
}

.mobile-menu a {
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00b4d8;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px #00b4d8;
}

.mobile-menu a:hover {
    color: #00b4d8;
    text-shadow: 0 0 8px rgba(0, 180, 216, 0.5);
}

.mobile-menu a:hover::before {
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .feature-card,
    .game-card,
    .tournament-card {
        margin-bottom: 1rem;
    }
    
    .game-card {
        min-width: 220px;
        height: 140px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-220px * 10 - 2rem * 10));
        }
    }
}

/* Logo Styles */
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    background: linear-gradient(45deg, #00b4d8, #90e0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-svg {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 10 - 2rem * 10));
    }
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Popüler Oyunlar Marquee */
.games-marquee {
    overflow: hidden;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 0;
    position: relative;
}

.games-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgb(15 41 66 / 0%) 0%, rgba(15, 41, 66, 0.8) 50%, rgb(15 41 66 / 0%) 100%);
    z-index: -1;
}

.games-marquee-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.games-marquee:hover .games-marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.game-marquee-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    background: linear-gradient(45deg, #ffffff, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 180, 216, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    position: relative;
}

.game-marquee-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00b4d8, #ffffff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.game-marquee-item:hover {
    transform: scale(1.1) skewX(-3deg);
    filter: brightness(1.2);
}

.game-marquee-item:hover::after {
    width: 80%;
}

@media (max-width: 768px) {
    .games-marquee-track {
        animation-duration: 15s;
    }
    .game-marquee-item {
        font-size: 1.4rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
}

.gradient-title {
    background: linear-gradient(45deg, #fff 10%, #00b4d8 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: none;
}

.announcements-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.announcements-slider::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.announcement-box {
    scroll-snap-align: center;
    min-width: 340px;
    max-width: 400px;
    margin-right: 0;
}
@media (max-width: 768px) {
    .announcement-box {
        min-width: 80vw;
        max-width: 90vw;
    }
}

.announcement-marquee {
    background-color: #0f2942;
    overflow: hidden;
}

.announcement-marquee-track {
    animation: announcement-marquee 20s linear infinite;
}

@keyframes announcement-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.announcement-marquee-item {
    color: #00b4d8;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0,180,216,0.08);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: inline-block;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .announcement-marquee-item {
        font-size: 1rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .announcement-marquee-track {
        animation-duration: 18s;
    }
}

.min-h-screen {
    min-height: 90vh;
}

.masonry-gallery {
    columns: 1;
    column-gap: 1rem;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}
.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}
.gallery-img:hover {
    transform: scale(1.05);
}
@media (min-width: 640px) {
    .masonry-gallery {
        columns: 2;
    }
}
@media (min-width: 1024px) {
    .masonry-gallery {
        columns: 3;
    }
}

h1, h2, h3, .gradient-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 0.03em;
    line-height: 1.15;
}

p, .feature-card p, .announcement-box, .contact-info, .game-marquee-item, .announcement-marquee-item {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}

/* Mobil Sabit Alt Butonlar */
@media (max-width: 768px) {
  .mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: rgba(10,25,41,0.9);
    backdrop-filter: blur(10px);
    z-index: 50;
  }
  .mobile-fixed-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .mobile-fixed-btn.phone {
    background: linear-gradient(45deg, #00b4d8, #0077b6);
  }
  .mobile-fixed-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #00b4d8);
  }
  .mobile-fixed-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
  }
  .mobile-fixed-btn svg {
    width: 1.6em;
    height: 1.6em;
    display: inline-block;
  }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Modern Menü Stilleri */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    color: white;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00b4d8;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 8px #00b4d8;
}

.nav-link:hover {
    color: #00b4d8;
    text-shadow: 0 0 8px rgba(0, 180, 216, 0.5);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    color: #00b4d8;
}

.nav-link.active::before {
    width: 80%;
    background: #00b4d8;
    box-shadow: 0 0 12px #00b4d8;
} 