:root {
    --main-accent: #00ff88;
    --secondary-accent: #ff0077;
    --cs2-accent: #ef9b0f; 
    --roblox-accent: #00b0ff;
    --dark-bg: #0d0d0d;
    --text-color: #ffffff;
    --card-bg: rgba(15, 15, 25, 0.8);
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --accent-glow: rgba(0, 255, 136, 0.5);
    --discord-blue: #7289da; /* Discord için yeni renk değişkeni */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
}

.wave-layer-1, .wave-layer-2, .wave-layer-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: 0 bottom;
    background-size: 50% auto;
    z-index: 0;
    opacity: 0.3;
}

.wave-layer-1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300ff88' fill-opacity='0.4' d='M0,64L48,80C96,96,192,128,288,144C384,160,480,160,576,144C672,128,768,96,864,106.7C960,117,1056,171,1152,170.7C1248,171,1344,117,1392,90.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    animation: waveAnimation 30s linear infinite;
}

.wave-layer-2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ff0077' fill-opacity='0.3' d='M0,256L48,261.3C96,267,192,277,288,256C384,235,480,181,576,181.3C672,181,768,235,864,240C960,245,1056,203,1152,186.7C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    animation: waveAnimation-reverse 35s linear infinite;
}

.wave-layer-3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300ff88' fill-opacity='0.15' d='M0,192L48,197.3C96,203,192,213,288,208C384,203,480,181,576,154.7C672,128,768,96,864,101.3C960,107,1056,149,1152,154.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    animation: waveAnimation 40s linear infinite;
}

@keyframes waveAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes waveAnimation-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    width: 320px;
}

.notification {
    background: rgba(0, 0, 0, 0.85);
    border-left: 4px solid var(--main-accent);
    color: var(--text-color);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateX(110%);
    transition: var(--transition);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.notification.show {
    transform: translateX(0);
}

.top-header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.logo {
    font-size: 2rem;
    color: var(--main-accent);
    text-shadow: 0 0 10px var(--accent-glow);
    font-weight: 700;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.main-nav a:hover {
    color: var(--main-accent);
    text-shadow: 0 0 8px var(--accent-glow);
}

.lang-btn {
    background: rgba(0, 255, 136, 0.15);
    border: none;
    color: var(--main-accent);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(0, 255, 136, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--main-accent);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-section {
    padding: 100px 20px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    margin-bottom: 20px;
}

.brand {
    font-size: 3rem;
    color: var(--main-accent);
    text-shadow: 0 0 15px var(--accent-glow);
    text-transform: uppercase;
}

.separator {
    width: 100px;
    height: 4px;
    background: var(--main-accent);
    margin: 10px auto;
    border-radius: 2px;
    overflow: hidden;
}

.separator-glow {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    height: 100%;
    animation: separatorGlow 3s infinite ease-in-out;
}

@keyframes separatorGlow {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.product-name {
    font-size: 2.5rem;
    background: linear-gradient(to bottom, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 20px auto;
}

/* Hero section açıklama metni renkleri */
.valo-text-color {
    color: var(--secondary-accent);
    text-shadow: 0 0 5px rgba(255, 0, 119, 0.5);
}

.cs2-text-color {
    color: var(--cs2-accent);
    text-shadow: 0 0 5px rgba(239, 155, 15, 0.5);
}

.roblox-text-color {
    color: var(--roblox-accent);
    text-shadow: 0 0 5px rgba(0, 176, 255, 0.5);
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.btn-primary {
    background: var(--main-accent);
    color: #000;
}

.btn-primary:hover {
    background: #00cc66;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--main-accent);
    color: var(--main-accent);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.15);
}

.download-icon::before { content: '↓'; font-weight: bold; }
.lock-icon::before { content: '🔒'; }

.games-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kategori başlıkları için font büyüklüğü ve renk ayarı */
.valo-game-category,
.cs2-game-category,
.roblox-game-category {
    font-size: 2.5rem;
    text-align: center;
    margin: 30px 0 20px;
}

.valo-game-category {
    color: var(--secondary-accent);
    text-shadow: 0 0 10px var(--secondary-accent);
}

.cs2-game-category {
    color: var(--cs2-accent);
    text-shadow: 0 0 10px var(--cs2-accent);
}

.roblox-game-category { 
    color: var(--roblox-accent);
    text-shadow: 0 0 10px var(--roblox-accent);
}

.section-title {
    font-size: 2.2rem;
    color: var(--main-accent);
    text-align: center;
    margin-top: 100px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 0 15px var(--accent-glow);
    z-index: 1;
    position: relative;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.game-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow);
}

.game-title {
    font-size: 1.7rem; 
    margin-bottom: 10px;
}

/* Kategoriye özel ürün başlık, tag, açıklama ve buton renkleri */
.valo-game-category + .games-grid .game-title,
.valo-game-category + .games-grid .game-description {
    color: var(--secondary-accent); /* Valorant rengi */
}
.valo-game-category + .games-grid .tag {
    color: var(--secondary-accent); /* Tag yazısı Valorant rengi */
    background: rgba(255, 0, 119, 0.2); /* Tag arka planı Valorant rengiyle uyumlu */
}
.valo-game-category + .games-grid .btn-primary {
    background: var(--secondary-accent); /* Buton arka planı Valorant rengi */
    color: #000; /* Buton yazısı siyah */
}
.valo-game-category + .games-grid .btn-primary:hover {
    background: #cc0055; /* Buton hover rengi Valorant renginin koyusu */
    box-shadow: 0 10px 25px rgba(255, 0, 119, 0.4);
}


.cs2-game-category + .games-grid .game-title,
.cs2-game-category + .games-grid .game-description {
    color: var(--cs2-accent); /* CS2 rengi */
}
.cs2-game-category + .games-grid .tag {
    color: var(--cs2-accent); /* Tag yazısı CS2 rengi */
    background: rgba(239, 155, 15, 0.2); /* Tag arka planı CS2 rengiyle uyumlu */
}
.cs2-game-category + .games-grid .btn-primary {
    background: var(--cs2-accent); /* Buton arka planı CS2 rengi */
    color: #000; /* Buton yazısı siyah */
}
.cs2-game-category + .games-grid .btn-primary:hover {
    background: #cc800d; /* Buton hover rengi CS2 renginin koyusu */
    box-shadow: 0 10px 25px rgba(239, 155, 15, 0.4);
}

.roblox-game-category + .games-grid .game-title,
.roblox-game-category + .games-grid .game-description {
    color: var(--roblox-accent); /* Roblox rengi */
}
.roblox-game-category + .games-grid .tag {
    color: var(--roblox-accent); /* Tag yazısı Roblox rengi */
    background: rgba(0, 176, 255, 0.2); /* Tag arka planı Roblox rengiyle uyumlu */
}
.roblox-game-category + .games-grid .btn-primary {
    background: var(--roblox-accent); /* Buton arka planı Roblox rengi */
    color: #000; /* Buton yazısı siyah */
}
.roblox-game-category + .games-grid .btn-primary:hover {
    background: #0088cc; /* Buton hover rengi Roblox renginin koyusu */
    box-shadow: 0 10px 25px rgba(0, 176, 255, 0.4);
}

.game-tags {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}


.product-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-details {
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.product-info {
    max-width: 800px;
    margin: 0 auto;
}

.product-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
}

.feature-categories {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
    text-align: left;
}

.feature-category {
    flex: 1;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: var(--transition);
}

.feature-category:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.feature-category h3 {
    font-size: 1.2rem;
    color: var(--main-accent);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-category ul {
    list-style-type: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature-category li {
    margin-bottom: 5px;
}

.coming-soon {
    text-align: center;
    padding: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid var(--secondary-accent);
}

.coming-soon-title {
    font-size: 2.5rem;
    color: var(--secondary-accent);
    text-shadow: 0 0 15px var(--secondary-accent);
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.faq-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    margin-bottom: 20px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.faq-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 15px;
    color: var(--main-accent);
    font-size: 1.5rem;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 15px 15px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
}

.password-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: var(--transition);
}

.password-container:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.password-label {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.password-value {
    flex-grow: 1;
    padding: 10px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 5px;
    cursor: pointer;
    color: var(--main-accent);
    font-weight: 700;
    text-align: center;
}

.copy-btn {
    background: var(--main-accent);
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.copy-btn:hover {
    background: #00cc66;
    transform: translateY(-3px);
}

.discord-btn { /* Yeni Discord butonu stili */
    background: var(--discord-blue);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-flex; /* Flexbox özellikleri eklendi */
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.discord-btn:hover {
    background: #5a6fa6; /* Discord mavisinin biraz koyusu */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(114, 137, 218, 0.4);
}

.flex { /* Tailwind'in flex sınıfı karşılığı */
    display: flex;
}

.justify-center { /* Tailwind'in justify-center sınıfı karşılığı */
    justify-content: center;
}

.mt-8 { /* Tailwind'in mt-8 sınıfı karşılığı (margin-top: 2rem) */
    margin-top: 2rem;
}

footer {
    padding: 50px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    color: var(--main-accent);
    text-shadow: 0 0 15px var(--accent-glow);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--main-accent);
    text-shadow: 0 0 8px var(--accent-glow);
}

.footer-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-size: 3rem;
    color: var(--main-accent);
    text-shadow: 0 0 20px var(--accent-glow);
    animation: pulse 1.5s infinite alternate;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--main-accent);
    box-shadow: 0 0 10px var(--accent-glow);
    animation: loading 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; text-shadow: 0 0 10px var(--accent-glow); }
    100% { opacity: 1; text-shadow: 0 0 30px var(--accent-glow); }
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.privacy-modal-content {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.privacy-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--main-accent);
    transition: var(--transition);
}

.privacy-close:hover {
    color: #00cc66;
    transform: rotate(90deg);
}

.privacy-text h3 {
    color: var(--main-accent);
    margin: 15px 0 5px;
}

.privacy-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .main-nav.active ul {
        display: flex;
    }

    .main-nav li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-section {
        padding: 80px 10px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .brand {
        font-size: 2.5rem;
    }

    .product-name {
        font-size: 2rem;
    }

    .games-section, .faq-section, .product-section {
        padding: 30px 10px;
    }

    .feature-categories {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 2rem;
    }

    .product-name {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .game-category {
        font-size: 1.5rem;
    }

    .coming-soon-title {
        font-size: 2rem;
    }

    .feature-category {
        padding: 10px;
    }

    .feature-category h3 {
        font-size: 1rem;
    }
}
