html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: #020306; 
    color: #ffffff; 
    min-height: 100vh; 
    font-family: 'Space Grotesk', sans-serif; 
    overflow-x: hidden; 
    position: relative; 
}

/* Custom Minimal Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #03050a; }
::-webkit-scrollbar-thumb { background: #1f2430; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #ff6600; }

/* ნეონის ფონური განათებები */
.glow-1 { position: absolute; top: -250px; left: 50%; transform: translateX(-50%); width: 1000px; height: 600px; background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, rgba(0,0,0,0) 70%); z-index: -2; pointer-events: none; filter: blur(40px); }
.glow-2 { position: absolute; bottom: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, rgba(0,0,0,0) 70%); z-index: -2; pointer-events: none; }
.glow-3 { position: absolute; top: 50%; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 102, 0, 0.04) 0%, rgba(0,0,0,0) 70%); z-index: -2; pointer-events: none; }
.pattern-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(255, 102, 0, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 102, 0, 0.02) 1px, transparent 1px); background-size: 40px 40px; z-index: -1; pointer-events: none; opacity: 0.7; }

header { display: flex; justify-content: center; width: 100%; padding-top: 25px; position: fixed; top: 0; z-index: 90; }
.navbar { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    background-color: rgba(4, 6, 12, 0.7); 
    backdrop-filter: blur(24px); 
    -webkit-backdrop-filter: blur(24px); 
    padding: 10px 18px; 
    border-radius: 100px; 
    border: 1px solid rgba(255, 102, 0, 0.2); 
    min-width: 620px; 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.1); 
}
.nav-links { display: flex; gap: 4px; }
.nav-item { 
    text-decoration: none; 
    color: #a0a7b5; 
    font-size: 14px; 
    font-weight: 600; 
    padding: 10px 26px; 
    border-radius: 100px; 
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); 
}
.nav-item:hover { color: #ffffff; background-color: rgba(255, 102, 0, 0.08); text-shadow: 0 0 8px rgba(255, 102, 0, 0.4); }
.nav-item.active { background: linear-gradient(135deg, #24140b 0%, #120a05 100%); color: #ff6600; border: 1px solid rgba(255, 102, 0, 0.4); box-shadow: inset 0 1px 10px rgba(255,102,0,0.1); }

.lang-toggle-btn { background: linear-gradient(135deg, #ff6600 0%, #d45500 100%); color: #020306; border: none; padding: 10px 24px; font-size: 13px; font-weight: 800; border-radius: 100px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; box-shadow: 0 0 25px rgba(255, 102, 0, 0.4); letter-spacing: 0.5px; }
.lang-toggle-btn:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(255, 102, 0, 0.7); }

/* Hero სექცია */
.hero-section { display: flex; justify-content: center; align-items: center; height: 100vh; text-align: center; background: radial-gradient(circle at center, rgba(255,102,0,0.02) 0%, transparent 60%); }
.hero-content { display: flex; flex-direction: column; align-items: center; transform: translateY(-10px); }
.server-status { display: flex; align-items: center; gap: 10px; background: rgba(255, 102, 0, 0.04); border: 1px solid rgba(255, 102, 0, 0.2); padding: 8px 20px; border-radius: 100px; margin-bottom: 25px; backdrop-filter: blur(5px); }
#status-text { font-size: 13px; color: #cbd2e0; font-weight: 600; letter-spacing: 0.3px; }
.status-dot { width: 100%; max-width: 10px; height: 10px; border-radius: 50%; }
.status-dot.online { background-color: #00ff66; box-shadow: 0 0 12px #00ff66; }
.status-dot.offline { background-color: #ff3333; box-shadow: 0 0 12px #ff3333; }
.pulsed { animation: pulse 2s infinite; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

.hero-title-neon { font-family: 'Montserrat', sans-serif; font-size: 120px; font-weight: 900; color: #ffffff; text-transform: uppercase; letter-spacing: -4px; margin-bottom: 12px; line-height: 0.95; background: linear-gradient(180deg, #ffffff 30%, #a0a6b5 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
.hero-title-neon span { color: #ff6600; -webkit-text-fill-color: #ff6600; text-shadow: 0 0 30px rgba(255, 102, 0, 0.6), 0 0 60px rgba(255, 102, 0, 0.3); }
.hero-subtitle { font-size: 24px; color: #8a93a6; font-weight: 500; margin-bottom: 45px; letter-spacing: -0.2px; }

/* IP ბლოკი */
.ip-container { display: flex; align-items: center; background: rgba(10, 13, 24, 0.6); border: 1px solid rgba(255, 102, 0, 0.25); border-radius: 20px; padding: 6px 6px 6px 24px; cursor: pointer; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); backdrop-filter: blur(10px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.05); }
.ip-container:hover { border-color: #ff6600; transform: translateY(-4px); box-shadow: 0 20px 40px rgba(255, 102, 0, 0.15), 0 0 30px rgba(255, 102, 0, 0.1); }
.ip-box { display: flex; flex-direction: column; align-items: flex-start; padding-right: 35px; }
.ip-label { font-size: 11px; color: #ff6600; text-transform: uppercase; font-weight: 800; margin-bottom: 4px; letter-spacing: 0.8px; opacity: 0.8; }
.ip-text { font-size: 20px; color: #ffffff; font-weight: 700; letter-spacing: 0.5px; }
.ip-icon-box { background: linear-gradient(135deg, #ff6600 0%, #cc5200 100%); color: #020306; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 14px; font-size: 18px; box-shadow: 0 4px 15px rgba(255,102,0,0.3); }

/* --- 🛒 პროდუქტების და რანკების სექცია --- */
.products-section { max-width: 1400px; margin: 0 auto; padding: 140px 24px; text-align: center; }
.section-title { font-family: 'Montserrat', sans-serif; font-size: 52px; font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; background: linear-gradient(180deg, #fff 0%, #cbd2e1 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle { font-size: 18px; color: #737c91; margin-bottom: 80px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* 3D Skewed Perspective Grid Effect */
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 35px; 
    justify-content: center;
    perspective: 1000px;
}

/* Premium Slanted Glassmorphism Cards */
.rank-card { 
    position: relative;
    background: linear-gradient(145deg, rgba(8, 11, 20, 0.9) 0%, rgba(4, 5, 10, 0.95) 100%); 
    border-radius: 28px; 
    padding: 40px 30px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    border: 1px solid rgba(255, 255, 255, 0.03); 
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.02);
    overflow: hidden;
    transform: rotateX(2deg) rotateY(-2deg);
}
.rank-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
    transition: transform 0.5s ease;
}
.rank-card:hover {
    transform: rotateX(0deg) rotateY(0deg) translateY(-15px) scale(1.02);
}
.rank-card:hover .rank-card-glow {
    transform: translate(10%, 10%);
}

.rank-badge { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900; margin-bottom: 24px; letter-spacing: 1.5px; position: relative; }

/* Premium Radio Toggle Pill Box */
.price-selector-box { width: 100%; display: flex; flex-direction: column; gap: 6px; background: rgba(0, 0, 0, 0.3); padding: 8px; border-radius: 18px; margin-bottom: 30px; border: 1px solid rgba(255,255,255,0.02); text-align: left; }
.price-selector-box label { font-size: 14px; color: #8e96a8; cursor: pointer; display: flex; align-items: center; gap: 12px; padding: 12px 16px; font-weight: 600; border-radius: 12px; transition: all 0.25s ease; position: relative; }
.price-selector-box label:hover { background: rgba(255,255,255,0.02); color: #fff; }
.price-selector-box input[type="radio"] { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.15); border-radius: 50%; transition: all 0.2s ease; display: grid; place-content: center; }
.price-selector-box input[type="radio"]::before { content: ""; width: 8px; height: 8px; border-radius: 50%; transform: scale(0); transition: 0.2s transform ease-in-out; }
.price-selector-box input[type="radio"]:checked { border-color: currentColor; }
.price-selector-box input[type="radio"]:checked::before { transform: scale(1); background-color: currentColor; }
.price-selector-box label:has(input[type="radio"]:checked) { background: rgba(255,255,255,0.04); color: #fff; }

.rank-perks { list-style: none; width: 100%; text-align: left; margin-bottom: 35px; flex-grow: 1; display: flex; flex-direction: column; gap: 18px; }
.rank-perks li { font-size: 14px; color: #b2bacb; line-height: 1.6; display: flex; flex-direction: column; gap: 6px; }
.rank-perks li i { font-size: 13px; margin-right: 4px; display: inline-block; }
.all-perks-include { font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 12px; margin-bottom: 4px !important; font-size: 13px !important; text-transform: uppercase; letter-spacing: 0.5px; }

.prefix-img-box { margin-top: 6px; background: #040508; padding: 8px 16px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.04); display: inline-flex; width: fit-content; box-shadow: inset 0 2px 8px rgba(0,0,0,0.8); }
.prefix-img-box img { max-height: 21px; object-fit: contain; }

.buy-btn { width: 100%; background: transparent; color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.08); padding: 16px; border-radius: 16px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); position: relative; }

/* 🎨 რანკების ნეონ თემები */
.rank-card.nova { border: 1px solid rgba(46, 255, 118, 0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 20px 30px rgba(46, 255, 118, 0.01); }
.rank-card.nova .rank-badge { color: #2eff76; text-shadow: 0 0 25px rgba(46, 255, 118, 0.4); }
.rank-card.nova .rank-perks li i, .rank-card.nova .all-perks-include { color: #2eff76; }
.rank-card.nova .price-selector-box label { color: #8e96a8; }
.rank-card.nova .price-selector-box label:has(input[type="radio"]:checked) { color: #2eff76; background: rgba(46, 255, 118, 0.04); }
.rank-card.nova input[type="radio"] { color: #2eff76; }
.rank-card.nova:hover { border-color: rgba(46, 255, 118, 0.5); box-shadow: 0 30px 60px rgba(46, 255, 118, 0.15), inset 0 1px 20px rgba(46, 255, 118, 0.05); }
.rank-card.nova .buy-btn { border-color: rgba(46, 255, 118, 0.2); }
.rank-card.nova .buy-btn:hover { background: #2eff76; color: #020306; font-weight: 800; border-color: #2eff76; box-shadow: 0 0 25px rgba(46, 255, 118, 0.5); transform: translateY(-2px); }

.rank-card.pulsar { border: 1px solid rgba(255, 102, 0, 0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 20px 30px rgba(255, 102, 0, 0.01); }
.rank-card.pulsar .rank-badge { color: #ff6600; text-shadow: 0 0 25px rgba(255, 102, 0, 0.4); }
.rank-card.pulsar .rank-perks li i, .rank-card.pulsar .all-perks-include { color: #ff6600; }
.rank-card.pulsar .price-selector-box label:has(input[type="radio"]:checked) { color: #ff6600; background: rgba(255, 102, 0, 0.04); }
.rank-card.pulsar input[type="radio"] { color: #ff6600; }
.rank-card.pulsar:hover { border-color: rgba(255, 102, 0, 0.5); box-shadow: 0 30px 60px rgba(255, 102, 0, 0.15), inset 0 1px 20px rgba(255, 102, 0, 0.05); }
.rank-card.pulsar .buy-btn { border-color: rgba(255, 102, 0, 0.2); }
.rank-card.pulsar .buy-btn:hover { background: #ff6600; color: #020306; font-weight: 800; border-color: #ff6600; box-shadow: 0 0 25px rgba(255, 102, 0, 0.5); transform: translateY(-2px); }

.rank-card.comet { border: 1px solid rgba(0, 204, 255, 0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 20px 30px rgba(0, 204, 255, 0.01); }
.rank-card.comet .rank-badge { color: #00ccff; text-shadow: 0 0 25px rgba(0, 204, 255, 0.4); }
.rank-card.comet .rank-perks li i, .rank-card.comet .all-perks-include { color: #00ccff; }
.rank-card.comet .price-selector-box label:has(input[type="radio"]:checked) { color: #00ccff; background: rgba(0, 204, 255, 0.04); }
.rank-card.comet input[type="radio"] { color: #00ccff; }
.rank-card.comet:hover { border-color: rgba(0, 204, 255, 0.5); box-shadow: 0 30px 60px rgba(0, 204, 255, 0.15), inset 0 1px 20px rgba(0, 204, 255, 0.05); }
.rank-card.comet .buy-btn { border-color: rgba(0, 204, 255, 0.2); }
.rank-card.comet .buy-btn:hover { background: #00ccff; color: #020306; font-weight: 800; border-color: #00ccff; box-shadow: 0 0 25px rgba(0, 204, 255, 0.5); transform: translateY(-2px); }

.rank-card.cosmo { border: 1px solid rgba(204, 51, 255, 0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 20px 30px rgba(204, 51, 255, 0.01); }
.rank-card.cosmo .rank-badge { color: #cc33ff; text-shadow: 0 0 25px rgba(204, 51, 255, 0.4); }
.rank-card.cosmo .rank-perks li i, .rank-card.cosmo .all-perks-include { color: #cc33ff; }
.rank-card.cosmo .price-selector-box label:has(input[type="radio"]:checked) { color: #cc33ff; background: rgba(204, 51, 255, 0.04); }
.rank-card.cosmo input[type="radio"] { color: #cc33ff; }
.rank-card.cosmo:hover { border-color: rgba(204, 51, 255, 0.5); box-shadow: 0 30px 60px rgba(204, 51, 255, 0.15), inset 0 1px 20px rgba(204, 51, 255, 0.05); }
.rank-card.cosmo .buy-btn { border-color: rgba(204, 51, 255, 0.2); }
.rank-card.cosmo .buy-btn:hover { background: #cc33ff; color: #020306; font-weight: 800; border-color: #cc33ff; box-shadow: 0 0 25px rgba(204, 51, 255, 0.5); transform: translateY(-2px); }

/* --- 🛍️ მცურავი კალათის სტილები (Cart Drawer) --- */
.floating-cart-trigger { position: fixed; bottom: 35px; right: 35px; background: linear-gradient(135deg, #ff6600 0%, #cc5200 100%); color: #020306; width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; cursor: pointer; z-index: 99; box-shadow: 0 15px 35px rgba(255, 102, 0, 0.4); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid rgba(255,255,255,0.1); }
.floating-cart-trigger:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 20px 45px rgba(255, 102, 0, 0.6); }
.cart-count-badge { position: absolute; top: -3px; right: -3px; background: #ffffff; color: #020306; font-size: 11px; font-weight: 900; min-width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0 5px; box-shadow: 0 4px 15px rgba(0,0,0,0.4); border: 2px solid #ff6600; }

/* კალათის გვერდითა მენიუ */
.cart-sidebar { position: fixed; top: 0; right: -460px; width: 460px; height: 100vh; background: rgba(5, 7, 13, 0.85); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border-left: 1px solid rgba(255, 102, 0, 0.15); z-index: 150; padding: 35px; display: flex; flex-direction: column; transition: right 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); box-shadow: -25px 0 60px rgba(0,0,0,0.7), inset 1px 0 0 rgba(255,255,255,0.03); }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.04); padding-bottom: 18px; }
.cart-header h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; display: flex; align-items: center; gap: 12px; color: #ff6600; font-weight: 800; letter-spacing: -0.5px; }
.close-cart-btn { background: none; border: none; color: #4e5566; font-size: 36px; cursor: pointer; transition: color 0.25s; line-height: 0.5; }
.close-cart-btn:hover { color: #ffffff; }

/* კალათის შიგთავსი */
.cart-items-container { flex-grow: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; margin-bottom: 25px; padding-right: 6px; }
.empty-cart { text-align: center; color: #484f5e; margin-top: 60px; font-size: 14px; font-style: italic; font-weight: 500; }

.cart-item-row { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.01); padding: 16px 20px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.03); transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); }
.cart-item-row:hover { background: rgba(255, 255, 255, 0.03); transform: translateX(-4px); }
.cart-item-info { display: flex; flex-direction: column; gap: 6px; }
.c-item-name { font-weight: 700; font-size: 16px; color: #fff; letter-spacing: 0.2px; }
.c-item-name small { color: #727a8c; font-weight: 500; margin-left: 6px; font-size: 12px; }
.c-item-price { font-size: 15px; color: #ff6600; font-weight: 800; }
.c-item-price small { color: #4e5566; font-weight: 600; margin-left: 6px; font-size: 12px; }
.remove-item-btn { background: none; border: none; color: #ef4444; font-size: 24px; cursor: pointer; transition: transform 0.2s; padding: 0 4px; opacity: 0.7; }
.remove-item-btn:hover { transform: scale(1.2); opacity: 1; }

.cart-item-row.nova { border-left: 4px solid #2eff76; }
.cart-item-row.pulsar { border-left: 4px solid #ff6600; }
.cart-item-row.comet { border-left: 4px solid #00ccff; }
.cart-item-row.cosmo { border-left: 4px solid #cc33ff; }

.cart-item-row.nova:hover { box-shadow: -4px 0 20px rgba(46, 255, 118, 0.2); }
.cart-item-row.pulsar:hover { box-shadow: -4px 0 20px rgba(255, 102, 0, 0.2); }
.cart-item-row.comet:hover { box-shadow: -4px 0 20px rgba(0, 204, 255, 0.2); }
.cart-item-row.cosmo:hover { box-shadow: -4px 0 20px rgba(204, 51, 255, 0.2); }

/* ჩექაუთ ბლოკი კალათაში */
.cart-checkout-section { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 25px; }
.total-price-box { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.total-price-box span { font-size: 15px; color: #727a8c; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.total-amount { font-size: 28px; font-weight: 900; color: #ffffff !important; text-shadow: 0 0 15px rgba(255,255,255,0.15); }

/* ნიკის ჩასაწერი ინფუთი */
.username-input-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.username-input-group label { font-size: 12px; color: #8e96a8; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.username-input-group input { background: #04060b; border: 1px solid rgba(255,102,0,0.25); border-radius: 14px; padding: 14px 18px; color: #ffffff; font-family: inherit; font-size: 15px; outline: none; transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1); }
.username-input-group input:focus { border-color: #ff6600; box-shadow: 0 0 20px rgba(255, 102, 0, 0.3); background-color: #060912; }

/* 📝 დაგენერირებული ტექსტის ბლოკი */
.generated-desc-box { background: #04060b; border: 1px solid rgba(255,255,255,0.03); border-radius: 14px; padding: 18px; margin-bottom: 20px; position: relative; box-shadow: inset 0 2px 8px rgba(0,0,0,0.5); }
.desc-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.04); padding-bottom: 10px; margin-bottom: 12px; }
.desc-header span { font-size: 11px; font-weight: 900; color: #ffaa00; letter-spacing: 1.2px; }
.copy-desc-btn { background: none; border: none; color: #535a6b; cursor: pointer; font-size: 15px; transition: color 0.2s; }
.copy-desc-btn:hover { color: #ffaa00; }
.generated-desc-box pre { font-family: 'Space Grotesk', monospace; font-size: 13px; color: #a6b0c4; white-space: pre-wrap; word-break: break-all; line-height: 1.6; text-align: left; font-weight: 500; }

/* 🔒 ჩეკბოქსის */
.terms-checkbox-label { display: flex; align-items: flex-start; gap: 14px; cursor: pointer; margin-bottom: 25px; position: relative; user-select: none; text-align: left; }
.terms-checkbox-label input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { height: 20px; width: 20px; background-color: #04060b; border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; flex-shrink: 0; margin-top: 1px; position: relative; transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1); }
.terms-checkbox-label:hover input ~ .checkmark { border-color: #ff6600; box-shadow: 0 0 10px rgba(255,102,0,0.2); }
.terms-checkbox-label input:checked ~ .checkmark { background-color: #ff6600; border-color: #ff6600; box-shadow: 0 0 15px rgba(255,102,0,0.4); }
.checkmark:after { content: ""; position: absolute; display: none; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #020306; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.terms-checkbox-label input:checked ~ .checkmark:after { display: block; }
.checkbox-text { font-size: 13px; color: #727a8c; line-height: 1.5; font-weight: 600; transition: color 0.2s ease; }
.terms-checkbox-label:hover .checkbox-text { color: #a2abbf; }

/* საბოლოო ყიდვის ღილაკი */
.checkout-btn { width: 100%; background: linear-gradient(135deg, #ff6600 0%, #d45500 100%); color: #020306; border: none; padding: 18px; border-radius: 16px; font-size: 16px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); text-shadow: 0 1px 2px rgba(0,0,0,0.2); box-shadow: 0 0 25px rgba(255, 102, 0, 0.3); }
.checkout-btn:hover:not([disabled]) { transform: translateY(-3px); box-shadow: 0 0 40px rgba(255, 102, 0, 0.6); }
.checkout-btn:disabled { background: #13161f; color: #383e4c; cursor: not-allowed; box-shadow: none; border: 1px solid rgba(255,255,255,0.01); text-shadow: none; }

/* ტოსტ ნოტიფიკაციები */
.notification-container { position: fixed; top: 30px; right: 30px; z-index: 1000; display: flex; flex-direction: column; gap: 12px; }
.toast-notification { background: rgba(6, 9, 15, 0.9); backdrop-filter: blur(12px); color: #ffffff; border-left: 4px solid #ff6600; padding: 18px 28px; border-radius: 14px; font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 14px; box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255,255,255,0.05); transform: translateX(130%); transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); border: 1px solid rgba(255,255,255,0.02); border-left: none; }
.toast-notification i { color: #00ff66; font-size: 18px; }
.toast-notification.show { transform: translateX(0); }

/* --- 👾 DISCORD სექციის სტილები --- */
.discord-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.discord-card {
    background: #090b11;
    border: 1px solid rgba(88, 101, 242, 0.15);
    border-radius: 24px;
    padding: 60px 40px;
    width: 100%;
    max-width: 800px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease;
}

.discord-card:hover {
    transform: translateY(-5px);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 25px 60px rgba(88, 101, 242, 0.1);
}

/* შიდა ნეონ განათება */
.discord-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* ლოგოს კონტეინერი */
.discord-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(88, 101, 242, 0.05);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.discord-neon-logo {
    font-size: 46px;
    color: #5865F2;
    text-shadow: 0 0 15px rgba(88, 101, 242, 0.6);
    transition: transform 0.3s ease;
}

/* ჰოვერ ეფექტები ლოგოზე */
.discord-icon-wrapper:hover {
    background: #5865F2;
    transform: scale(1.1) rotate(5px);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6);
    border-color: #5865F2;
}

.discord-icon-wrapper:hover .discord-neon-logo {
    color: #ffffff;
    text-shadow: none;
}

/* ტექსტები */
.discord-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.discord-subtitle {
    font-size: 15px;
    color: #8a92a6;
    max-width: 550px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Discord ღილაკი */
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background: #6d78f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.5);
}