/* --- CSS Değişkenleri ve Genel Ayarlar --- */
:root {
    --bg-color: #0a0a0a;
    --surface-color: #1a1a1a;
    --surface-light: #2a2a2a;
    --text-primary: #f0f2f5;
    --text-secondary: #a8b2d1;
    --primary-blue: #3b82f6;
    --cyan-blue: #06b6d4;
    --neon-green: #10b981;
    --lime-glow: #84cc16;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --orange: #f97316;
    --accent: #38bdf8;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
        
    /* Enhanced color palette */
    --deep-blue: #0f172a;
    --midnight-blue: #1e293b;
    --slate-dark: #334155;
    --slate-medium: #475569;
    --slate-light: #64748b;
    --accent-blue: #0ea5e9;
    --accent-cyan: #14b8a6;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-surface: linear-gradient(145deg, #1e293b, #0f172a);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-dark); /* Enhanced gradient background */
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark); /* Enhanced gradient */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.loader {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--accent-blue);
    animation: spin 1.5s linear infinite;
}

.loader:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--accent-cyan);
    animation: spin 2s linear infinite reverse;
}

.loader:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: var(--accent-purple);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#preloader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 15px var(--accent-cyan);
    margin-top: 30px;
    letter-spacing: 1px;
}

#preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-top: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* --- Arka Planı Sadeleştirme --- */
.animated-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--gradient-dark); /* Enhanced gradient */
}
/* Hareketli renkli topları gizle */
.gradient-sphere {
    display: none;
}

/* --- Genel Bileşenler --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    scroll-margin-top: 80px;
    position: relative;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.glow-text {
    text-shadow: 0 0 15px currentColor;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

/* Shimmer effect for buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
    background-color: var(--accent-blue);
    color: white;
    transform: translateY(-3px);
}

.card {
    background: rgba(30, 41, 59, 0.7); /* Enhanced card background */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

/* --- Side Navigation Bar --- */
#side-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    list-style: none;
    background: rgba(30, 41, 59, 0.8); /* Enhanced menu background */
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 25px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    0% {
        transform: translate(100px, -50%);
        opacity: 0;
    }
    100% {
        transform: translate(0, -50%);
        opacity: 1;
    }
}

#side-menu li {
    margin-bottom: 20px;
    position: relative;
}

#side-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    padding: 10px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#side-menu a i {
    font-size: 1.2rem;
}

/* Tooltip */
#side-menu a .tooltip {
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface-color);
    color: var(--text-primary);
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#side-menu a:hover .tooltip {
    opacity: 1;
}

/* Hover Glow + Kayma */
#side-menu a:hover {
    color: var(--accent-cyan);
    transform: translateX(-5px);
    background: rgba(20, 184, 166, 0.1);
}

/* Glow Noktası */
#side-menu a::after {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 0 10px var(--accent-cyan);
}

#side-menu a.active,
#side-menu a:hover {
    color: var(--accent-cyan);
}

#side-menu a.active::after,
#side-menu a:hover::after {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* --- Hero Bölümü --- */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
    line-height: 1.2;
    height: 2.5em;
    overflow: hidden;
}

.rotating-text {
    display: inline-block;
    animation: rotateText 12s infinite;
}

@keyframes rotateText {
    0%, 25% { transform: translateY(0); opacity: 1; }
    33%, 58% { transform: translateY(-100%); opacity: 0; }
    66%, 91% { transform: translateY(-200%); opacity: 0; }
    100% { transform: translateY(-300%); opacity: 0; }
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    animation: fadeIn 1.5s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1.5s ease-out 1s forwards;
    opacity: 0;
}

.hero-metrics {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.metric:nth-child(2) {
    animation-delay: 0.5s;
}

.metric:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.metric .count {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-green);
    font-family: var(--font-mono);
}

.metric .label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* --- Paketler Bölümü --- */
#packages {
    background: var(--gradient-dark); /* Enhanced gradient */
    position: relative;
    overflow: hidden;
}

#packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-toggle {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.pricing-toggle:first-child {
    border-radius: 30px 0 0 30px;
}

.pricing-toggle:last-child {
    border-radius: 0 30px 30px 0;
}

.pricing-toggle.active {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.package-card.popular::before {
    content: 'POPÜLER';
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary); /* Enhanced "popular" tag */
    color: var(--text-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
    z-index: 2;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.package-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin: 20px 0;
    font-family: var(--font-mono);
}

.package-card .price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: var(--neon-green);
    flex-shrink: 0;
}

.package-card .card-actions {
    display: flex;
    gap: 15px;
}

.package-card .card-actions .btn {
    flex: 1;
}

/* --- Features Section --- */
#features {
    background: var(--gradient-dark); /* Enhanced gradient */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(30, 41, 59, 0.5); /* Enhanced icon background */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    background: rgba(51, 65, 85, 0.7); /* Hover effect with lighter tone */
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* --- Advanced Features Section --- */
#advanced-features {
    background: var(--gradient-dark); /* Enhanced gradient */
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-showcase-card {
    background: rgba(30, 41, 59, 0.5); /* Enhanced card background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-showcase-card:hover::before {
    transform: scaleX(1);
}

.feature-showcase-card:hover {
    transform: translateY(-10px);
    background: rgba(51, 65, 85, 0.7); /* Hover effect with lighter tone */
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-surface); /* Enhanced icon background */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-showcase-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-showcase-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.feature-showcase-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- Security Section --- */
#security {
    background: var(--gradient-dark); /* Enhanced gradient */
    text-align: center;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.security-item {
    padding: 30px 20px;
    background: rgba(30, 41, 59, 0.5); /* Enhanced item background */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(51, 65, 85, 0.7); /* Hover effect with lighter tone */
    transform: scale(1.05);
}

.security-item i {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 15px;
}

.security-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* --- Testimonials Section --- */
#testimonials {
    background: var(--gradient-dark); /* Enhanced gradient */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.5); /* Enhanced card background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-cyan);
    opacity: 0.3;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-surface); /* Enhanced avatar background */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Notification Banner --- */
.notification-banner {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-surface); /* Enhanced banner background */
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 9999;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* --- Discord Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--gradient-surface); /* Enhanced modal background */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

/* --- Discord Server Modal --- */
#discord-modal .modal-content {
    max-width: 600px;
    text-align: center;
}

.server-banner {
    height: 200px;
    background: var(--gradient-primary); /* Enhanced banner */
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.server-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--surface-color);
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.server-info {
    padding: 60px 30px 30px;
}

.server-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.server-stats {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.server-stat {
    text-align: center;
}

.server-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.server-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Team Section */
#team {
    padding: 80px 20px;
    background: var(--gradient-surface);
    color: #fff;
}

.container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    opacity: 0.7;
    margin-bottom: 50px;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card */
.team-member {
    background: #11162a;
    padding: 30px 20px;
    border-radius: 16px;
    transition: 0.3s ease;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

/* Avatar */
.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.5);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.member-name {
    font-size: 1.3rem;
    margin-top: 10px;
}

.member-role {
    opacity: 0.7;
    margin-bottom: 15px;
}

/* Socials */
.member-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-socials a {
    color: #00ffff;
    transition: 0.3s;
}

.member-socials a:hover {
    color: #fff;
    transform: scale(1.2);
}

/* --- FAQ Section --- */
#faq {
    background: var(--gradient-dark); /* Enhanced gradient */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(30, 41, 59, 0.5); /* Enhanced item background */
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 20px;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(51, 65, 85, 0.7); /* Hover effect with lighter tone */
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* --- Satın Alma / İletişim Bölümü --- */
#contact {
    text-align: center;
    position: relative;
    background: var(--gradient-dark); /* Enhanced gradient */
}

#contact::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    z-index: -1;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#contact p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta .btn {
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* --- Purchase Modal --- */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(30, 41, 59, 0.5); /* Enhanced form element background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 5px var(--accent-blue);
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.2);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.2);
    border: 1px solid #EF4444;
    color: #EF4444;
}

/* --- Footer --- */
.footer {
    background: var(--gradient-dark);
    padding: 80px 0 100px; /* 增加底部内边距，避免与移动导航栏重叠 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    /* 移除 overflow: hidden，避免内容被截断 */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-cyan);
    transform: translateX(5px);
}

.footer-link:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.status-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}

.status-dot.online {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.status-dot.online::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--neon-green);
    animation: pulse 2s infinite;
}

.status-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.version-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--accent-cyan);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 120px; /* 移动设备上增加更多底部内边距 */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* 移动导航栏样式 */
#mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 21, 35, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 9999;
    justify-content: space-around;
}

#mobile-nav a {
    color: var(--text-secondary);
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

#mobile-nav a:hover {
    color: var(--cyan-blue);
}

/* 移动设备上显示导航栏 */
@media (max-width: 600px) {
    #mobile-nav {
        display: flex;
    }
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.status-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}

.status-dot.online {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.status-dot.online::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--neon-green);
    animation: pulse 2s infinite;
}

.status-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.version-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--accent-cyan);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-separator {
        display: none;
    }
}

/* --- Responsive Tasarım --- */
@media (max-width: 768px) {
    #side-menu {
        display: none;
    }
    
    section {
        padding: 60px 0;
        scroll-margin-top: 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta .btn {
        width: 80%;
    }
    
    .contact-cta {
        flex-direction: column;
        align-items: center;
    }
    .contact-cta .btn {
        width: 80%;
    }

    .notification-banner {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}
@media (max-width: 600px) {
    body {
        padding-bottom: 90px; /* mobile-nav yüksekliği kadar */
    }
}
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.pricing-toggle {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.pricing-toggle.active {
    background: var(--cyan-blue);
    color: #000;
    font-weight: 600;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    margin: 15px 0;
}

.price-period {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-left: 6px;
}
/* BOT CARDS */
.bot-card {
    background: linear-gradient(
        180deg,
        rgba(20,25,45,0.95),
        rgba(10,15,30,0.95)
    );
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.bot-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(56,189,248,0.25),
        transparent 60%
    );
    opacity: 0;
    transition: 0.35s;
}

.bot-card:hover::before {
    opacity: 1;
}

.bot-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* HEADER */
.bot-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.bot-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        var(--cyan-blue),
        var(--primary-blue)
    );
    color: #000;
}

.bot-icon i {
    width: 26px;
    height: 26px;
}

/* PRICE */
.bot-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cyan-blue);
    margin-bottom: 20px;
}

.bot-price span {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-left: 6px;
}

/* FEATURES */
.bot-features {
    text-align: left;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bot-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.bot-features i {
    color: #22c55e;
    width: 16px;
    height: 16px;
}

/* BUY BUTTON */
.bot-buy-btn {
    width: 100%;
    padding: 12px 0;
    font-weight: 700;
    border-radius: 12px;
}
.feature-list {
    list-style: none;
    padding-left: 0;
}
.feature-list {
    margin-top: 14px;
    text-align: left;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--cyan-blue);
}

/* Icon renkleri */
.feature-icon.guard { background: rgba(239,68,68,0.15); color:#ef4444; }
.feature-icon.mod { background: rgba(59,130,246,0.15); color:#3b82f6; }
.feature-icon.ticket { background: rgba(16,185,129,0.15); color:#10b981; }
.feature-icon.fivem { background: rgba(245,158,11,0.15); color:#f59e0b; }
.feature-icon.log { background: rgba(139,92,246,0.15); color:#8b5cf6; }
.feature-icon.auto { background: rgba(34,197,94,0.15); color:#22c55e; }
.feature-list {
    list-style: none;
    padding-left: 0;
}

