* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0e17;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #e5c063;
    transition: color 0.3s ease;
}

a:hover {
    color: #f1d483;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: #151c28;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 38px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login {
    background-color: transparent;
    border: 2px solid #e5c063;
    color: #e5c063;
}

.btn-login:hover {
    background-color: rgba(229, 192, 99, 0.1);
}

.btn-register {
    background-color: #e5c063;
    border: 2px solid #e5c063;
    color: #0a0e17;
}

.btn-register:hover {
    background-color: #f1d483;
    border-color: #f1d483;
}

.hero {
    position: relative;
    height: 75vh;
    max-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 14, 23, 0.7), rgba(21, 28, 40, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 30px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #e5c063;
}

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

.btn-hero {
    background-color: #e5c063;
    color: #0a0e17;
    padding: 15px 40px;
    border-radius: 3px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(229, 192, 99, 0.3);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #f1d483;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(229, 192, 99, 0.4);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: #e5c063;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e5c063;
    border-radius: 1.5px;
}

.live-casino {
    background-color: #0f1621;
}

.live-casino-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.live-casino-image {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.live-casino-image img {
    width: 100%;
    height: auto;
    display: block;
}

.live-casino-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 14, 23, 0.8), transparent);
}

.live-casino-text h3 {
    font-size: 2.2rem;
    color: #e5c063;
    margin-bottom: 25px;
}

.live-casino-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.live-casino-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(229, 192, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5c063;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.3rem;
    color: #e5c063;
    margin-bottom: 10px;
}

.live-games {
    background-color: #0a0e17;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #1f2937;
}

.tab-btn {
    padding: 15px 30px;
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e5c063;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: #e5c063;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.game-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.game-card img {
    width: 100%;
    height: auto;
    display: block;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 14, 23, 0.9), rgba(10, 14, 23, 0.7), transparent);
    transform: translateY(70%);
    transition: transform 0.3s ease;
}

.game-card:hover .game-overlay {
    transform: translateY(0);
}

.game-overlay h4 {
    font-size: 1.3rem;
    color: #e5c063;
    margin-bottom: 10px;
}

.game-overlay p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.game-card:hover .game-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.btn-play {
    background-color: #e5c063;
    color: #0a0e17;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

.game-card:hover .btn-play {
    opacity: 1;
    transform: translateY(0);
}

.btn-play:hover {
    background-color: #f1d483;
}

.ready-to-play {
    background-color: #0f1621;
    text-align: center;
}

.ready-content {
    max-width: 800px;
    margin: 0 auto;
}

.ready-content h3 {
    font-size: 2.5rem;
    color: #e5c063;
    margin-bottom: 25px;
}

.ready-content p {
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.btn-ready {
    background-color: #e5c063;
    color: #0a0e17;
    padding: 15px 40px;
    border-radius: 3px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(229, 192, 99, 0.3);
    transition: all 0.3s ease;
}

.btn-ready:hover {
    background-color: #f1d483;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(229, 192, 99, 0.4);
}

/* Footer Styles */
footer {
    background-color: #0a0e17;
    padding: 50px 0 20px;
    border-top: 1px solid #1f2937;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.5rem;
    color: #e5c063;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5c063;
}

.payment-methods, .game-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.payment-methods img, .game-providers img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.payment-methods img:hover, .game-providers img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1f2937;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .live-casino-content {
        grid-template-columns: 1fr;
    }
    
    .live-casino-image {
        order: -1;
    }
    
    .ready-content h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ready-content h3 {
        font-size: 2rem;
    }
    
    .ready-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .header-buttons .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .live-casino-text h3 {
        font-size: 1.8rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .ready-content h3 {
        font-size: 1.8rem;
    }
    
    .btn-ready {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}