/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Weather Effect */
.global-weather {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.global-lightning {
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 2%,
        transparent 3%,
        rgba(200, 240, 255, 1) 4%,
        rgba(255, 255, 255, 1) 5%,
        transparent 7%,
        rgba(255, 255, 255, 1) 8%,
        rgba(200, 240, 255, 0.9) 10%,
        transparent 12%,
        rgba(255, 255, 255, 0.8) 15%,
        transparent 18%,
        rgba(200, 240, 255, 0.7) 22%,
        transparent 28%,
        rgba(255, 255, 255, 0.6) 35%,
        transparent 45%);
    opacity: 0;
    animation: globalLightning 6s ease-in-out infinite;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 1),
        0 0 30px rgba(200, 240, 255, 0.9),
        0 0 60px rgba(255, 255, 255, 0.7),
        0 0 100px rgba(200, 240, 255, 0.5),
        0 0 150px rgba(255, 255, 255, 0.3);
    z-index: 2;
    top: 0;
    filter: blur(0.5px);
}

.global-lightning::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.6) 0%,
        transparent 5%,
        rgba(200, 240, 255, 0.5) 10%,
        transparent 15%,
        rgba(255, 255, 255, 0.4) 20%,
        transparent 30%);
    filter: blur(2px);
    opacity: 0;
    animation: lightningGlow 6s ease-in-out infinite;
}

.global-lightning::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.6) 0%,
        transparent 5%,
        rgba(200, 240, 255, 0.5) 10%,
        transparent 15%,
        rgba(255, 255, 255, 0.4) 20%,
        transparent 30%);
    filter: blur(2px);
    opacity: 0;
    animation: lightningGlow 6s ease-in-out infinite;
}

@keyframes lightningGlow {
    0%, 100% {
        opacity: 0;
    }
    0.5%, 1% {
        opacity: 1;
    }
    1.5% {
        opacity: 0;
    }
    2%, 2.5% {
        opacity: 0.8;
    }
    3% {
        opacity: 0;
    }
}

.global-lightning-1 {
    left: 15%;
    animation-delay: 0s;
}

.global-lightning-2 {
    left: 50%;
    animation-delay: 2.5s;
}

.global-lightning-3 {
    right: 15%;
    animation-delay: 5s;
}

@keyframes globalLightning {
    0%, 100% {
        opacity: 0;
        transform: scaleY(1);
    }
    0.2%, 0.4% {
        opacity: 1;
        transform: scaleY(1.02);
    }
    0.5% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    0.7%, 0.9% {
        opacity: 1;
        transform: scaleY(1.01);
    }
    1.1% {
        opacity: 0;
        transform: scaleY(1);
    }
    1.3%, 1.6% {
        opacity: 0.9;
        transform: scaleY(1.015);
    }
    1.8% {
        opacity: 0;
        transform: scaleY(1);
    }
    2%, 2.3% {
        opacity: 1;
        transform: scaleY(1.02);
    }
    2.5% {
        opacity: 0;
        transform: scaleY(1);
    }
}

.global-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    opacity: 0.3;
    z-index: 1;
}

.global-rain .raindrop {
    position: absolute;
    width: 1.5px;
    height: 15px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(200, 220, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 100%);
    opacity: 0;
    animation: globalRain linear infinite;
    top: -20px;
    border-radius: 1px;
}

@keyframes globalRain {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    5% {
        opacity: 0.6;
    }
    95% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(calc(100vh + 20px));
    }
}

/* Landing Animation - Lightning & Rain */
.landing-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #1a1a2e 0%, #0f0f1e 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.landing-animation.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Clouds */
.cloud {
    position: absolute;
    background: rgba(100, 100, 120, 0.2);
    border-radius: 150px;
    opacity: 0.9;
    z-index: 6;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background: rgba(100, 100, 120, 0.2);
    border-radius: 100px;
}

.cloud1 {
    width: 350px;
    height: 120px;
    left: 10%;
    top: 5%;
    animation: float 20s infinite ease-in-out;
}

.cloud1:before {
    width: 180px;
    height: 180px;
    top: -90px;
    left: 20px;
}

.cloud1:after {
    width: 200px;
    height: 200px;
    top: -100px;
    right: 20px;
}

.cloud2 {
    width: 400px;
    height: 140px;
    right: 10%;
    top: 3%;
    animation: float 25s infinite ease-in-out;
}

.cloud2:before {
    width: 200px;
    height: 200px;
    top: -100px;
    left: 30px;
}

.cloud2:after {
    width: 220px;
    height: 220px;
    top: -110px;
    right: 30px;
}

.cloud3 {
    width: 380px;
    height: 130px;
    left: 50%;
    transform: translateX(-50%);
    top: 8%;
    animation: float 22s infinite ease-in-out;
}

.cloud3:before {
    width: 190px;
    height: 190px;
    top: -95px;
    left: 25px;
}

.cloud3:after {
    width: 210px;
    height: 210px;
    top: -105px;
    right: 25px;
}

@keyframes float {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(20px) translateY(-15px);
    }
}

/* Landing Image */
.landing-image {
    max-width: 250px;
    width: 60%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6))
            drop-shadow(0 0 60px rgba(255, 107, 53, 0.4));
    animation: imageGlow 2s ease-in-out infinite alternate;
    margin-bottom: 1.5rem;
}

@keyframes imageGlow {
    from {
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6))
                drop-shadow(0 0 60px rgba(255, 107, 53, 0.4));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.8))
                drop-shadow(0 0 80px rgba(255, 107, 53, 0.6));
    }
}

/* Lightning */
.lightning {
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 3%,
        transparent 5%,
        rgba(200, 220, 255, 0.9) 7%,
        rgba(255, 255, 255, 1) 9%,
        rgba(255, 255, 255, 1) 12%,
        transparent 18%,
        rgba(255, 255, 255, 1) 22%,
        rgba(255, 255, 255, 1) 28%,
        transparent 35%,
        rgba(255, 255, 255, 0.9) 40%,
        rgba(255, 255, 255, 0.8) 45%,
        transparent 55%);
    opacity: 0;
    animation: lightning 2s ease-in-out;
    box-shadow: 0 0 30px rgba(255, 255, 255, 1),
                0 0 60px rgba(200, 220, 255, 0.8),
                0 0 100px rgba(255, 255, 255, 0.5);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    height: calc(100vh - 20%);
}

.cloud1 .lightning1 {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.cloud2 .lightning2 {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.2s;
}

.cloud3 .lightning3 {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.8s;
}

@keyframes lightning {
    0%, 100% {
        opacity: 0;
    }
    1%, 2% {
        opacity: 1;
    }
    2.5% {
        opacity: 0;
    }
    3%, 4% {
        opacity: 1;
    }
    5% {
        opacity: 0;
    }
}

/* Rain */
.rain {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    opacity: 0;
    animation: rainStart 0.5s ease 0.5s forwards;
    z-index: 4;
}

@keyframes rainStart {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.raindrop {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.5) 0%,
        rgba(200, 220, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.5) 100%);
    opacity: 0;
    animation: rain linear infinite;
    top: -30px;
    border-radius: 1px;
}

@keyframes rain {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    5% {
        opacity: 0.9;
    }
    95% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
        transform: translateY(calc(100vh + 30px));
    }
}

/* Create multiple raindrops */
.raindrop:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 0.8s; }
.raindrop:nth-child(2) { left: 10%; animation-delay: 0.2s; animation-duration: 1s; }
.raindrop:nth-child(3) { left: 15%; animation-delay: 0.4s; animation-duration: 0.9s; }
.raindrop:nth-child(4) { left: 20%; animation-delay: 0.1s; animation-duration: 1.1s; }
.raindrop:nth-child(5) { left: 25%; animation-delay: 0.3s; animation-duration: 0.85s; }
.raindrop:nth-child(6) { left: 30%; animation-delay: 0.5s; animation-duration: 1.2s; }
.raindrop:nth-child(7) { left: 35%; animation-delay: 0.15s; animation-duration: 0.95s; }
.raindrop:nth-child(8) { left: 40%; animation-delay: 0.35s; animation-duration: 1.05s; }
.raindrop:nth-child(9) { left: 45%; animation-delay: 0.55s; animation-duration: 0.88s; }
.raindrop:nth-child(10) { left: 50%; animation-delay: 0.25s; animation-duration: 1.15s; }
.raindrop:nth-child(11) { left: 55%; animation-delay: 0.45s; animation-duration: 0.92s; }
.raindrop:nth-child(12) { left: 60%; animation-delay: 0.65s; animation-duration: 1.08s; }
.raindrop:nth-child(13) { left: 65%; animation-delay: 0.2s; animation-duration: 0.86s; }
.raindrop:nth-child(14) { left: 70%; animation-delay: 0.4s; animation-duration: 1.12s; }
.raindrop:nth-child(15) { left: 75%; animation-delay: 0.6s; animation-duration: 0.94s; }
.raindrop:nth-child(16) { left: 80%; animation-delay: 0.3s; animation-duration: 1.02s; }
.raindrop:nth-child(17) { left: 85%; animation-delay: 0.5s; animation-duration: 0.89s; }
.raindrop:nth-child(18) { left: 90%; animation-delay: 0.7s; animation-duration: 1.18s; }
.raindrop:nth-child(19) { left: 95%; animation-delay: 0.35s; animation-duration: 0.97s; }
.raindrop:nth-child(20) { left: 50%; animation-delay: 0.55s; animation-duration: 1.06s; }

/* Logo/Brand in animation */
.landing-logo {
    position: relative;
    z-index: 10;
    text-align: center;
    opacity: 0;
    animation: fadeInLogo 1s ease 0.5s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8),
                 0 0 40px rgba(255, 107, 53, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
}

.landing-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    margin: 0.5rem 0 0 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8),
                     0 0 40px rgba(255, 107, 53, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 107, 53, 1),
                     0 0 60px rgba(255, 107, 53, 0.7);
    }
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --primary-color: #FF4500;
    --primary-light: #FF6347;
    --primary-dark: #DC143C;
    --secondary-color: #1A0A0A;
    --accent-color: #8B0000;
    --text-color: #333;
    --light-text: #fff;
    --bg-color: #fff;
    --dark-bg: #0A0505;
    --gradient-1: linear-gradient(135deg, #FF4500 0%, #FF6347 50%, #FF8C00 100%);
    --gradient-2: linear-gradient(135deg, #DC143C 0%, #FF4500 50%, #FF6347 100%);
    --gradient-fire: linear-gradient(135deg, #8B0000 0%, #DC143C 25%, #FF4500 50%, #FF6347 75%, #FF8C00 100%);
    --shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(255, 69, 0, 0.5);
    --glow: 0 0 20px rgba(255, 69, 0, 0.6), 0 0 40px rgba(255, 99, 71, 0.4);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    position: relative;
    overflow-x: hidden;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
/* Scrolling Text in Navbar */
.navbar-scrolling-text {
    flex: 1;
    overflow: hidden;
    margin: 0 2rem;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
}


.scrolling-text {
    display: flex;
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
    height: 100%;
    align-items: center;
}

.scrolling-text span {
    display: inline-block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    padding: 0 50px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .navbar-scrolling-text {
        display: none;
    }
}

.navbar {
    background: linear-gradient(180deg, rgba(26, 10, 10, 0.95) 0%, rgba(139, 0, 0, 0.9) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.3);
    position: relative;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 6px 30px rgba(255, 69, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}


.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.nav-brand h1:hover {
    color: var(--primary-light);
    transform: scale(1.02);
}

.nav-brand i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-brand h1:hover i {
    color: var(--primary-light);
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 69, 0, 1)) 
                drop-shadow(0 0 20px rgba(255, 99, 71, 0.8))
                drop-shadow(0 0 30px rgba(255, 140, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 69, 0, 1)) 
                drop-shadow(0 0 30px rgba(255, 99, 71, 1))
                drop-shadow(0 0 45px rgba(255, 140, 0, 0.9))
                drop-shadow(0 0 60px rgba(255, 69, 0, 0.7));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: 2rem;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
    transform: translateY(-2px);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 10px var(--primary-color);
    animation: shimmer 2s ease-in-out infinite;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: transparent;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}


.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: heroGlow 4s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Arka plan görselleri - şeffaf ve büyük */
.hero-background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    filter: blur(2px);
}

.hero-background-slide.active {
    opacity: 0.15;
    transform: scale(1);
    z-index: 1;
}

/* Ön plandaki thumbnail'lar - Ortada dikdörtgen alan */
.hero-slideshow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 69, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(255, 69, 0, 0.1);
    position: relative;
    z-index: 3;
    height: auto;
    min-height: 200px;
}

.hero-slide-item {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.7;
    transform: scale(0.95);
    border: 2px solid transparent;
}

.hero-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

.hero-slide-item.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.7), 0 0 40px rgba(255, 99, 71, 0.5);
    border-color: rgba(255, 69, 0, 0.6);
}

.hero-slide-item.active::before {
    opacity: 0.2;
    background: linear-gradient(180deg, rgba(255, 69, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-slide-item:hover:not(.active) {
    opacity: 0.85;
    transform: scale(0.98);
    box-shadow: 0 6px 25px rgba(255, 69, 0, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.4) 0%, rgba(26, 10, 10, 0.7) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 69, 0, 0.2) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 2rem;
    min-height: 600px;
    padding: 2rem 0;
}

.hero-left-button,
.hero-right-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-center {
    text-align: center;
    color: var(--light-text);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-side-btn {
    padding: 20px 40px;
    font-size: 1.2rem;
    white-space: nowrap;
    min-width: 200px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #FF6347 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: fadeInUp 1s ease, shimmerText 3s linear infinite, titleGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.8));
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards, fadeInOut 3s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 99, 71, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

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

.btn-primary:hover {
    background: var(--gradient-2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--glow);
    animation: buttonPulse 0.6s ease-in-out;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    width: 100%;
    transition: all 0.3s ease;
}

.section-title:hover {
    color: var(--primary-color);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% {
        width: 80px;
        opacity: 1;
    }
    50% {
        width: 120px;
        opacity: 0.8;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-image: url('../images/arkaplan2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.section-image {
    display: none;
}

@media (max-width: 768px) {
    .section-image {
        display: block !important;
        text-align: center;
        margin: 2rem 0;
    }
    
    .section-image img {
        max-width: 150px;
        width: 100%;
        height: auto;
    }
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.features-image {
    text-align: center;
}

.features-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.features-text-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: left;
}

.features-text-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.features-bape-image {
    text-align: center;
}

.features-image img,
.features-bape-image img {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glow);
    border: 2px solid rgba(255, 69, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--gradient-1);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.category-card::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;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:nth-child(2) {
    background: var(--gradient-2);
}

.category-card:nth-child(3) {
    background: linear-gradient(135deg, #FF6347 0%, #FF8C00 50%, #FF4500 100%);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.05) rotate(1deg);
    box-shadow: var(--glow);
    animation: cardPulse 0.6s ease-in-out;
}

@keyframes cardPulse {
    0%, 100% {
        transform: translateY(-10px) scale(1.05) rotate(1deg);
    }
    50% {
        transform: translateY(-15px) scale(1.08) rotate(0deg);
    }
}

.category-image {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.category-card p {
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* Statistics Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(26, 10, 10, 1) 0%, rgba(139, 0, 0, 0.8) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
    animation: statsGlow 4s ease-in-out infinite;
}

@keyframes statsGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
    animation: numberCount 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    animation: numberPulse 0.6s ease-in-out;
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 1));
}

@keyframes numberCount {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(10, 5, 5, 1) 0%, rgba(26, 10, 10, 1) 100%);
    color: var(--light-text);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-fire);
    animation: fireLine 3s ease-in-out infinite;
}

@keyframes fireLine {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 69, 0, 0.8), 0 0 30px rgba(255, 99, 71, 0.6);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.6);
    transition: all 0.3s ease;
}

.footer-section h3:hover,
.footer-section h4:hover {
    text-shadow: 0 0 20px rgba(255, 69, 0, 1);
    transform: translateX(5px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(26, 10, 10, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.6);
    border-color: var(--primary-color);
    animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {
    0%, 100% {
        transform: translateY(-5px) scale(1.1);
    }
    50% {
        transform: translateY(-8px) scale(1.15);
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 69, 0, 1),
            0 0 20px rgba(255, 69, 0, 0.9),
            0 0 30px rgba(255, 99, 71, 0.8),
            0 0 40px rgba(255, 140, 0, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.8);
        filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.9));
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 69, 0, 1),
            0 0 30px rgba(255, 69, 0, 1),
            0 0 45px rgba(255, 99, 71, 1),
            0 0 60px rgba(255, 140, 0, 0.9),
            0 0 75px rgba(255, 69, 0, 0.7),
            0 2px 4px rgba(0, 0, 0, 0.8);
        filter: drop-shadow(0 0 25px rgba(255, 69, 0, 1));
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes shimmerText {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

@keyframes buttonPulse {
    0% {
        transform: translateY(-5px) scale(1.05);
    }
    50% {
        transform: translateY(-8px) scale(1.08);
    }
    100% {
        transform: translateY(-5px) scale(1.05);
    }
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 69, 0, 1)) drop-shadow(0 0 30px rgba(255, 99, 71, 0.6));
    }
}

/* Account Listing Styles */
.accounts-page {
    padding: 3rem 0;
    min-height: 70vh;
    background-image: url('../images/arkaplan22.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Account Detail Page - Dark Gradient Background */
.account-detail-page {
    background: linear-gradient(135deg, 
        rgba(20, 20, 30, 0.95) 0%, 
        rgba(30, 15, 20, 0.95) 25%,
        rgba(40, 20, 15, 0.95) 50%,
        rgba(30, 15, 20, 0.95) 75%,
        rgba(20, 20, 30, 0.95) 100%) !important;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 99, 71, 0.1) 0%, transparent 50%) !important;
    background-attachment: fixed !important;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 20px rgba(255, 69, 0, 0.8),
        0 0 40px rgba(255, 99, 71, 0.6),
        0 0 60px rgba(255, 140, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 8px 16px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 0 15px rgba(255, 69, 0, 0.7),
        0 0 30px rgba(255, 99, 71, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.filter-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.account-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.account-image {
    height: 200px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
}

.account-image[style*="background-image"] {
    background: var(--gradient-1);
}

.account-image[style*="background-image"] i {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    border-radius: 50%;
    z-index: 2;
}

/* Account Detail Page Layout */
.account-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.account-detail-image-wrapper {
    position: sticky;
    top: 2rem;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

#accountDetailImage {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 400px;
    height: 70vh;
    max-height: calc(100vh - 250px);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Görselin oranını koruyarak ekrana sığması için */
#accountDetailImage[style*="background-image"] {
    height: 70vh !important;
    max-height: calc(100vh - 250px) !important;
    min-height: 400px !important;
}

#accountDetailImage i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#accountDetailImage:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 69, 0, 0.4) !important;
}

.account-detail-content {
    display: flex;
    flex-direction: column;
}

@media (max-width: 968px) {
    .account-detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .account-detail-image-wrapper {
        position: relative;
        top: 0;
    }
    
    #accountDetailImage {
        min-height: 300px !important;
        max-height: 70vh !important;
        width: 100% !important;
    }
}

.account-body {
    padding: 1.5rem;
}

.account-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.account-info {
    list-style: none;
    margin-bottom: 1.5rem;
}

.account-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.account-info li:last-child {
    border-bottom: none;
}

.account-info strong {
    color: var(--secondary-color);
}

.account-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
    text-align: center;
}

.account-actions {
    display: flex;
    gap: 1rem;
}

.account-actions .btn {
    flex: 1;
    text-align: center;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 3rem auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 30, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 10, 10, 0.95) 0%, rgba(139, 0, 0, 0.9) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.5), 0 0 40px rgba(255, 99, 71, 0.3);
    border: 2px solid var(--primary-color);
    animation: slideUp 0.3s, modalGlow 3s ease-in-out infinite;
    position: relative;
    backdrop-filter: blur(10px);
}

@keyframes modalGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(255, 69, 0, 0.5), 0 0 40px rgba(255, 99, 71, 0.3);
    }
    50% {
        box-shadow: 0 20px 60px rgba(255, 69, 0, 0.8), 0 0 60px rgba(255, 99, 71, 0.6), 0 0 80px rgba(255, 140, 0, 0.3);
    }
}

.modal-content h2 {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    line-height: 1.6;
}

/* Buy Account Modal Styles */
.buy-modal-content {
    max-width: 900px !important;
    width: 95% !important;
    padding: 2.5rem !important;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 69, 0, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.6);
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(255, 69, 0, 1);
    transform: scale(1.1);
}

.buy-modal-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.buy-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.buy-slide {
    min-width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.9) translateX(100%);
    z-index: 1;
}

.buy-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 2;
}

.buy-slide:hover {
    transform: scale(1.02);
}

.buy-slider-prev,
.buy-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 69, 0, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.5);
}

.buy-slider-prev {
    left: 15px;
}

.buy-slider-next {
    right: 15px;
}

.buy-slider-prev:hover,
.buy-slider-next:hover {
    background: rgba(255, 69, 0, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.7);
}

.modal-content .partnership {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Progress Bar */
.progress-bar-container {
    margin-top: 2.5rem;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff8c5a 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
    }
    
    .navbar-scrolling-text {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 1rem 0;
        margin-left: 0;
    }
    

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-left-button,
    .hero-right-button {
        order: 3;
    }

    .hero-center {
        order: 1;
    }

    .hero-side-btn {
        width: 100%;
        min-width: auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .accounts-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    /* Account detail page responsive */
    .accounts-page > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Features content wrapper responsive */
    .features-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-text-content {
        text-align: center;
    }

    .features-bape-image {
        order: 3;
    }

    .features-bape-image img {
        max-width: 180px;
    }

    /* Hide images on mobile */
    .features-image,
    .features-bape-image {
        display: none !important;
    }
    
    /* Show PUBG logo on mobile */
    .section-image {
        display: block !important;
    }

    /* Modal responsive */
    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-content h2 {
        font-size: 1.4rem;
    }

    .modal-content .partnership {
        font-size: 1.2rem;
    }

    .modal-content h2 {
        font-size: 1.4rem;
    }

    .progress-bar-container {
        margin-top: 2rem;
    }

    /* Image Modal Responsive */
    .image-modal-content {
        max-width: 95%;
    }

    .image-modal-img {
        max-height: 60vh;
    }

    .image-modal-text {
        margin-top: 1.5rem;
    }

    .image-modal-text p {
        font-size: 1.2rem;
    }

    .image-modal-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .image-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    animation: fadeIn 0.3s;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.image-modal-content {
    position: relative;
    z-index: 10002;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: imageModalZoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-modal-img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.5), 0 0 40px rgba(255, 99, 71, 0.3);
    border: 3px solid var(--primary-color);
    animation: imageGrow 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-modal-text {
    margin-top: 2rem;
    text-align: center;
    color: var(--light-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: textFadeIn 0.6s ease 0.3s backwards;
}

.image-modal-text p {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
    margin: 0;
}

.image-modal-btn {
    margin-top: 0.5rem;
    padding: 15px 40px;
    font-size: 1.2rem;
    animation: buttonFadeIn 0.6s ease 0.5s backwards;
}

@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.6);
    z-index: 10003;
}

.image-modal-close:hover {
    background: var(--primary-light);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 30px rgba(255, 69, 0, 0.8);
}

@keyframes imageModalZoom {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes imageGrow {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-image img,
.features-bape-image img {
    transition: all 0.3s ease;
}

.features-image img:hover,
.features-bape-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

/* Bulut görselleri için özel stil - turuncu tonları kaldır */
.features-image img[src*="bulut.png"],
.features-bape-image img[src*="bulut.png"] {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    filter: none !important;
}

/* Contact Widget - WhatsApp & Telegram */
.contact-widget {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-radius: 0 15px 15px 0;
    overflow: hidden;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.contact-widget-indicator {
    width: 4px;
    background-color: #666;
    flex-shrink: 0;
}

.contact-widget-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-widget-whatsapp {
    background-color: #25D366;
}

.contact-widget-whatsapp:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
}

.contact-widget-telegram {
    background-color: #0088cc;
}

.contact-widget-telegram:hover {
    background-color: #0077B5;
    transform: scale(1.1);
}

.contact-widget-btn i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .contact-widget {
        width: 55px;
    }
    
    .contact-widget-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    visibility: visible;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
}

.loading-logo {
    margin-bottom: 3rem;
    animation: logoPulse 2s ease-in-out infinite;
}

.loading-logo-img {
    width: 120px;
    height: 120px;
    animation: logoRotate 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.6));
}

.loading-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff4500 0%, #ff6b00 50%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 1rem;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
    letter-spacing: 2px;
}

.loading-subtitle {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
    font-style: italic;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.loading-bar-container {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem auto;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff4500 0%, #ff6b00 50%, #ff8c00 100%);
    border-radius: 10px;
    width: 0%;
    animation: loadingProgress 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.8), 0 0 20px rgba(255, 69, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 1.5s infinite;
}

.loading-text {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 2rem;
    opacity: 0.8;
    animation: textPulse 1.5s ease-in-out infinite;
    letter-spacing: 1px;
}

.loading-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.loading-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff6b00;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
    animation: particleFloat 3s ease-in-out infinite;
}

.loading-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 3s;
}

.loading-particles span:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 0.5s;
    animation-duration: 3.5s;
}

.loading-particles span:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
    animation-duration: 2.5s;
}

.loading-particles span:nth-child(4) {
    bottom: 20%;
    right: 30%;
    animation-delay: 1.5s;
    animation-duration: 3.2s;
}

.loading-particles span:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 2s;
    animation-duration: 2.8s;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-10px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(15px) scale(1.1);
        opacity: 0.9;
    }
}

@media (max-width: 768px) {
    .loading-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .loading-title {
        font-size: 2rem;
    }
    
    .loading-subtitle {
        font-size: 0.9rem;
    }
    
    .loading-bar-container {
        width: 250px;
    }
    
    .loading-text {
        font-size: 1rem;
    }
}


