/* style.css v3 - Optimized for Conversion and Aesthetics */

:root {
    --neon-cyan: #00f2ff;
    --neon-pink: #ff00e5;
    --bg-dark: #050505;
    --card-bg: rgba(20, 20, 20, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-header: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: #f0f0f0;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Glow Effects - створюють глибину без навантаження на сервер */
.bg-glow-1 {
    position: fixed; top: -10%; left: -10%; width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
    z-index: -1; filter: blur(100px);
}
.bg-glow-2 {
    position: fixed; bottom: -10%; right: -10%; width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(255, 0, 229, 0.1) 0%, transparent 70%);
    z-index: -1; filter: blur(100px);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Header & Logo */
header {
    padding: 60px 0 20px;
}

.logo-text {
    font-family: var(--font-header);
    letter-spacing: 6px;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
}
.logo-text span {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Hero Section */
.hero {
    padding: 40px 0 80px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--neon-cyan);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    background: rgba(0, 242, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.glitch-title {
    font-family: var(--font-header);
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 4px 4px var(--neon-pink), -4px -4px var(--neon-cyan);
    margin: 10px 0 20px;
}

.tagline {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* New: Main CTA Button with Pulse Animation - для підвищення конверсії */
.main-cta-container {
    margin-bottom: 60px;
}

.btn-neon {
    display: inline-block;
    padding: 22px 50px;
    background: var(--neon-cyan);
    color: #000;
    text-decoration: none;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-neon:hover {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 0 40px var(--neon-cyan);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 242, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Image Wrapper із щільною неоновою рамкою */
.image-wrapper {
    position: relative;
    border: 2px solid var(--neon-cyan);
    border-radius: 16px;
    padding: 4px;
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
    margin-bottom: 80px;
    line-height: 0;
}
.main-feature-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Grid Sections */
.modes-grid, .grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.mode-card, .content-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    text-align: left;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.mode-card:hover, .content-box:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.mode-number {
    display: block;
    font-family: var(--font-header);
    font-size: 3rem;
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
    margin-bottom: 10px;
}

h3 {
    font-family: var(--font-header);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Separator */
.neon-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
    margin: 80px 0;
    opacity: 0.3;
}

/* Footer - Clean and Readable */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive fixes */
@media (max-width: 600px) {
    .container { padding: 0 15px; }
    .glitch-title { font-size: 3rem; }
    .btn-neon { width: 100%; text-align: center; }
}
