/* CSGOPLAY Premium Style Sheet
    Font: Plus Jakarta Sans
*/

:root {
    --accent: #ff9800;
    --accent-glow: rgba(255, 152, 0, 0.4);
    --bg-dark: #050507;
    --card-bg: rgba(20, 20, 27, 0.7);
    --border: rgba(255, 255, 255, 0.08);
    --text-dim: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 ve sonrası */
    user-select: none; /* Standart */
}

/* --- Arka Plan ve Doku --- */
.video-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, var(--bg-dark) 150%),
                url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.4;
    z-index: -1;
}

.video-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    filter: brightness(35%);
}

#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    /* Videoyu ekran boyutundan daha büyük hale getiriyoruz (Zoom etkisi) */
    min-width: 110%; 
    min-height: 110%;
    width: auto;
    height: auto;
    /* Merkeze çekip barları dışarıda bırakıyoruz */
    transform: translate(-50%, -50%) scale(1.15); 
    object-fit: cover;
    z-index: -2;
}

/* --- Navigasyon --- */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img img {
    height: 45px; /* Navbar yüksekliğine göre ideal boyut */
    width: auto;
    display: block;
    transition: 0.3s ease;
}

.logo-img:hover img {
    transform: scale(1.02); /* Üzerine gelince hafif büyüme efekti */
    filter: drop-shadow(0 0 3px rgba(255, 152, 0, 0.4)); /* Hafif bir parlama */
}

/* Navbar container içindeki hizalamayı garantiye alalım */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; /* Navbar yüksekliğini sabitledik */
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    margin: 0 20px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #fff;
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

/* --- Hero Alanı --- */
.container {
    width: 85%;
    margin: 0 auto;
}

.hero-minimal {
    text-align: center;
    padding: 80px 0 50px;
}

.hero-minimal h1 {
    font-size: 56px;
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: -2px;
}

.hero-minimal h1 span {
    color: var(--accent);
}

.hero-minimal p {
    color: var(--text-dim);
    font-size: 18px;
}

/* --- Sunucu Kartları Grid --- */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding-bottom: 100px;
}

.p-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.p-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 152, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* --- Kart İçeriği --- */
.p-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.p-type {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: #000;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
}

.p-type.grey { background: #333; color: #fff; }
.p-type.orange { background: #e65100; color: #fff; }

.p-online-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    color: #4caf50;
    display: flex;
    align-items: center;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 10px #4caf50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.p-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.p-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.p-header h3 {
    font-size: 19px;
    font-weight: 800;
}

.p-tick {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--text-dim);
    border: 1px solid var(--border);
}

.p-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.p-stat span {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

.p-stat strong {
    font-size: 15px;
    color: #fff;
}

.p-progress-wrapper {
    background: rgba(255, 255, 255, 0.03);
    height: 6px;
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
}

.p-progress-bar {
    background: linear-gradient(90deg, var(--accent), #ffb74d);
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* --- Aksiyonlar (Butonlar) --- */
.p-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.p-ip {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dim);
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Courier New', monospace;
}

.p-ip:hover {
    color: #fff;
    border-color: var(--accent);
    background: rgba(255, 152, 0, 0.05);
}

.p-btn-join {
    background: #fff;
    color: #000;
    text-decoration: none;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    transition: 0.3s;
}

.p-btn-join:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* --- Kapalı Sunucu Durumları --- */
.coming-soon {
    filter: saturate(0.3);
    opacity: 0.7;
}

.p-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: rgba(255,255,255,0.4);
}

.p-btn-join.disabled {
    background: #1a1a1a;
    color: #444;
    cursor: not-allowed;
    border: 1px solid var(--border);
}

.p-desc {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 20px;
    font-style: italic;
}

/* --- Mobil Uyumluluk --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-minimal h1 { font-size: 34px; }
    .nav-container { width: 90%; }
    .container { width: 90%; }
}

/* VIP Exclusive Theme */
.vip-exclusive-theme {
    background-color: #060608;
    color: #fff;
    overflow-x: hidden;
}

.glow-bg {
    position: fixed;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.vip-main {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Hero Section */
.vip-hero { text-align: center; margin-bottom: 80px; }
.top-label {
    font-size: 11px; font-weight: 800; letter-spacing: 3px;
    color: var(--accent); border: 1px solid var(--accent);
    padding: 6px 15px; border-radius: 4px; display: inline-block;
    margin-bottom: 25px;
}
.vip-hero h1 { font-size: 64px; font-weight: 800; margin-bottom: 15px; letter-spacing: -2px; }
.vip-hero h1 span { color: var(--accent); }
.vip-hero p { color: #888; font-size: 18px; max-width: 600px; margin: 0 auto; }

/* 4'lü Özellik Paneli (Koyu ve Net) */
.panel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

.f-box {
    background: #0d0d12;
    border: 1px solid #1a1a22;
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.f-box:hover {
    background: #121218;
    border-color: var(--accent);
    transform: translateY(-8px);
}

.f-icon-wrap {
    width: 45px; height: 45px; background: rgba(255,152,0,0.1);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 20px; margin-bottom: 20px;
}

.f-info h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.f-info p { font-size: 13px; color: #666; line-height: 1.6; }

/* Pricing Cards */
.pricing-header { text-align: center; margin-bottom: 50px; }
.pricing-header h2 { font-size: 32px; font-weight: 800; }

.price-grid {
    display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
    margin-bottom: 80px;
}

.p-card-new {
    background: #0d0d12;
    border-radius: 24px;
    padding: 2px; /* Border gradyan efekti için */
    width: 340px;
    transition: 0.4s;
}

.p-card-inner {
    background: #0d0d12;
    border-radius: 22px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.p-card-new.featured {
    background: linear-gradient(180deg, var(--accent), transparent);
}

.p-tag { font-size: 10px; font-weight: 800; color: #555; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.p-tag.best { color: var(--accent); }

.p-card-new h3 { font-size: 24px; margin-bottom: 20px; }
.p-val { font-size: 48px; font-weight: 800; margin-bottom: 30px; }

.p-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.p-features li { font-size: 14px; color: #888; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.p-features li i { color: var(--accent); font-size: 12px; }

.p-buy-btn {
    background: #1a1a22; color: #fff; text-decoration: none;
    padding: 18px; border-radius: 12px; text-align: center;
    font-weight: 700; font-size: 14px; transition: 0.3s;
}

.p-buy-btn.gold { background: var(--accent); color: #000; }
.p-buy-btn:hover { filter: brightness(1.2); }

/* Legal Panel */
.legal-panel {
    background: #0a0a0f; border-top: 1px solid #1a1a22;
    padding: 40px 0; border-radius: 30px 30px 0 0;
}
.legal-inner { display: flex; justify-content: center; gap: 60px; text-align: center; }
.legal-item i { font-size: 24px; color: var(--accent); margin-bottom: 15px; }
.legal-item h4 { font-size: 14px; margin-bottom: 5px; }
.legal-item p { font-size: 12px; color: #555; }

/* SVG İkonunu Diğerleriyle Eşitleme */
.f-icon-wrap.custom-svg svg {
    width: 28px;   /* Diğer ikonların font-size değeriyle aynı olmalı */
    height: 28px;
    display: block;
    color: var(--accent); /* Turuncu rengi buradan alır */
}

/* Kutu içindeki hizalamayı garantiye alalım */
.f-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 152, 0, 0.1); /* Diğerleriyle aynı arka plan */
    border-radius: 12px;
}

@media (max-width: 1000px) {
    .panel-grid { grid-template-columns: repeat(2, 1fr); }
    .vip-hero h1 { font-size: 48px; }
}

@media (max-width: 600px) {
    .panel-grid { grid-template-columns: 1fr; }
    .legal-inner { flex-direction: column; gap: 30px; }
}




/* Kurallar Sayfası Teması */
.rules-page-theme { background: #060608; color: #fff; }

.rules-container { max-width: 900px; margin: 60px auto; padding: 0 20px; }

.rules-hero { text-align: center; margin-bottom: 50px; }
.rules-hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 30px; }
.rules-hero h1 span { color: var(--accent); }

/* Uyarı Bannerı - Daha Modern */
.warning-banner {
    background: rgba(244, 67, 54, 0.05);
    border: 1px solid rgba(244, 67, 54, 0.2);
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    margin-bottom: 50px;
}
.warning-banner i { color: #f44336; font-size: 24px; }
.warning-banner p { font-size: 14px; color: #cc7a7a; line-height: 1.5; }

/* Kural Kartları */
.rules-stack { display: flex; flex-direction: column; gap: 20px; }

.rule-card {
    background: #0d0d12;
    border: 1px solid #1a1a22;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    transition: 0.3s;
}
.rule-card:hover { border-color: var(--accent); transform: translateX(10px); }

.rule-number {
    background: rgba(255, 152, 0, 0.05);
    color: var(--accent);
    font-size: 24px;
    font-weight: 800;
    padding: 30px;
    display: flex;
    align-items: center;
    border-right: 1px solid #1a1a22;
}

.rule-content { padding: 30px; }
.rule-content h3 { font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.rule-content h3 i { color: var(--accent); font-size: 16px; }
.rule-content p { color: #888; font-size: 14px; line-height: 1.6; }

/* Footer Notu */
.rules-footer { margin-top: 60px; text-align: center; }
.footer-note {
    background: #0a0a0f;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #1a1a22;
}
.footer-note h3 { margin-bottom: 20px; color: var(--accent); }
.footer-note ul { list-style: none; margin-bottom: 25px; }
.footer-note li { color: #666; font-size: 13px; margin-bottom: 8px; }
.good-luck { font-weight: 700; color: #fff; letter-spacing: 1px; }

@media (max-width: 600px) {
    .rule-card { flex-direction: column; }
    .rule-number { border-right: none; border-bottom: 1px solid #1a1a22; padding: 15px 30px; }
}




/* Ödeme Sayfası Stilleri */
.payment-page { background: #060608; }

.payment-container { 
    max-width: 800px; 
    margin: 100px auto; 
    padding: 0 20px; 
    text-align: center; 
}

.payment-header { margin-bottom: 50px; position: relative; }
.back-link { 
    position: absolute; top: -50px; left: 0; 
    color: var(--text-dim); text-decoration: none; font-size: 14px; 
    transition: 0.3s; 
}
.back-link:hover { color: #fff; }

.payment-header h1 { font-size: 42px; font-weight: 800; margin-bottom: 15px; }
.payment-header h1 span { color: var(--accent); }
.payment-header p { color: #888; }

/* Ödeme Kartları */
.payment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }

.pay-card {
    background: #0d0d12;
    border: 1px solid #1a1a22;
    padding: 40px 30px;
    border-radius: 24px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pay-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    background: #121218;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.pay-icon {
    width: 70px; height: 70px;
    background: rgba(255, 152, 0, 0.05);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: var(--accent);
    margin-bottom: 25px;
}

.pay-info h3 { font-size: 20px; margin-bottom: 12px; }
.pay-info p { font-size: 14px; color: #666; line-height: 1.5; }

.pay-badge {
    margin-top: 25px;
    font-size: 10px; font-weight: 800;
    padding: 6px 15px; border-radius: 50px;
    background: rgba(76, 175, 80, 0.1); color: #4caf50;
    letter-spacing: 1px;
}

.pay-badge.manual {
    background: rgba(33, 150, 243, 0.1); color: #2196f3;
}

.payment-footer { margin-top: 50px; color: #444; font-size: 13px; }

/* Mobil Uyumluluk */
@media (max-width: 700px) {
    .payment-grid { grid-template-columns: 1fr; }
}