/* ===== STRIKE ONLINE - Aggressive Luxury Theme ===== */
/* Power • Speed • Money • Victory */

:root {
    /* Gold & Luxury Colors */
    --gold-primary: #FFD700;
    --gold-light: #FFED4A;
    --gold-dark: #B8860B;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    
    /* Aggressive Red Accents */
    --red-primary: #FF0033;
    --red-dark: #CC0029;
    --red-glow: rgba(255, 0, 51, 0.5);
    
    /* Dark Luxury Background */
    --black-pure: #000000;
    --black-rich: #0A0A0A;
    --black-card: #111111;
    --black-elevated: #1A1A1A;
    --black-border: #2A2A2A;
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-gray: #888888;
    --text-muted: #555555;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    --gradient-red: linear-gradient(135deg, #FF0033 0%, #FF6600 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    --gradient-card: linear-gradient(145deg, #1A1A1A 0%, #0A0A0A 100%);
    
    /* Shadows */
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    --shadow-red: 0 0 30px rgba(255, 0, 51, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--black-pure);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-dark);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gold-primary);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 100px 20px 50px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--black-pure);
    padding: 10px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 50px rgba(255, 215, 0, 0.3); }
    50% { text-shadow: 0 0 80px rgba(255, 215, 0, 0.5); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black-pure);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--gold-primary);
    clip-path: none;
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--black-pure);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--black-pure);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
}

.btn-large {
    padding: 20px 60px;
    font-size: 1.1rem;
}

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-primary);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.stat-unit {
    font-size: 1.5rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--gold-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-primary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Section Styling ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--black-elevated);
    border: 1px solid var(--gold-dark);
    color: var(--gold-primary);
    padding: 8px 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* ===== Features Section ===== */
.features {
    background: var(--gradient-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--black-border);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--black-elevated);
    border: 2px solid var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--red-primary);
}

/* ===== How It Works Section ===== */
.how-it-works {
    background: var(--black-rich);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--gradient-card);
    border: 1px solid var(--black-border);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-card::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--black-pure);
    padding: 5px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.step-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.step-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===== Rates Section ===== */
.rates {
    background: var(--gradient-dark);
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.rate-card {
    background: var(--gradient-card);
    border: 2px solid var(--black-border);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.rate-card.featured {
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

.rate-card:hover {
    border-color: var(--gold-primary);
    transform: scale(1.02);
}

.rate-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--black-pure);
    padding: 8px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.rate-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin: 20px 0;
}

.rate-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.rate-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.rate-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--black-border);
    color: var(--text-gray);
}

.rate-features li i {
    color: var(--gold-primary);
    margin-right: 10px;
}

/* ===== Crypto Section ===== */
.crypto {
    background: var(--black-rich);
    padding: 80px 0;
}

.crypto-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.crypto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 40px;
    background: var(--black-elevated);
    border: 1px solid var(--black-border);
    transition: all 0.3s ease;
}

.crypto-item:hover {
    border-color: var(--gold-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.crypto-item i {
    font-size: 2.5rem;
    color: var(--gold-primary);
}

.crypto-item span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--black-rich) 0%, #1a0a00 100%);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--gradient-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background: var(--gradient-card);
    border: 1px solid var(--black-border);
    padding: 40px;
    text-align: center;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.contact-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gold-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--black-pure);
    padding: 40px 0;
    border-top: 1px solid var(--black-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    opacity: 0.7;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.footer-links a {
    color: var(--gold-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 0.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ===== Animations ===== */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
}

.btn-gold {
    animation: pulse 2s infinite;
}
