/* 63BOSS - Premier Online Gaming Website CSS */

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 70px 0;
}

/* Button Styles */
.btn-play, .btn-more, .btn-register-large, .btn-register-now, .btn-login, .btn-register, .btn-android, .btn-ios {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play, .btn-more {
    background-color: #ff0036;
    color: #fff;
    border: 2px solid #ff0036;
}

.btn-play:hover, .btn-more:hover {
    background-color: transparent;
    color: #ff0036;
}

.btn-register-large, .btn-register-now {
    background-color: #ffb700;
    color: #333;
    border: 2px solid #ffb700;
    font-size: 1.2rem;
    padding: 14px 30px;
}

.btn-register-large:hover, .btn-register-now:hover {
    background-color: transparent;
    color: #ffb700;
}

.btn-login, .btn-register {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-login:hover {
    background-color: #fff;
    color: #172b88;
}

.btn-register {
    background-color: #ffb700;
    border-color: #ffb700;
    color: #333;
    margin-left: 10px;
}

.btn-register:hover {
    background-color: transparent;
    color: #ffb700;
}

.btn-android, .btn-ios {
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    border: 2px solid #333;
    margin-right: 10px;
}

.btn-android i, .btn-ios i {
    margin-right: 8px;
}

.btn-android:hover, .btn-ios:hover {
    background-color: transparent;
    color: #333;
}

/* Header Styles */
header {
    background-color: #172b88;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #fff;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffb700;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.auth-buttons {
    display: flex;
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.dots {
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #fff;
}

/* Game Categories Section */
.game-categories {
    background-color: #fff;
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.category-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .card-image img {
    transform: scale(1.1);
}

.category-card h3 {
    padding: 15px 0;
    font-size: 1.2rem;
}

.category-card .btn-play {
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Popular Games Section */
.popular-games {
    background-color: #f7f7f7;
    padding: 80px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffb700;
    color: #333;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.game-details {
    margin-bottom: 20px;
}

.game-details p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    background-color: #fff;
    padding: 80px 0;
}

.features-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.features-content p {
    margin-bottom: 30px;
}

.features-content h3 {
    margin-top: 40px;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #172b88;
    margin-bottom: 20px;
}

.feature h4 {
    margin-bottom: 15px;
}

.feature p {
    font-size: 0.95rem;
    color: #666;
}

/* Casino Games Section */
.casino-games {
    background-color: #f7f7f7;
    padding: 80px 0;
}

.casino-games .games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.game-type {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.game-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.game-type .game-image {
    height: 100%;
}

.game-content {
    padding: 30px;
}

.game-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.game-content p {
    margin-bottom: 20px;
    color: #666;
}

.btn-more {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background-color: #fff;
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    margin-bottom: 0;
}

.toggle-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Registration CTA Section */
.registration-cta {
    background: linear-gradient(to right, #172b88, #3f51b5);
    color: #fff;
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
}

.cta-content p {
    margin-bottom: 30px;
}

/* Why Choose Section */
.why-choose {
    background-color: #f7f7f7;
    padding: 80px 0;
}

.why-choose p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-banner {
    background-color: #172b88;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
}

.cta-banner p {
    margin-bottom: 20px;
}

/* Registration Steps Section */
.registration-steps {
    background-color: #fff;
    padding: 80px 0;
}

.registration-steps p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    align-items: flex-start;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    background-color: #172b88;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
}

.registration-tips {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.registration-tips h3 {
    margin-bottom: 20px;
}

.registration-tips ul {
    padding-left: 20px;
}

.registration-tips ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* App Download Section */
.app-download {
    background: linear-gradient(to right, #172b88, #3f51b5);
    color: #fff;
    padding: 80px 0;
}

.app-download .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.download-content h2 {
    color: #fff;
    text-align: left;
}

.download-options {
    display: flex;
    margin-bottom: 30px;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.app-features .feature {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.app-features .feature-icon {
    color: #ffb700;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.app-features p {
    color: #fff;
    margin-bottom: 0;
}

.download-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Footer Section */
footer {
    background-color: #172b88;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 50px;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ffb700;
    color: #333;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #ffb700;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
}

.footer-column ul li a:hover {
    color: #ffb700;
}

.payment-icons, .security-icons {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.payment-icons img, .security-icons img {
    height: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-type {
        grid-template-columns: 1fr;
    }
    
    .game-type .game-image {
        height: 200px;
    }
    
    .app-download .container {
        grid-template-columns: 1fr;
    }
    
    .download-image {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }
    
    nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .auth-buttons {
        margin-left: auto;
    }
    
    
    .slide-content {
        margin-left: 5%;
        max-width: 90%;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-banner {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .btn-play, .btn-more, .btn-register-large, .btn-register-now {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 50px 0;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Page Banner Styles */
.page-banner {
    height: 300px;
    background: linear-gradient(to right, #172b88, #3f51b5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.page-banner .banner-content {
    color: #fff;
    padding: 0 20px;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.breadcrumbs {
    font-size: 1rem;
}

.breadcrumbs a {
    color: #ffb700;
    text-decoration: none;
}

.breadcrumbs span {
    color: #fff;
}

/* Intro Section Styles */
.intro-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.intro-section p {
    max-width: 900px;
    margin: 0 auto;
}

/* Game Providers Section */
.game-providers {
    background-color: #f7f7f7;
    padding: 60px 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.provider-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.provider-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f8f8f8;
}

.provider-logo img {
    max-height: 80px;
    max-width: 100%;
}

.provider-card h3 {
    padding: 15px;
    margin-bottom: 0;
}

.provider-card .btn-play {
    margin: 0 auto 20px;
    display: inline-block;
}

/* Slots Features Section */
.slots-features, .live-casino-features {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.slots-image, .features-image {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Slots Types Section */
.slots-types {
    background-color: #f7f7f7;
    padding: 60px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.type-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.type-icon {
    font-size: 2.5rem;
    color: #ff0036;
    margin-bottom: 20px;
}

.type-card h3 {
    margin-bottom: 15px;
}

.type-card p {
    color: #666;
}

/* Why Play Section */
.why-play {
    background-color: #fff;
    padding: 60px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.reason {
    text-align: center;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.reason:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    font-size: 2.5rem;
    color: #ffb700;
    margin-bottom: 20px;
}

.reason h3 {
    margin-bottom: 15px;
}

.reason p {
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #172b88, #3f51b5);
    color: #fff;
    padding: 60px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
}

.cta-content p {
    margin-bottom: 30px;
}

/* Benefits Section */
.benefits-section {
    background-color: #f7f7f7;
    padding: 60px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #172b88;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
}

/* Live Casino Categories */
.live-casino-categories .categories-grid {
    grid-template-columns: repeat(5, 1fr);
}

.live-casino-categories .category-card p {
    padding: 0 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Styles for Inner Pages */
@media screen and (max-width: 1024px) {
    .providers-grid,
    .benefits-grid,
    .live-casino-categories .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .types-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .page-banner {
        height: 200px;
        margin-top: 70px;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .types-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .providers-grid,
    .benefits-grid,
    .live-casino-categories .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
}