body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #242424;
    color: #f8f9fa;
}

.bg-custom {
    background-color: #4d4d4c !important;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, #fae59f, #c4933f) !important;
}

.navbar-custom {
    background-color: #4d4d4c;
}

.footer-custom {
    background-color: #4d4d4c;
}

.main-content {
    min-height: 60vh;
}

.card {
    background: linear-gradient(135deg, #fae59f, #c4933f);
    color: #242424;
    border: none;
}

.card .text-muted {
    color: #444 !important;
}

.card-img-top {
    object-fit: cover;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    color: #6ea8fe;
    text-decoration: none;
}

a:hover {
    color: #8bb9fe;
    text-decoration: underline;
}

.text-muted {
    color: #adb5bd !important;
}

/* Hero Video Background Styles */
.hero-section {
    position: relative;
    background-color: #242424; /* Fallback color */
    height: 50vh; /* Reduced height */
    min-height: 350px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the area without distortion */
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker tint for better text visibility */
    z-index: 1;
}

/* Mobile Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        height: 40vh; /* Smaller on mobile */
        min-height: 250px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
    }
    
    .hero-section .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}


/* FAQ Accordion Styles */
.accordion-button:not(.collapsed) {
    color: #fae59f;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-button {
    color: #fff;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-item {
    border-color: rgba(255, 255, 255, 0.1);
}


/* Recharge Guide Steps */
.step {
    position: relative;
    padding-left: 25px;
    border-left: 3px solid #fae59f;
    margin-left: 10px;
}


/* Mobile Gift Code Truncation */
@media (max-width: 768px) {
    .gift-code-display {
        display: inline-block;
        max-width: 12ch;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
        margin-bottom: -5px;
    }
}
