/* header{
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
} */
:root {
    --primary-color: #e63946;
    --secondary-color: #f1faee;
    --accent-color: #a8dadc;
    --dark-color: #1d3557;
    --light-color: #f1faee;
    --highlight-color: #ffbe0b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('../images/main-bg.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #333;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: -1;
}

.info{
    padding: 50px 0;
}

.info h1{
    font-size: 30px;
}

.info h2{
    font-size: 25px;
}

.info h3{
    font-size: 20p;
}

.navbar {
    
    padding: 10px 0;
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    /* color: var(--light-color) !important; */
    font-weight: 500;
    padding: 10px 15px !important;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--highlight-color) !important;
    transform: translateY(-2px);
}

.btn-custom {
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    border: none;
    color: white;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
    color: white;
}

.btn-secondary-custom {
    background: linear-gradient(135deg, var(--dark-color), #457b9d);
    border: none;
    color: white;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(29, 53, 87, 0.4);
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 53, 87, 0.6);
    color: white;
}


.hero-section {
    background: url('../images/banner.png') no-repeat center center;
    background-size: cover;
    height: 700px;
    position: relative;
    color: white;
    text-align: center;
}

.hero-section.cust{
    background: url('../images/main-bg.png') center no-repeat;
    background-size: cover;
    height: auto;
    padding:  0;
}


.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.about-section {
    padding: 80px 0;
}

.about-img {

    transition: transform 0.3s;
}

.important {
    display: flex;

    margin-bottom: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.important img{
    max-height: 40px;
    height: auto;
    max-width: 200px;
    width: auto;
}

.important a{
    margin: 0 10px 5px 0!important;
}

.about-img:hover {
    transform: scale(1.02);
}

.footer-disc a{
    color: #fff;
}

.section-title.cust{
    text-align: left;
}

.section-title.cust:after{
    margin: 15px 0;
}

.section-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: block;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    margin: 15px auto 15px auto;
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}


.features-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

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

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

.feature-title {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 15px;
}


.how-to-play {
    padding: 80px 0;
}

.step-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--highlight-color);
}

.step-number {
    background-color: var(--highlight-color);
    color: white;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}


.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(168, 218, 220, 0.2);
    color: var(--primary-color);
}


.results-section {
    padding: 80px 0;
}

.results-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
}


.help-section {
    padding: 80px 0;
}

.help-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}


.footer {
    background: linear-gradient(135deg, var(--dark-color), #0a192f);
    color: white;
    padding: 50px 0 20px;
}

.footer-logo img {
    height: 70px;
}

.footer-links h5 {
    color: var(--highlight-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--highlight-color);
    transform: translateX(5px);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
}


.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    border: none;
}

.modal-body {
    padding: 30px;
}

.form-control {
    border-radius: 50px;
    padding: 12px 20px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.25);
}


@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-section {
        height: 500px;
    }
    .btn-custom{
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-section {
        height: 400px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-custom, .btn-secondary-custom {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    .hero-section {
        height: 260px;
    }
}