﻿:root {
    --bg-body: #050505;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(20, 20, 25, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --primary: #a855f7;
    --primary-hover: #9333ea;
    --accent: #f97316;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --container-width: 1240px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --bg-body: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #475569;
    --glass-bg: #ffffff;
    --glass-border: #e2e8f0;
    --glass-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(168, 85, 247, 0.15), transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(249, 115, 22, 0.1), transparent 40%);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-pad {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.bg-darker {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

[data-theme="light"] .bg-darker {
    background: #f1f5f9;
}

.bg-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.top-left {
    top: -200px;
    left: -200px;
    background: var(--primary);
}

.bottom-right {
    bottom: -200px;
    right: -200px;
    background: var(--accent);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: none !important;
    transition: var(--transition);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #e2e8f0 !important;
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(5, 5, 5, 0.98);
}

[data-theme="light"] .navbar.scrolled {
    background: #fff;
}

.navbar-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

.desktop-menu {
    display: flex;
    gap: 5px;
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

[data-theme="light"] .desktop-menu {
    border-color: transparent;
    background: transparent;
}

.nav-link {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .nav-link:hover {
    background: #f1f5f9;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    background: var(--bg-body);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: 0.2s;
    z-index: 1100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.drop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    color: var(--text-muted);
}

.drop-item:hover {
    background: var(--primary);
    color: #fff !important;
}

.drop-item:hover * {
    color: #fff;
}

.drop-item strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-body);
    border-left: 1px solid var(--glass-border);
    padding: 30px;
    transition: 0.4s;
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

.mobile-side-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.m-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.m-links a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1.1rem;
    color: var(--text-main);
}

.footer-new {
    padding: 100px 0 40px;
    border-top: 1px solid var(--glass-border);
    background: #050505;
    margin-top: 0;
}

[data-theme="light"] .footer-new {
    background: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-title {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
}

.btn-outline {
    border-color: var(--glass-border);
    background: transparent;
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(168, 85, 247, 0.1);
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.btn-icon:hover {
    color: var(--warning);
    border-color: var(--warning);
    transform: rotate(15deg);
}

[data-theme="light"] #icon-sun {
    display: none;
}

[data-theme="dark"] #icon-moon {
    display: none;
}

.page-hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

.badge-glow {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 20%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.game-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-card .gc-content-wrapper {
    transition: transform 0.4s ease;
    width: 100%;
}

.game-card:hover .gc-content-wrapper {
    transform: translateY(-15px);
}

.game-card::after {
    content: '⚙️ Yapılandır';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.game-card:hover::after {
    bottom: 25px;
    opacity: 1;
}

.gc-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 15px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-main);
    font-weight: 800;
}

.game-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    transition: 0.3s;
}

.game-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px -10px rgba(168, 85, 247, 0.15);
}

.game-card:hover .gc-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.game-card:hover p {
    opacity: 0.6;
}

.game-card.active {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.2);
    animation: activePulse 3s infinite alternate;
}

.game-card.active .gc-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(168, 85, 247, 0.4);
}

@keyframes activePulse {
    0% {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
    }

    100% {
        border-color: #fff;
        box-shadow: 0 0 0 8px rgba(168, 85, 247, 0.25);
    }
}

.game-card[data-game="fivem"]:hover,
.game-card[data-game="fivem"].active {
    --primary: #a855f7;
}

.game-card[data-game="minecraft"]:hover,
.game-card[data-game="minecraft"].active {
    --primary: #10b981;
}

.game-card[data-game="rust"]:hover,
.game-card[data-game="rust"].active {
    --primary: #ef4444;
}

.game-card[data-game="cs"]:hover,
.game-card[data-game="cs"].active {
    --primary: #f59e0b;
}

.game-card[data-game="ark"]:hover,
.game-card[data-game="ark"].active {
    --primary: #06b6d4;
}

.game-card[data-game="meta"]:hover,
.game-card[data-game="meta"].active {
    --primary: #3b82f6;
}

.config-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--glass-shadow);
}

.config-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
}

.config-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.config-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

.premium-slider-area {
    margin: 50px 0;
    position: relative;
}

.slider-labels-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 700;
}

.slider-track-wrapper {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.premium-range {
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 10px;
    outline: none;
    background: rgba(125, 125, 125, 0.1);
    cursor: pointer;
    position: relative;
    z-index: 2;
    background-image: linear-gradient(90deg, var(--primary), var(--accent));
    background-size: 0% 100%;
    background-repeat: no-repeat;
}

.premium-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--primary);
    cursor: grab;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    transition: transform 0.1s ease;
    margin-top: -1px;
}

.premium-range:active::-webkit-slider-thumb {
    transform: scale(1.2);
    cursor: grabbing;
    border-color: #fff;
    background: var(--primary);
}

.slider-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 18px;
    width: 100%;
    pointer-events: none;
    padding: 0 16px;
    left: 0;
    z-index: 1;
}

.slider-dots span {
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
    opacity: 0.5;
}

.specs-live {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.spec-box {
    flex: 1;
    background: rgba(125, 125, 125, 0.05);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.spec-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.spec-box i {
    font-size: 2.2rem;
    color: var(--primary);
}

.sb-val {
    display: block;
    font-weight: 800;
    color: var(--text-main);
    font-size: 1.25rem;
}

.sb-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-summary-box {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px -10px rgba(168, 85, 247, 0.15);
}

.ps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ps-title {
    font-weight: 600;
    color: var(--text-muted);
}

.ps-badge {
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.ps-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: 8px;
}

.ps-features {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 10px;
}

.ps-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1rem;
}

.ps-features i {
    color: var(--success);
    font-size: 1.3rem;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.features-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.adv-card {
    padding: 30px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
}

.adv-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(168, 85, 247, 0.15);
}

.ac-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.adv-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benchmark-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.bt-row {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr 1fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
    gap: 30px;
}

.bt-row.head {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 2px solid var(--glass-border);
    text-transform: uppercase;
}

.bt-row.highlight {
    background: rgba(168, 85, 247, 0.05);
    border-left: 4px solid var(--primary);
    padding-left: 16px;
    margin: 0 -16px;
    border-radius: 4px;
}

.cpu-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.tag {
    font-size: 0.75rem;
    background: var(--primary);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 5px;
}

.b-bar-track {
    width: 100%;
    height: 10px;
    background: rgba(125, 125, 125, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.b-bar-fill {
    height: 100%;
    border-radius: 6px;
}

.b-bar-fill.primary {
    background: linear-gradient(90deg, var(--primary), #ec4899);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.b-bar-fill.secondary {
    background: var(--text-muted);
    opacity: 0.4;
}

.score-val {
    color: var(--text-main);
    font-size: 1.1rem;
}

.os-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.os-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: 20px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.os-box i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--text-muted);
    transition: 0.3s;
}

.os-box span {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.os-box small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 5px;
    opacity: 0.7;
}

.os-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px -10px rgba(168, 85, 247, 0.25);
}

.os-box:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-box {
    margin-bottom: 20px;
    overflow: hidden;
    padding: 0;
    background: rgba(125, 125, 125, 0.03);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.faq-box summary {
    padding: 25px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    color: var(--text-main);
    font-size: 1.05rem;
}

.faq-box summary::-webkit-details-marker {
    display: none;
}

.faq-box[open] {
    border-color: var(--primary);
    background: rgba(168, 85, 247, 0.05);
}

.faq-body {
    padding: 0 25px 25px;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    margin-top: 0;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .config-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .desktop-menu,
    .nav-actions .btn:not(.mobile-toggle) {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .specs-live {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .bt-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

.floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.support-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.support-text {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.floating-support:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: #25D366;
}

.floating-support:hover .support-icon {
    transform: rotate(360deg);
}

.dropdown-menu.wide-menu {
    width: 340px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.dropdown-menu {
    min-width: 260px;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--bg-body);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .dropdown-menu {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.proxy-card-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.proxy-card-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.proxy-features-list {
    display: grid;
    gap: 25px;
    margin-top: 35px;
}

.p-feat-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.p-feat-item i {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(168, 85, 247, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.p-feat-item strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
}

.p-feat-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.proxy-visual {
    position: relative;
    z-index: 2;
}

.proxy-stats-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.stat-row:last-child {
    border: none;
}

.stat-row strong {
    color: var(--success);
}

.ph {
    vertical-align: middle;
    display: inline-block;
}

@media (max-width: 992px) {
    .proxy-card-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .floating-support {
        bottom: 90px;
        right: 20px;
        padding: 8px 15px 8px 8px;
    }

    .support-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .support-text {
        font-size: 0.9rem;
    }
}

.kdv-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.8;
    margin-left: 5px;
}

.coupon-box-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    background: rgba(16, 185, 129, 0.08);
    border: 1px dashed rgba(16, 185, 129, 0.4);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    gap: 8px;
}

.cbc-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
}

.cbc-tag {
    background: rgba(16, 185, 129, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 0.3px;
    font-size: 0.75rem;
    white-space: nowrap;
}

.cbc-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.price-new {
    color: var(--success);
    font-weight: 800;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 90%;
    max-width: 500px;
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
    flex: 1;
    font-family: 'Inter', sans-serif;
}

.cookie-banner a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.cookie-banner a:hover {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 30px;
    white-space: nowrap;
    background: #6366f1;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cookie-banner .btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.5);
}

[data-theme="light"] .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .cookie-banner p {
    color: #475569;
}

[data-theme="light"] .cookie-banner a {
    color: #4f46e5;
}