/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1A1A1F;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #13131c;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FF6B35;
}

.nav-link:hover::after {
    width: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.mobile-logo {
    display: none;
}

.desktop-logo {
    display: block;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.login-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.login-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.login-link:hover {
    color: #ffffff;
    background-color: #FF6B35;
    border-color: #FF6B35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6), 0 4px 15px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.login-link:hover::before {
    left: 100%;
}

.register-btn {
    background: linear-gradient(135deg, #FF6B35, #FF8A4C);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.register-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.register-btn:hover {
    background: linear-gradient(135deg, #FF8A4C, #FFA270);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.8), 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.register-btn:hover::before {
    width: 300px;
    height: 300px;
}

.register-btn:hover::after {
    left: 100%;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 40px 0;
    background-color: #1A1A1F;
}

/* Hero Banner */
.hero-banner {
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 12px;
}

.banner-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 80%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    margin: 0 auto;
}

.banner-link:hover .banner-img {
    transform: scale(1.05);
}

.content-article {
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
    line-height: 1.8;
}

.article-h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF6B35, #FF8A4C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #cccccc;
}

.article-h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #FF6B35;
    border-left: 4px solid #FF6B35;
    padding-left: 15px;
}

.article-h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #FF8A4C;
}

.article-list {
    margin: 15px 0;
    padding-left: 25px;
}

.article-list li {
    margin-bottom: 10px;
    color: #cccccc;
}

.content-article p {
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 16px;
}

.content-article strong {
    color: #cccccc;
    font-weight: 600;
}

.article-link {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #FF6B35;
    font-weight: 600;
}

.article-link strong {
    color: #FF6B35;
}

.article-link:hover {
    color: #FF8A4C;
    text-decoration: underline;
}

.article-link:hover strong {
    color: #FF8A4C;
    text-decoration: underline;
}

.article-cta {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(156, 39, 176, 0.1));
    border-left: 4px solid #FF6B35;
    border-radius: 8px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #FF8A4C);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF8A4C, #FFA270);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.8), 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

/* Article CTA Banner */
.article-cta-banner {
    margin: 30px 0;
    text-align: center;
}

.cta-banner-link {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #FF8A4C);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-banner-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-banner-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.8s ease, height 0.8s ease;
}

.cta-banner-link:hover {
    background: linear-gradient(135deg, #FF8A4C, #FFA270);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.9), 0 8px 25px rgba(255, 107, 53, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.cta-banner-link:hover::before {
    left: 100%;
}

.cta-banner-link:hover::after {
    width: 400px;
    height: 400px;
}

/* Footer Styles */
.footer {
    background-color: #13131c;
    padding: 40px 0;
    margin-top: auto;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section:last-child {
    margin-bottom: 0;
}

/* Footer Top */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-left,
.footer-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.footer-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

/* Language Select */
.language-select {
    background-color: #FF6B35;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
}

.language-select:hover {
    background-color: #FF8A4C;
}

/* Age Restriction */
.age-restriction {
    width: 40px;
    height: 40px;
    border: 2px solid #aaaaaa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #aaaaaa;
}

/* Provider Buttons */
.payment-providers,
.game-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

/* Payment Buttons - Green glow effect */
.payment-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(56, 142, 60, 0.2));
    color: #81C784;
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
}

.payment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(129, 199, 132, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-btn:hover {
    background-color: rgba(76, 175, 80, 0.4);
    border-color: #4CAF50;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.7), 0 4px 15px rgba(46, 125, 50, 0.3);
    transform: translateY(-2px);
}

.payment-btn:hover::before {
    opacity: 1;
}

.payment-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.payment-btn:hover::after {
    left: 100%;
}

/* Game Provider Buttons - Orange/Purple gradient effect */
.game-provider-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(156, 39, 176, 0.2));
    color: #FF8A65;
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.15);
}

.game-provider-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(156, 39, 176, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-provider-btn:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.5), rgba(156, 39, 176, 0.5));
    border-color: #FF6B35;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.7), 0 0 45px rgba(156, 39, 176, 0.5), 0 4px 15px rgba(156, 39, 176, 0.3);
    transform: scale(1.05);
}

.game-provider-btn:hover::before {
    opacity: 1;
}

.game-provider-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.game-provider-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background-color: #aaaaaa;
    margin: 30px 0;
    opacity: 0.3;
}

/* Copyright Section */
.copyright-section {
    background-color: #13131c;
    padding: 20px 0;
}

.copyright-divider {
    height: 1px;
    background-color: #aaaaaa;
    margin-bottom: 20px;
    opacity: 0.3;
}

.copyright-text {
    text-align: center;
    color: #aaaaaa;
    font-size: 14px;
}

.copyright-text p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        gap: 15px;
    }

    .header-actions {
        gap: 10px;
    }

    .login-link {
        padding: 10px 15px;
        font-size: 14px;
        white-space: nowrap;
    }

    .register-btn {
        padding: 10px 20px;
        font-size: 14px;
        white-space: nowrap;
    }

    .header-nav {
        display: none;
    }

    .nav-link {
        font-size: 14px;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    .logo-img {
        height: 50px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-center {
        width: 100%;
    }

    .payment-providers,
    .game-providers {
        gap: 10px;
    }

    .payment-btn,
    .game-provider-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .article-h1 {
        font-size: 28px;
    }

    .article-h2 {
        font-size: 22px;
    }

    .article-h3 {
        font-size: 18px;
    }

    .content-article p {
        font-size: 14px;
    }

    .banner-img {
        width: 100%;
    }

    .hero-banner {
        margin-bottom: 20px;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .login-link {
        padding: 12px 18px;
        font-size: 15px;
        white-space: nowrap;
    }

    .register-btn {
        padding: 12px 22px;
        font-size: 15px;
        white-space: nowrap;
    }

    .payment-btn,
    .game-provider-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}


/* Tables Styles */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.content-table thead {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(156, 39, 176, 0.2));
}

.content-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: #FF8A4C;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.content-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.content-table tbody tr:hover {
    background: rgba(255, 107, 53, 0.1);
    transition: background 0.3s ease;
}

.content-table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 20px;
    border-left: 3px solid #FF6B35;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-left-color: #FF8A4C;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #FF8A4C;
    margin-bottom: 10px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #FF6B35;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: #13131c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    padding-left: 30px;
}

/* Footer Navigation */
.footer-nav-section {
    text-align: center;
    padding: 20px 0;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.footer-nav-link:hover {
    color: #FF6B35;
}

.footer-nav-link:hover::after {
    width: 100%;
}

/* Mobile Responsive Updates */
@media (max-width: 968px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .content-table {
        font-size: 12px;
    }
    
    .content-table th,
    .content-table td {
        padding: 8px 6px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .footer-navigation {
        flex-direction: column;
        gap: 10px;
    }
}