:root {
    --primary: #3b9eff;
    --gradient-primary: linear-gradient(180deg, #05a0f7 -63.54%, #2d4fff 173.96%);
    --gradient-hover: linear-gradient(180deg, #048bd8 -63.54%, #2540e0 173.96%);
    --gradient-secondary: linear-gradient(180deg, #e30077 -63.54%, #9d0052 173.96%);
    --gradient-secondary-hover: linear-gradient(180deg, #cc006a -63.54%, #8a0048 173.96%);
    --background-dark: #000000;
    --text-color: #FFFFFF;
    --bs-heading-color: #fff;
}

body {
    background-color: #0c0c10;
}

p {
    color: #fff;
}

.navbar {
    background: var(--background-dark);
}

.navbar-brand,
.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
}

.hero-section {
    background: url('/static/assets/bg.webp') no-repeat center center;
    background-size: cover;
    color: var(--text-color);
    padding: 80px 0;
    text-align: center;
}

.section-title {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.feature-box {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 25px 15px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.btn-success {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: var(--gradient-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 158, 255, 0.3);
}

.btn-secondary {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gradient-secondary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 0, 119, 0.3);
}

/* For specific play/action buttons that need the primary solid color */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #2a8ae6;
    border-color: #2a8ae6;
}

footer {
    background: var(--background-dark);
    color: var(--text-color);
    padding: 40px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.section-content {
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-solid {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-solid:hover {
    background-color: #2a8ae6;
    border-color: #2a8ae6;
}