@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
html,
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #000000;
    position: relative;
}

/* Typography */
h1 {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin: 25px 0;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 30px auto 20px;
    text-align: center;
    border-bottom: 2px solid #FFD700;
    width: fit-content;
    padding-bottom: 10px;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 15px 0;
}

p {
    margin: 15px 0;
    line-height: 1.8;
}

strong {
    font-weight: 600;
    color: #FFD700;
}

/* Lists */
ul,
ol {
    padding: 15px 25px;
    margin: 15px 0;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li {
    margin: 8px 0;
    line-height: 1.8;
}

li::marker {
    color: #FFD700;
    font-weight: 600;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 22px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.btn-1 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

.btn-2 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

.main-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    width: 250px;
    font-weight: 600;
    margin: 20px auto;
    font-size: 18px;
    display: flex;
    color: #000;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    border-bottom: 2px solid #FFD700;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo img {
    width: 200px;
    height: auto;
    max-height: 55px;
    object-fit: contain;
}

.header .auth {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Game Categories Simple - One Row */
.game-categories-simple {
    width: 100%;
    padding: 30px 0;
    background: transparent;
}

.categories-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 100%;
}

.category-item {
    flex: 1;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Video Section */
.video-section {
    width: 100%;
    padding: 20px 0;
    background: transparent;
}

.video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Content */
.main {
    flex: 1 1 auto;
}

.content {
    padding: 30px 0;
}

.content:first-of-type {
    padding: 40px 0 20px 0;
    text-align: center;
}

.content:first-of-type h1 {
    margin-bottom: 25px;
}

.content img {
    display: block;
    margin: 30px auto;
    max-width: 900px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    border: 2px solid #FFD700;
}


/* Providers Section */
.providers {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 25px 0;
}

.providers .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.providers__logo img {
    width: 160px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.providers__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.provider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
}

.provider img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.provider__title {
    font-weight: 500;
    color: #000;
    text-align: center;
    font-size: 12px;
}

/* Footer */
.footer {
    padding: 50px 0 20px;
    background: #000;
    border-top: 3px solid #FFD700;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info p {
    margin: 8px 0;
    font-size: 14px;
    color: #fff;
}

.footer-info .copyright {
    opacity: 0.8;
}

.footer-keywords {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
}

.footer-keywords p {
    margin: 0;
    font-size: 13px;
}

.footer-keywords a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-keywords a:hover {
    color: #FFA500;
    text-decoration: underline;
}

.footer-warning {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-warning p {
    margin: 8px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
        margin: 20px 0;
    }

    h2 {
        font-size: 24px;
        margin: 20px auto 15px;
    }

    h3 {
        font-size: 20px;
    }

    .container {
        width: 95%;
    }

    .header {
        padding: 8px 0;
    }

    .header .container {
        gap: 12px;
    }

    .header .logo img {
        width: 160px;
        max-height: 48px;
    }

    .header .auth {
        gap: 8px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .main-btn {
        width: 200px;
        font-size: 16px;
    }

    .content {
        padding: 30px 0;
    }

    .providers {
        padding: 20px 0;
    }

    .providers .container {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .providers__logo img {
        width: 140px;
        max-height: 44px;
    }

    .providers__icons {
        justify-content: center;
        gap: 15px;
    }

    .provider {
        min-width: 70px;
    }

    .provider img {
        width: 40px;
        height: 40px;
    }

    .provider__title {
        font-size: 11px;
    }

    /* Footer Responsive - Tablet */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    /* Keep 4 categories in one row on mobile with spacing */
    .categories-row {
        gap: 10px;
    }

    .video-section {
        padding: 30px 0;
    }

    .video-container {
        border-radius: 12px;
        border-width: 2px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .header {
        padding: 9px 0;
    }

    .header .logo img {
        width: 180px;
        max-height: 50px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Keep 4 categories in one row on tablet with spacing */
    .categories-row {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    .header {
        padding: 7px 0;
    }

    .header .logo img {
        width: 140px;
        max-height: 42px;
    }

    .header .auth {
        gap: 6px;
    }

    .btn {
        padding: 7px 12px;
        font-size: 11px;
        gap: 5px;
    }

    .btn svg {
        width: 15px;
        height: 15px;
    }

    /* Keep 4 categories in one row even on small mobile with small gap */
    .categories-row {
        gap: 8px;
    }

    .category-item img {
        border-radius: 8px;
    }

    .video-section {
        padding: 20px 0;
    }

    .video-container {
        border-radius: 10px;
    }

    /* Footer Responsive - Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-keywords {
        padding: 12px;
    }

    .footer-keywords p {
        font-size: 12px;
        line-height: 1.8;
    }

    .providers {
        padding: 15px 0;
    }

    .providers .container {
        gap: 15px;
    }

    .providers__logo img {
        width: 120px;
        max-height: 38px;
    }

    .providers__icons {
        gap: 12px;
    }

    .provider {
        min-width: 60px;
    }

    .provider img {
        width: 35px;
        height: 35px;
    }

    .provider__title {
        font-size: 10px;
    }
}