/* Global Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, #FF416C 0%, #FF4B2B 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.promo-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-text strong {
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 5px;
}

.promo-timer {
    opacity: 0.9;
    font-size: 0.8rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 10px;
    margin-left: 10px;
}

.promo-actions {
    display: flex;
    gap: 10px;
}

.promo-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: background 0.3s;
}

.promo-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.promo-btn.discord {
    background: #5865F2;
}

.promo-btn.discord:hover {
    background: #4752C4;
}

@media (max-width: 768px) {
    .promo-banner .container {
        justify-content: center;
        text-align: center;
    }

    .promo-timer {
        display: none;
    }
}

/* Homepage Styles - Replaces inline styles */
:root {
    --primary: #7B2CBF;
    --primary-dark: #5A189A;
    --secondary: #00D9FF;
    --accent: #FF006E;
    --dark: #0A0E27;
    --dark-light: #1A1F3A;
    --text: #E8E9F3;
    --text-muted: #9CA3AF;
    --card-border: rgba(123, 44, 191, 0.2);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top center, #1e1b4b 0%, var(--dark) 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/grid-pattern.png') center/cover opacity 0.1;
    /* Placeholder pattern */
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(123, 44, 191, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.title-main {
    display: block;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-sub {
    display: block;
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.6);
}

.btn-discord {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
    border: 1px solid #5865F2;
}

.btn-discord:hover {
    background: #5865F2;
    color: white;
    transform: translateY(-5px);
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--dark-light);
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(123, 44, 191, 0.1), transparent);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(123, 44, 191, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient);
    color: white;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.card-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Features Section */
.features {
    background: #0f1219;
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(145deg, #111520, #0d1017);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-highlight {
    margin-top: 1.5rem;
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(10, 14, 39, 0.9), rgba(10, 14, 39, 0.9)), url('../images/cta-bg.jpg') center/cover fixed;
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: white;
}

.btn-cta-primary {
    background: white;
    color: var(--primary);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s;
}

.btn-cta-primary:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }
}