/* ============================================
   QUA BOTS - Premium Discord Bot Website
   Purple & Blue Theme
   ============================================ */

/* CSS Variables */
:root {
    --primary-purple: #8B5CF6;
    --primary-blue: #3B82F6;
    --primary-cyan: #06B6D4;
    --accent-pink: #EC4899;
    
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.8);
    --bg-card-hover: rgba(25, 25, 40, 0.9);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    --border-color: rgba(139, 92, 246, 0.2);
    --border-glow: rgba(139, 92, 246, 0.5);
    
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    --gradient-hover: linear-gradient(135deg, #9F7AEA 0%, #60A5FA 100%);
    --gradient-text: linear-gradient(135deg, #A78BFA 0%, #60A5FA 50%, #22D3EE 100%);
    
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

::selection {
    background: var(--primary-purple);
    color: white;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Arka planı negatif z-index ile body arka planının altında bırakma */
    z-index: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
                radial-gradient(ellipse at 0% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
                var(--bg-darker);
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
}

.stars {
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
                      radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
                      radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
                      radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.2), transparent);
    background-size: 200px 200px;
    animation: starsMove 100s linear infinite;
}

.stars2 {
    background-image: radial-gradient(1px 1px at 150px 50px, rgba(139,92,246,0.5), transparent),
                      radial-gradient(2px 2px at 100px 150px, rgba(59,130,246,0.4), transparent),
                      radial-gradient(1px 1px at 50px 100px, rgba(139,92,246,0.3), transparent);
    background-size: 300px 300px;
    animation: starsMove 150s linear infinite;
}

.stars3 {
    background-image: radial-gradient(1px 1px at 75px 75px, rgba(255,255,255,0.2), transparent),
                      radial-gradient(1px 1px at 175px 175px, rgba(139,92,246,0.3), transparent);
    background-size: 250px 250px;
    animation: starsMove 200s linear infinite;
}

@keyframes starsMove {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Body arka planının arkasında kalmasın */
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.95);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo-text .highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

/* Inline ikonlar için (SVG yerine PNG de olabilir) */
.btn .btn-icon {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-primary::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: var(--transition-slow);
}

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

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

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: white;
    color: var(--bg-dark);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-glass-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-glass-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 24px;
    transform: translateX(100%);
    transition: var(--transition-medium);
    display: none;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 16px;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.mobile-link:hover {
    background: rgba(139, 92, 246, 0.1);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px 48px;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.2; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.3; }
}

.hero-content {
    flex: 1;
    min-width: 0;
    max-width: 640px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--primary-purple);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: center;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 auto 32px;
    max-width: 500px;
    text-align: center;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 0;
    animation: none;
}

/* Logo arkada, kartlar üstte — tek sahne */
.hero-visual-stage {
    position: relative;
    width: min(100%, 400px);
    min-height: min(420px, 52vh);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.hero-visual .hero-bot-image {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    width: min(340px, 90vw);
    height: min(340px, 90vw);
    pointer-events: none;
    animation: hero-logo-float 4s ease-in-out infinite;
}

@keyframes hero-logo-float {
    0%,
    100% {
        transform: translate(-50%, calc(-50% + 0px));
    }
    50% {
        transform: translate(-50%, calc(-50% - 14px));
    }
}

.hero-visual .hero-bot-image .bot-glow {
    opacity: 0.55;
    animation: none;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 60%);
}

.hero-visual .hero-bot-image .bot-avatar {
    opacity: 0.95;
    animation: none;
}

.hero-visual .hero-bot-image .bot-avatar svg {
    filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.5));
}

.floating-cards-stack {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "fivem minecraft"
        "ekip guard"
        "ticket ticket";
    gap: 10px 12px;
    width: min(100%, 368px);
    flex-shrink: 0;
    align-self: center;
}

.floating-cards-stack .floating-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    min-width: 0;
    padding: 10px 14px;
    gap: 10px;
    animation: hero-card-float 5.5s ease-in-out infinite;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

@keyframes hero-card-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-cards-stack .floating-card span {
    font-size: 0.82rem;
    line-height: 1.25;
}

.floating-cards-stack .bot-avatar-small {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.floating-cards-stack .bot-avatar-small svg {
    width: 22px;
    height: 22px;
}

.floating-cards-stack .minecraft-icon-img {
    width: 28px;
    height: 28px;
}

.floating-cards-stack .card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.floating-cards-stack .card-icon svg {
    width: 20px;
    height: 20px;
}

.card-fivem {
    grid-area: fivem;
    animation-delay: 0s;
}

.card-minecraft {
    grid-area: minecraft;
    animation-delay: 0.35s;
}

.card-ekip {
    grid-area: ekip;
    animation-delay: 0.7s;
}

.card-guard {
    grid-area: guard;
    animation-delay: 1.05s;
}

.card-ticket {
    grid-area: ticket;
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 12px) / 2);
    max-width: 100%;
    box-sizing: border-box;
    animation-delay: 1.4s;
}

/* Yüzen kartlar — hover’da ilgili bot rengi */
.floating-cards-stack .floating-card.card-fivem:hover {
    border-color: rgba(251, 146, 60, 0.55);
    box-shadow: 0 10px 36px rgba(251, 146, 60, 0.18);
}

.floating-cards-stack .floating-card.card-minecraft:hover {
    border-color: rgba(74, 222, 128, 0.55);
    box-shadow: 0 10px 36px rgba(74, 222, 128, 0.18);
}

.floating-cards-stack .floating-card.card-ekip:hover {
    border-color: rgba(34, 211, 238, 0.55);
    box-shadow: 0 10px 36px rgba(34, 211, 238, 0.18);
}

.floating-cards-stack .floating-card.card-guard:hover {
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow: 0 10px 36px rgba(59, 130, 246, 0.2);
}

.floating-cards-stack .floating-card.card-ticket:hover {
    border-color: rgba(244, 114, 182, 0.55);
    box-shadow: 0 10px 36px rgba(236, 72, 153, 0.18);
}

/* Eski yan yana logo düzeni kaldırıldı; logo .hero-visual-stage içinde */
.hero-bot-image {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.bot-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 60%);
    animation: glow 3s ease-in-out infinite;
}

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

.bot-avatar {
    position: relative;
    z-index: 1;
    animation: float-bot 4s ease-in-out infinite;
}

.bot-avatar svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.5));
}

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

/* Floating Cards */
.floating-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
    animation: float-card 6s ease-in-out infinite;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.card-icon.purple {
    background: rgba(139, 92, 246, 0.2);
}

.card-icon.purple svg {
    stroke: var(--primary-purple);
}

.card-icon.blue {
    background: rgba(59, 130, 246, 0.2);
}

.card-icon.blue svg {
    stroke: var(--primary-blue);
}

.card-icon.cyan {
    background: rgba(6, 182, 212, 0.2);
}

.card-icon.cyan svg {
    stroke: var(--primary-cyan);
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

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

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Terms Section */
.terms {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 45%, transparent 100%);
}

.terms-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}

.terms-intro {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 500;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

.terms-item {
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 1rem;
}

.terms-item strong {
    color: var(--text-primary);
    font-weight: 800;
}

.terms-footer {
    margin-top: 22px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 800;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .terms-card {
        padding: 20px;
    }
}

/* Features Section */
.features {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 14px;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Bots Section */
.bots {
    position: relative;
}

.bots .container {
    max-width: 1480px;
}

.bots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
    width: 100%;
}

.bot-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 26px;
    min-height: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    transition: all var(--transition-medium);
    overflow: hidden;
    width: 100%;
}

.bot-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-medium);
}

.bot-card:hover .bot-card-glow {
    opacity: 1;
}

.bot-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
}

.bot-card.featured {
    border-color: var(--primary-purple);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
}

/* Fivem Bot kartı — turuncu parlayan çerçeve (paket kartı ile aynı yapı) */
.bot-card.featured.bot-card-fivem {
    border-color: rgba(251, 146, 60, 0.75);
    box-shadow: none;
    animation: pricing-orange-glow 2.6s ease-in-out infinite;
}

.bot-card.featured.bot-card-fivem:hover {
    animation: none;
    border-color: #fb923c;
    transform: translateY(-8px);
    box-shadow:
        0 0 55px rgba(249, 115, 22, 0.5),
        0 0 100px rgba(253, 186, 116, 0.25);
}

.bot-card-fivem .bot-features li svg {
    stroke: #fb923c;
}

.bot-card-fivem:hover .bot-card-glow {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.14) 0%, transparent 50%);
}

.bot-card-fivem .bot-tag {
    color: #fb923c;
}

/* Minecraft Bot — yeşil parıltı */
.bot-card.featured.bot-card-minecraft {
    border-color: rgba(74, 222, 128, 0.75);
    box-shadow: none;
    animation: pricing-green-glow 2.6s ease-in-out infinite;
}

.bot-card.featured.bot-card-minecraft:hover {
    animation: none;
    border-color: #4ade80;
    transform: translateY(-8px);
    box-shadow:
        0 0 55px rgba(34, 197, 94, 0.45),
        0 0 100px rgba(74, 222, 128, 0.28);
}

.bot-card-minecraft .bot-features li svg {
    stroke: #4ade80;
}

.bot-card-minecraft:hover .bot-card-glow {
    background: radial-gradient(circle, rgba(74, 222, 128, 0.14) 0%, transparent 50%);
}

/* Guard Bot — mavi parıltı */
.bot-card.bot-card-guard {
    border-color: rgba(96, 165, 250, 0.75);
    box-shadow: none;
    animation: pricing-blue-glow 2.6s ease-in-out infinite;
}

.bot-card.bot-card-guard:hover {
    animation: none;
    border-color: #60a5fa;
    transform: translateY(-8px);
    box-shadow:
        0 0 55px rgba(59, 130, 246, 0.5),
        0 0 100px rgba(96, 165, 250, 0.28);
}

.bot-card-guard .bot-features li svg {
    stroke: #60a5fa;
}

.bot-card-guard .bot-tag {
    color: #60a5fa;
}

.bot-card-guard:hover .bot-card-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.14) 0%, transparent 50%);
}

/* Ticket Bot — pembe parıltı */
.bot-card.bot-card-ticket {
    border-color: rgba(244, 114, 182, 0.75);
    box-shadow: none;
    animation: bot-pink-glow 2.6s ease-in-out infinite;
}

.bot-card.bot-card-ticket:hover {
    animation: none;
    border-color: #f472b6;
    transform: translateY(-8px);
    box-shadow:
        0 0 55px rgba(236, 72, 153, 0.45),
        0 0 100px rgba(244, 114, 182, 0.28);
}

.bot-card-ticket .bot-features li svg {
    stroke: #f472b6;
}

.bot-card-ticket .bot-tag {
    color: #f472b6;
}

.bot-card-ticket:hover .bot-card-glow {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.14) 0%, transparent 50%);
}

/* Ekip Bot — cyan parıltı */
.bot-card.bot-card-ekip {
    border-color: rgba(34, 211, 238, 0.75);
    box-shadow: none;
    animation: bot-cyan-glow 2.6s ease-in-out infinite;
}

.bot-card.bot-card-ekip:hover {
    animation: none;
    border-color: #22d3ee;
    transform: translateY(-8px);
    box-shadow:
        0 0 55px rgba(6, 182, 212, 0.45),
        0 0 100px rgba(34, 211, 238, 0.28);
}

.bot-card-ekip .bot-features li svg {
    stroke: #22d3ee;
}

.bot-card-ekip .bot-tag {
    color: #22d3ee;
}

.bot-card-ekip:hover .bot-card-glow {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, transparent 50%);
}

@keyframes bot-pink-glow {
    0%,
    100% {
        box-shadow:
            0 0 42px rgba(236, 72, 153, 0.32),
            0 0 78px rgba(219, 39, 119, 0.12);
        border-color: rgba(244, 114, 182, 0.65);
    }
    50% {
        box-shadow:
            0 0 58px rgba(244, 114, 182, 0.5),
            0 0 100px rgba(236, 72, 153, 0.28),
            0 0 130px rgba(251, 207, 232, 0.14);
        border-color: rgba(251, 207, 232, 0.95);
    }
}

@keyframes bot-cyan-glow {
    0%,
    100% {
        box-shadow:
            0 0 42px rgba(6, 182, 212, 0.32),
            0 0 78px rgba(8, 145, 178, 0.14);
        border-color: rgba(34, 211, 238, 0.65);
    }
    50% {
        box-shadow:
            0 0 58px rgba(34, 211, 238, 0.5),
            0 0 100px rgba(6, 182, 212, 0.28),
            0 0 130px rgba(165, 243, 252, 0.14);
        border-color: rgba(165, 243, 252, 0.95);
    }
}

.featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 10px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.bot-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.bot-avatar-small {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.bot-avatar-small svg {
    width: 28px;
    height: 28px;
}

.bot-avatar-small.purple {
    background: rgba(139, 92, 246, 0.2);
    /* Inline SVG'de fill="currentColor" kullanıldığı için renk burada belirlenir */
    color: var(--primary-purple);
}

.bot-avatar-small.purple svg {
    stroke: var(--primary-purple);
}

.bot-avatar-small.blue {
    background: rgba(59, 130, 246, 0.28);
}

.bot-avatar-small.blue svg {
    stroke: var(--primary-blue);
}

.bot-avatar-small.cyan {
    background: rgba(6, 182, 212, 0.28);
}

.bot-avatar-small.cyan svg {
    stroke: var(--primary-cyan);
}

.bot-avatar-small.green {
    background: rgba(34, 197, 94, 0.2);
}

.bot-avatar-small.green svg {
    stroke: #22C55E;
}

.bot-avatar-small.orange {
    background: rgba(249, 115, 22, 0.28);
    color: #fb923c;
}

.bot-avatar-small.orange svg {
    fill: currentColor;
    stroke: #ea580c;
}

.bot-avatar-small.pink {
    background: rgba(236, 72, 153, 0.28);
}

.bot-avatar-small.pink svg {
    stroke: var(--accent-pink);
}

/* Minecraft: şeffaf kutu; PNG (beyaz→şeffaf işlenmiş) + filtre ile yeşil */
.bot-avatar-small.minecraft {
    background: rgba(74, 222, 128, 0.28);
}

.bot-avatar-small.minecraft .minecraft-icon-img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
    /* Siyah silüeti yeşile çevir (alpha korunur) */
    filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(420%) hue-rotate(88deg) brightness(102%) contrast(101%);
}

.bot-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.25;
}

.bot-tag {
    font-size: 0.8rem;
    color: var(--primary-purple);
    font-weight: 600;
}

.bot-tag-green {
    color: #4ade80;
}

.bot-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.bot-features {
    list-style: none;
    margin-bottom: 0;
    flex: 1 1 auto;
}

.bot-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.45;
}

.bot-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-purple);
    flex-shrink: 0;
}

.bot-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Bot kartlarındaki butonları daha kompakt tut */
.bot-card-footer .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.bot-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.bots-cta {
    text-align: center;
    margin-top: 64px;
}

.bots-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    justify-content: center;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: all var(--transition-medium);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: var(--primary-purple);
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Fivem Full Pack — turuncu parlayan çerçeve / glow */
.pricing-card.featured.pricing-fivem {
    border-color: rgba(251, 146, 60, 0.75);
    animation: pricing-orange-glow 2.6s ease-in-out infinite;
}

.pricing-card.featured.pricing-fivem:hover {
    animation: none;
    border-color: #fb923c;
    transform: scale(1.05) translateY(-8px);
    box-shadow:
        0 0 55px rgba(249, 115, 22, 0.5),
        0 0 100px rgba(253, 186, 116, 0.25);
}

.pricing-card.pricing-fivem .pricing-price {
    background: rgba(249, 115, 22, 0.08);
}

.pricing-card.pricing-fivem .pricing-features li svg {
    stroke: #fb923c;
}

@keyframes pricing-orange-glow {
    0%,
    100% {
        box-shadow:
            0 0 42px rgba(249, 115, 22, 0.32),
            0 0 78px rgba(234, 88, 12, 0.12);
        border-color: rgba(251, 146, 60, 0.65);
    }
    50% {
        box-shadow:
            0 0 58px rgba(251, 146, 60, 0.55),
            0 0 100px rgba(249, 115, 22, 0.28),
            0 0 130px rgba(253, 186, 116, 0.12);
        border-color: rgba(253, 186, 116, 0.95);
    }
}

/* Minecraft Full Pack — yeşil parlayan çerçeve / glow (Fivem ile aynı yapı) */
.pricing-card.featured.pricing-minecraft {
    border-color: rgba(74, 222, 128, 0.75);
    animation: pricing-green-glow 2.6s ease-in-out infinite;
}

.pricing-card.featured.pricing-minecraft:hover {
    animation: none;
    border-color: #4ade80;
    transform: scale(1.05) translateY(-8px);
    box-shadow:
        0 0 55px rgba(34, 197, 94, 0.45),
        0 0 100px rgba(74, 222, 128, 0.28);
}

.pricing-card.pricing-minecraft .pricing-features li svg {
    stroke: #4ade80;
}

.pricing-card.pricing-minecraft .pricing-price {
    background: rgba(74, 222, 128, 0.08);
}

@keyframes pricing-green-glow {
    0%,
    100% {
        box-shadow:
            0 0 42px rgba(34, 197, 94, 0.32),
            0 0 78px rgba(22, 163, 74, 0.14);
        border-color: rgba(74, 222, 128, 0.65);
    }
    50% {
        box-shadow:
            0 0 58px rgba(74, 222, 128, 0.5),
            0 0 100px rgba(34, 197, 94, 0.3),
            0 0 130px rgba(134, 239, 172, 0.14);
        border-color: rgba(134, 239, 172, 0.95);
    }
}

/* Özel Bot (Kişiye Özel) — mavi parlayan çerçeve / glow */
.pricing-card.featured.pricing-custom {
    border-color: rgba(96, 165, 250, 0.75);
    animation: pricing-blue-glow 2.6s ease-in-out infinite;
}

.pricing-card.featured.pricing-custom:hover {
    animation: none;
    border-color: #60a5fa;
    transform: scale(1.05) translateY(-8px);
    box-shadow:
        0 0 55px rgba(59, 130, 246, 0.5),
        0 0 100px rgba(96, 165, 250, 0.28);
}

.pricing-card.pricing-custom .pricing-features li svg {
    stroke: #60a5fa;
}

.pricing-card.pricing-custom .pricing-price {
    background: rgba(59, 130, 246, 0.08);
}

@keyframes pricing-blue-glow {
    0%,
    100% {
        box-shadow:
            0 0 42px rgba(59, 130, 246, 0.32),
            0 0 78px rgba(37, 99, 235, 0.14);
        border-color: rgba(96, 165, 250, 0.65);
    }
    50% {
        box-shadow:
            0 0 58px rgba(96, 165, 250, 0.5),
            0 0 100px rgba(59, 130, 246, 0.3),
            0 0 130px rgba(147, 197, 253, 0.14);
        border-color: rgba(147, 197, 253, 0.95);
    }
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 16px;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .period {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Discounted Pricing Layout */
.pricing-price.discounted {
    position: relative;
    padding: 24px;
    text-align: center;
}

.pricing-price.discounted .period {
    position: static;
    display: inline-block;
    margin-top: 0;
    margin-left: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-muted);
    transform: translateY(-6px);
}

.pricing-price.discounted .old-price {
    position: absolute;
    top: 82px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    text-decoration: line-through;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.15);
    padding: 2px 8px;
    border-radius: 999px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-purple);
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #FBBF24;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
}

.author-name {
    display: block;
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.3) 0%, transparent 60%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-contact {
    margin-top: -8px;
    margin-bottom: 24px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding: 80px 0 24px;
    background: rgba(5, 5, 10, 0.8);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 16px 0 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-purple);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
/* Bot kartları: dar masaüstünde 3 sütun (5 kart: 3 + 2) */
@media (max-width: 1320px) and (min-width: 1025px) {
    .bots-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .hero-visual {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-visual-stage {
        width: min(100%, 400px);
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        margin-right: auto;
        margin-left: auto;
        gap: 0;
        text-align: center;
        align-items: center;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        /* Tablet boyutunda arka plandaki kartlar görünür olsun */
        display: flex;
        padding: 10px 16px;
    }

    .floating-card span {
        font-size: 0.85rem;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bots-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-title,
    .hero-description {
        text-align: center;
    }

    .hero-buttons {
        width: 100%;
        justify-content: center;
        margin-bottom: 32px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-visual {
        margin-top: 16px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-visual-stage {
        min-height: 200px;
        width: 100%;
        max-width: 320px;
    }

    .hero-visual .hero-bot-image {
        position: relative;
        left: auto;
        top: auto;
        width: 180px;
        height: 180px;
        margin: 0 auto;
        pointer-events: auto;
        animation: hero-logo-float-mobile 3.8s ease-in-out infinite;
    }

    @keyframes hero-logo-float-mobile {
        0%,
        100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-12px);
        }
    }

    .hero-visual .hero-bot-image .bot-glow {
        opacity: 0.5;
    }

    .hero-visual .hero-bot-image .bot-avatar {
        opacity: 1;
    }

    /* Mobilde üst üste binmeyi engellemek için yüzen kartları gizle */
    .floating-cards-stack {
        display: none;
    }

    .floating-card {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 14px;
        margin-top: 10px;
    }

    .stat-divider {
        width: 44px;
        height: 1px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.4rem);
        line-height: 1.15;
        margin-bottom: 16px;
        letter-spacing: -0.3px;
    }

    .hero-description {
        font-size: 0.96rem;
        line-height: 1.7;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 12px;
        margin-bottom: 14px;
    }

    .stat-number {
        font-size: 2.1rem;
    }

    .stat-plus {
        font-size: 1.35rem;
    }

    .stat-label {
        font-size: 0.82rem;
    }

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

    .bots-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    section {
        padding: 60px 0;
    }

    .cta-content {
        padding: 48px 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Team Section */
.team {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.team-card {
    width: 320px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                var(--gradient-primary) border-box;
    transition: all var(--transition-medium);
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.team-verified {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-card);
}

.team-verified svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.team-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.team-username {
    font-size: 0.9rem;
    color: var(--primary-purple);
    margin-bottom: 8px;
    font-weight: 500;
}

.team-role {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.team-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.team-social-btn:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

.team-social-btn svg {
    width: 20px;
    height: 20px;
}

/* Floating Sidebar */
.floating-sidebar {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) scaleY(0.4);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium), transform var(--transition-medium), filter var(--transition-medium);
    filter: blur(6px);
    padding: 12px 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.floating-sidebar.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(-50%) scaleY(1);
    filter: blur(0);
}

.floating-sidebar::after {
    content: '';
    position: absolute;
    inset: -60%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    background: linear-gradient(
        90deg,
        rgba(139, 92, 246, 0) 0%,
        rgba(139, 92, 246, 0.35) 35%,
        rgba(59, 130, 246, 0.35) 65%,
        rgba(59, 130, 246, 0) 100%
    );
    animation: sidebarWave 3.2s ease-in-out infinite;
}

@keyframes sidebarWave {
    0% { transform: translateX(-22%) rotate(0deg); }
    50% { transform: translateX(22%) rotate(0deg); }
    100% { transform: translateX(-22%) rotate(0deg); }
}

.sidebar-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.sidebar-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        120deg,
        transparent 35%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 65%
    );
    transform: translateX(-140%);
    transition: opacity var(--transition-fast);
}

.sidebar-btn:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.floating-sidebar.visible .sidebar-btn::before {
    opacity: 0.35;
    animation: sidebarShimmer 2.1s ease-in-out infinite;
}

.sidebar-btn:hover::before {
    opacity: 0.7;
}

@keyframes sidebarShimmer {
    0% { transform: translateX(-140%); }
    55% { transform: translateX(140%); }
    100% { transform: translateX(140%); }
}

.sidebar-btn svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.sidebar-toggle-btn {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.7) 0%, rgba(59, 130, 246, 0.7) 100%);
    color: white;
}

.floating-sidebar.collapsed {
    gap: 0;
    padding: 10px 8px;
}

.floating-sidebar.collapsed .sidebar-btn:not(.sidebar-toggle-btn) {
    opacity: 0;
    max-height: 0;
    transform: translateX(20px) scale(0.8);
    pointer-events: none;
    border-width: 0;
    margin: 0;
}

.floating-sidebar .sidebar-btn:not(.sidebar-toggle-btn) {
    transition: all var(--transition-medium);
}

/* Discord Button */
.discord-btn {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.65) 0%, rgba(114, 137, 218, 0.65) 100%);
    color: white;
}

/* Scroll Top Button */
.scroll-top-btn {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.65) 0%, rgba(251, 146, 60, 0.65) 100%);
    color: white;
}

/* Reviews Button */
.reviews-btn {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.65) 0%, rgba(244, 114, 182, 0.65) 100%);
    color: white;
}

/* Team Button */
.team-btn {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.75) 0%, rgba(75, 85, 99, 0.75) 100%);
    color: white;
}

/* Copy Button */
.copy-btn {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.75) 0%, rgba(55, 65, 81, 0.75) 100%);
    color: white;
}

/* Terms Button */
.terms-btn {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.65) 0%, rgba(59, 130, 246, 0.65) 100%);
    color: white;
}

/* Shopier Button */
.shopier-btn {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.65) 0%, rgba(251, 191, 36, 0.65) 100%);
    color: white;
}

/* Responsive Sidebar */
@media (max-width: 768px) {
    .floating-sidebar {
        right: 8px;
        top: auto;
        bottom: 16px;
        transform: none;
        gap: 8px;
        padding: 10px 8px;
        border-radius: 18px;
    }

    .floating-sidebar.visible {
        transform: none;
    }
    
    .sidebar-btn {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .sidebar-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .team-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Selection disabled text */
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Glitch effect for hover */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Loading animation */
.loading {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Loading Placeholders */
.loading-card {
    pointer-events: none;
}

.team-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--bg-card) 25%, rgba(139, 92, 246, 0.1) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.text-placeholder {
    height: 24px;
    width: 60%;
    margin: 12px auto;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--bg-card) 25%, rgba(139, 92, 246, 0.1) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.text-placeholder.small {
    height: 16px;
    width: 40%;
}

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