:root {
    --bg-color: #0d0e15;
    --surface-color: #1a1c29;
    --primary-color: #00f0ff;
    --secondary-color: #ff003c;
    --text-main: #ffffff;
    --text-muted: #a0a5be;
    --card-bg: rgba(26, 28, 41, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
}

span {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.2), 0 0 20px rgba(0, 240, 255, 0.2);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 14, 21, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,240,255,0.15) 0%, rgba(13,14,21,0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Sections Base */
section {
    padding: 100px 0;
}

/* Skins Grid */
.skins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.skin-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.skin-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

/* Carousel inside Card */
.carousel {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-color);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.skin-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skin-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.skin-price {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 800;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

/* Tools Section */
.tools-section {
    background: rgba(26, 28, 41, 0.3);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tool-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
}

.tool-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.1);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tool-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.tool-card p {
    color: var(--text-muted);
}

/* Contact Section */
.contact-box {
    background: var(--card-bg);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(13, 14, 21, 0.8);
    padding: 30px;
    border-radius: 10px;
    min-width: 250px;
    border: 1px solid var(--glass-border);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 5px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-tg {
    background: linear-gradient(135deg, #0088cc, #00aaff);
    color: white;
    width: 100%;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.btn-tg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #00aaff, #0088cc);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-tg:hover::before {
    opacity: 1;
}

.btn-tg:hover {
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
    transform: translateY(-2px);
}

.btn-email {
    background: linear-gradient(135deg, #ea4335, #ff6b6b);
    color: white;
    width: 100%;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
}

.btn-email::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #ff6b6b, #ea4335);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-email:hover::before {
    opacity: 1;
}

.btn-email:hover {
    box-shadow: 0 6px 20px rgba(234, 67, 53, 0.6);
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: rgba(13, 14, 21, 0.9);
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none;
    }
    .skins-grid {
        grid-template-columns: 1fr;
    }
    .contact-methods {
        flex-direction: column;
    }
    .contact-box {
        padding: 40px 20px;
    }
}

/* Language Switcher */
.lang-switch { display: flex; gap: 10px; margin-right: 20px; }
.lang-switch button { background: transparent; border: 1px solid var(--glass-border); color: var(--text-muted); padding: 5px 10px; border-radius: 4px; cursor: pointer; transition: var(--transition); font-family: 'Outfit', sans-serif; font-weight: 600; }
.lang-switch button:hover { border-color: var(--primary-color); color: var(--text-main); }
.lang-switch button.active { background: rgba(0, 240, 255, 0.1); border-color: var(--primary-color); color: var(--primary-color); }

/* Payment Info */
.payment-info { background: rgba(0, 240, 255, 0.05); border: 1px dashed var(--primary-color); padding: 15px; border-radius: 10px; display: inline-block; margin-bottom: 30px; font-weight: 600; color: var(--primary-color); text-transform: uppercase; letter-spacing: 1px; }


.tool-svg { width: 60px; height: 60px; margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5)); transition: var(--transition); }
.tool-card:hover .tool-svg { filter: drop-shadow(0 0 15px var(--secondary-color)); }
.contact-svg { width: 50px; height: 50px; }


/* Lightbox */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.lightbox.active { display: flex; opacity: 1; }
.lightbox-close { position: absolute; top: 30px; right: 40px; font-size: 50px; color: white; cursor: pointer; z-index: 2001; transition: var(--transition); line-height: 1; }
.lightbox-close:hover { color: var(--primary-color); transform: scale(1.1); }
.lightbox-img { max-width: 90%; max-height: 90vh; border-radius: 10px; box-shadow: 0 0 30px rgba(0, 240, 255, 0.2); cursor: zoom-in; transition: transform 0.1s ease; object-fit: contain; }
.lightbox-img.zoomed { cursor: zoom-out; transform: scale(2.5); }
.lightbox-zoom-hint { position: absolute; bottom: 30px; color: rgba(255, 255, 255, 0.6); font-size: 1rem; pointer-events: none; z-index: 2001; }
.carousel-images img { cursor: pointer; }


.lightbox-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 2001; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: var(--transition); }
.lightbox-btn:hover { background: var(--primary-color); color: var(--bg-color); }
.lightbox-btn.prev { left: 20px; }
.lightbox-btn.next { right: 20px; }

