:root {
    --primary: #e63946;
    --secondary: #457b9d;
    --accent: #f4a261;
    --dark: #1d3557;
    --light: #f1faee;
    --success: #2a9d8f;
}
.icon-3{width: 38%;
    height: 75px;
    object-fit: contain;}
.clr-white{color: white;}
.pages{
    padding: 26px 15px;
}

.pages h1{
    font-size: 29px;
}

.pages h2{
    font-size: 23px;
}

.pages h3{
    font-size: 20px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: url('../images/bg.jpg') center bottom fixed;
    background-size: cover;
    color: #333;
    line-height: 1.6;
}

.container-main {
    max-width: 990px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #90D1CA;
}


.header {
    background: linear-gradient(135deg, #096B68, #35c6bc);
    padding: 15px 0;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo span {
    color: var(--light);
}

.btn-auth {
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-login {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-login:hover {
    background-color: white;
    color: black;
}

.btn-register {
    background-color: #90D1CA;
    border: 2px solid #90D1CA;
    color: white;
}

.btn-register:hover {
    background-color: #e76f51;
    border-color: #e76f51;
}


.main-nav {
    background-color: #90D1CA;
}

.main-nav a {
    color: white;
    font-weight: 500;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.footer-imp a{
    color: #fff;
}

.footer-soc{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0 25px 0;
}

.footer-soc img{
    max-width: 200px;
    width: auto;
    max-height: 46px;
    height: auto;
    margin: 0 10px;
    filter: brightness(0) invert(1);
}

.hero {
    background: url('../images/img1.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    position: relative;
    color: white;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #90D1CAbd;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background-color: #096B68;
    color: white;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: #e76f51;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.about {
    padding: 80px 0;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content {
    padding-left: 40px;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}


.features {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: center;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #90D1CA;
}


.results {
    padding: 80px 0;
}

.results-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.results-table th {
    background-color: #90D1CA;
    color: white;
    font-weight: 500;
}

.results-table td {
    vertical-align: middle;
}

.ball {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: radial-gradient(circle at 30% 30%, #fff, var(--primary));
    border-radius: 50%;
    color: white;
    font-weight: bold;
    margin-right: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}


.faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.accordion-button {
    font-weight: 600;
    padding: 15px 20px;
    background-color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    background-color: var(--light);
    color: #90D1CA;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(233, 57, 70, 0.25);
}


.how-to-play {
    padding: 80px 0;
}

.step {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 20px;
}

.step-content h4 {
    margin-bottom: 10px;
}


.support {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.support-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.support-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}


.footer {
    background-color: #90D1CA;
    color: white;
    padding: 50px 0 20px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links h5 {
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    color: #ddd;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    text-decoration: none;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaa;
}


.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
}

.modal-body {
    padding: 30px;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(233, 57, 70, 0.25);
}

.btn-submit {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #c1121f;
}

.success-message {
    text-align: center;
    padding: 30px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}


@media (max-width: 991.98px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .logo {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .btn-auth {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .main-nav a {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}