:root {
    --primary: #f2a900;
    --secondary: #0d1117;
    --accent: #00bfff;
    --light: #f5f5f7;
    --dark: #0a0a0a;
    --text: #333333;
    --text-light: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--secondary);
    color: var(--light);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #0d1117 0%, #1a1f25 100%);
    position: relative;
    overflow: hidden;
}

#hero .display-4 {
    font-weight: 800;
}

/* Features Section */
#features {
    background-color: #121212;
}

#features .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(30, 30, 30, 0.8);
}

#features .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(242, 169, 0, 0.3);
}

/* Stats Section */
#stats {
    background: linear-gradient(135deg, #1a1f25 0%, #0d1117 100%);
}

/* How It Works */
#how-it-works {
    background-color: var(--secondary);
}

.step-number {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 1.8rem;
    font-weight: 700;
}

/* CTA Section */
#cta {
    background: linear-gradient(135deg, #f2a900 0%, #ff8c00 100%);
    color: var(--dark);
}

#cta .btn-light {
    color: var(--dark);
    font-weight: 700;
    transition: all 0.3s ease;
}

#cta .btn-light:hover {
    background-color: var(--dark);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #000;
}

footer a:hover {
    color: var(--primary) !important;
}

/* Feature Icons */
.feature-icon {
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero {
        text-align: center;
    }
    
    #hero .display-4 {
        font-size: 2.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.5rem;
    }
}