/* Root Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --gold: #d4c4a8;
    --gold-dark: #a88f62;
    --gold-light: #f0e6d0;
    --border-color: rgba(168, 143, 98, 0.3);
    --glass-bg: rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: var(--text-primary);
    overflow-x: hidden;
}

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

/* ==================== NAVIGATION ==================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.telegram-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.telegram-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 143, 98, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

/* ==================== SECTIONS ==================== */
.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
}

.hero-section .smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.smoke-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0.6;
    filter: sepia(0.4) hue-rotate(10deg) saturate(1.2) brightness(0.9) contrast(0.9);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
}

.hero-content picture {
    display: block;
    margin-bottom: 30px;
}

.main-logo {
    max-width: 800px;
    width: 60vw;
    min-width: 300px;
    height: auto;
    animation: logoGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(180, 140, 60, 0.6));
    transition: transform 0.15s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(180, 140, 60, 0.5)) drop-shadow(0 0 30px rgba(150, 110, 40, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(200, 160, 70, 0.7)) drop-shadow(0 0 50px rgba(180, 130, 50, 0.5));
    }
}

.hero-tagline {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    margin: 10px auto 0;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(168, 143, 98, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 143, 98, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gold);
    color: #000;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}

.services-section .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-section .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.services-section .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
}

.services-section .container {
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(168, 143, 98, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    letter-spacing: 2px;
}

/* ==================== SIGNALS SECTION ==================== */
.signals-section {
    background: #0a0a0a;
}

.signals-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.signals-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.signal-stat {
    text-align: center;
    padding: 30px;
    background: rgba(168, 143, 98, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.signals-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: var(--text-primary);
}

.feature-check {
    color: var(--gold);
    font-size: 24px;
}

/* ==================== INDICATORS SECTION ==================== */
.indicators-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

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

.indicator-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.indicator-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.indicator-logo img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    margin-bottom: 20px;
    object-fit: contain;
    background: rgba(255,255,255,0.05);
    padding: 10px;
}

.indicator-card h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 12px;
}

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

.indicator-features {
    list-style: none;
    margin-bottom: 30px;
}

.indicator-features li {
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.indicator-features li::before {
    content: '✓ ';
    color: var(--gold);
}

/* ==================== PARTNERS SECTION ==================== */
.partners-section {
    background: #0a0a0a;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(168, 143, 98, 0.2);
}

.partner-logo img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    margin-bottom: 16px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    object-fit: contain;
    background: rgba(255,255,255,0.05);
    padding: 8px;
}

/* Exup logo - show only the circle */
.partner-logo img[alt="Exup"],
.indicator-logo img[alt="Exup"] {
    object-fit: cover;
    object-position: left center;
    padding: 0;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
}

.partner-info {
    text-align: center;
}

.partner-info h4 {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.partner-info p {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 12px;
}

.partner-cta {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover .partner-cta {
    opacity: 1;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.contact-card svg {
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--text-primary);
    font-size: 22px;
    margin-bottom: 8px;
}

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

.contact-cta {
    color: var(--gold);
    font-weight: 600;
}

.telegram-card:hover {
    background: rgba(0, 136, 204, 0.1);
}

.youtube-card:hover {
    background: rgba(255, 0, 0, 0.1);
}

.pinterest-card:hover {
    background: rgba(230, 0, 35, 0.1);
}

.instagram-card:hover {
    background: rgba(225, 48, 108, 0.1);
}

.tiktok-card:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

/* ==================== FLOATING TELEGRAM ==================== */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(168, 143, 98, 0.4);
    transition: all 0.3s ease;
    animation: pulse-btn 2s infinite;
}

.floating-telegram:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(168, 143, 98, 0.6);
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 8px 30px rgba(168, 143, 98, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(168, 143, 98, 0.7); }
}

/* ==================== MUSIC BUTTON ==================== */
.music-btn {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 100;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--border-color);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.music-btn:hover {
    border-color: var(--gold);
    transform: scale(1.1);
}

.music-btn.playing {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(168, 143, 98, 0.4);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .signals-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .main-logo {
        width: 80vw;
    }
    
    .telegram-cta {
        display: none;
    }
    
    .floating-telegram span {
        display: none;
    }
    
    .floating-telegram {
        padding: 16px;
        border-radius: 50%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
