:root {
    /* Gaming Colors - Wolfz Theme */
    --primary: #FF3333;
    --primary-dark: #CC0000;
    --primary-light: #FF5555;
    --secondary: #1a1a1a;
    --dark: #0a0a0a;
    --gray: #2a2a2a;
    --gray-light: #3a3a3a;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --accent: #00D9FF;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    --card-padding: 30px;
    
    /* Effects */
    --shadow-glow: 0 0 40px rgba(255, 51, 51, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 51, 51, 0.2);
    padding: 20px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.5));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-btn {
    display: inline-flex;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text);
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 51, 51, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gray);
    color: var(--text);
    border-color: var(--gray-light);
}

.btn-secondary:hover {
    background: var(--gray-light);
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--gray-light);
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 51, 51, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 51, 51, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.glow-1 {
    background: var(--primary);
    top: -200px;
    left: -200px;
}

.glow-2 {
    background: var(--accent);
    bottom: -200px;
    right: -200px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.hero-features {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.5));
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 18px;
    color: var(--text);
}

.feature-text span {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.5s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-card {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 51, 51, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

.hero-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 51, 51, 0.6));
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--gray);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    padding: var(--card-padding);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, var(--gray) 100%);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.pricing-card.elite {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, var(--gray) 100%);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: var(--text);
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(255, 51, 51, 0.5);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.5));
}

.card-title {
    font-size: 32px;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.card-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 18px;
    color: var(--text-muted);
}

.price-annual {
    margin-top: 8px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.card-features {
    list-style: none;
    margin-bottom: 30px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
}

.card-features li:last-child {
    border-bottom: none;
}

.check-icon {
    flex-shrink: 0;
    stroke: var(--primary);
}

.benefits-banner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    background: rgba(255, 51, 51, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 51, 51, 0.2);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.benefit-icon {
    color: var(--primary);
    font-size: 20px;
}

/* Why Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--gray);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    padding: var(--card-padding);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.feature-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.5));
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 51, 51, 0.3);
}

.cta-box h3 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Timeline Section */
.timeline-section {
    background: var(--secondary);
}

.timeline-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-card {
    background: var(--gray);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    padding: var(--card-padding);
    transition: var(--transition);
}

.timeline-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.timeline-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.timeline-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.timeline-detail strong {
    color: var(--primary);
    font-size: 18px;
    display: block;
    margin-bottom: 12px;
}

.timeline-detail p {
    color: var(--text-muted);
    line-height: 1.8;
}

.process-list {
    list-style: none;
    padding: 0;
}

.process-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list strong {
    color: var(--primary);
}

.info-box {
    background: rgba(255, 51, 51, 0.05);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.info-box p {
    color: var(--text-muted);
    margin: 0;
}

.info-box strong {
    color: var(--text);
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: var(--gray);
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
}

.discord-logo {
    margin-bottom: 30px;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-card > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.discord-btn {
    margin-bottom: 20px;
}

.contact-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--secondary);
    border-top: 1px solid rgba(255, 51, 51, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.5));
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact li {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu,
    .nav-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .visual-card {
        width: 300px;
        height: 300px;
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .benefits-banner {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h3 {
        font-size: 28px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease;
}

/* Smooth Scrolling */
html {
    scroll-padding-top: 100px;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--text);
}