:root {
    --primary: #007bff;
    --primary-hover: #0056b3;
    --bg-dark: #0a0a0b;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glassmorphism Utility */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #001f3f, #000000);
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-banner em {
    font-style: italic;
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0b 100%);
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Buttons */
.btn-telegram {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-telegram:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.btn-telegram svg {
    margin-right: 12px;
}

/* Ticker Section */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
    will-change: transform;
}

.ticker span {
    display: flex;
    align-items: center;
    padding: 0 30px;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Adjust ticker for mobile */
@media (max-width: 576px) {
    .ticker span { font-size: 1.2rem; padding: 0 15px; }
    .ticker-wrap { padding: 15px 0; }
}

/* Footer Styles */
footer {
    padding: 60px 20px;
    text-align: center;
    background: #050505;
}

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

.footer-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.1rem; }
    .btn-telegram { width: 100%; justify-content: center; }
}
