body {
    font-family: 'Inter';
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
    position: relative;
    padding-top: 5rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-cta {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #333 !important;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.feature-card, .bonus-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
}

.feature-card:hover, .bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.cta-section-1 {
    background: linear-gradient(90deg, #0d6efd 0%, #17a2b8 100%);
    padding: 6rem 0;
}

.cta-section-2 {
    background: #212529;
    padding: 6rem 0;
}

.cta-btn-light {
    font-weight: bold;
    border-radius: 0.5rem;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.cta-btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.cta-btn-success {
    font-weight: bold;
    border-radius: 0.5rem;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.cta-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
