/* 
* Vipzino Casino - Main Stylesheet
* Theme: Premium Online Casino
* Colors:
* - Background: #000000
* - Neutral: #1c1c1c
* - Secondary: #CAAA3B (Gold)
* - Primary: #ffffff
*/

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 10px base for easier rem calculations */
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: #CAAA3B;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Remove default list styles for navigation and feature lists */
.menu,
.social-links,
.footer-links,
.app-features,
.browser-features,
.mobile-promos,
.security-features,
.exclusion-options,
.limit-options,
.compliance-features,
.login-features,
.bonus-claim-steps,
.support-channels {
    list-style: none;
    padding-left: 0;
}

/* List styles for content lists */
.app-features li,
.browser-features li,
.mobile-promos li,
.security-features li,
.exclusion-options li,
.limit-options li,
.compliance-features li,
.login-features li,
.bonus-claim-steps li,
.support-channels li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.app-features li::before,
.browser-features li::before,
.mobile-promos li::before,
.security-features li::before,
.exclusion-options li::before,
.limit-options li::before,
.compliance-features li::before,
.login-features li::before,
.bonus-claim-steps li::before,
.support-channels li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 1rem;
    height: 1rem;
    background-color: #CAAA3B;
    border-radius: 50%;
}

/* Ordered lists */
.registration-steps,
.deposit-steps,
.withdrawal-steps {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.registration-steps li,
.deposit-steps li,
.withdrawal-steps li {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.2rem;
}

.registration-steps li::before,
.deposit-steps li::before,
.withdrawal-steps li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #CAAA3B;
    color: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #ffffff;
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.6rem;
}

.highlight {
    color: #CAAA3B;
    font-weight: 700;
}

/* Font Awesome Icons */
.fa-solid {
    color: #CAAA3B;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: #1c1c1c;
    border-radius: 4px;
    overflow: hidden;
}

th {
    background-color: #CAAA3B;
    color: #000000;
    font-weight: 700;
    text-align: left;
    padding: 1.2rem;
}

td {
    padding: 1.2rem;
    border-bottom: 1px solid #2a2a2a;
}

tr:last-child td {
    border-bottom: none;
}

.table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.full-width {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #CAAA3B;
    color: #000000;
}

.btn-primary:hover {
    background-color: #d5b854;
    color: #000000;
}

.btn-secondary {
    background-color: #1c1c1c;
    color: #ffffff;
    border: 1px solid #CAAA3B;
}

.btn-secondary:hover {
    background-color: #2a2a2a;
    color: #CAAA3B;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
}

.btn-small {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

/* Header Styles */
.site-header {
    padding: 2rem 0;
    background-color: #000000;
    border-bottom: 1px solid #1c1c1c;
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.logo-container {
    flex: 0 0 auto;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.main-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu-item a {
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    position: relative;
}

.menu-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #CAAA3B;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-item a:hover::after,
.current-menu-item a::after {
    width: 100%;
}

.user-actions {
    display: flex;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 3rem;
    height: 3rem;
    position: relative;
    cursor: pointer;
}

.menu-icon, 
.menu-icon::before, 
.menu-icon::after {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon::before {
    content: '';
    top: -8px;
}

.menu-icon::after {
    content: '';
    bottom: -8px;
}

.page-header {
    margin: 20px 0;
}

#primary-menu {
    margin-bottom: 0;
}

/* Header scrolled state */
.site-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.site-header.header-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,1) 100%);
    background-size: cover;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: none; /* Hidden on mobile, shown on larger screens via media query */
}

.hero-description {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1.6rem;
}

/* Welcome Section */
.welcome-section {
    padding: 6rem 0;
    background-color: #0c0c0c;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background-color: #1c1c1c;
    padding: 3rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 3.6rem;
}

/* Game Collection Section */
.game-collection {
    padding: 6rem 0;
    background-color: #000000;
}

.game-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-tab {
    display: flex;
    align-items: center;
    padding: 1.2rem 2.4rem;
    background-color: #1c1c1c;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab.active, 
.category-tab:hover {
    background-color: #CAAA3B;
    color: #000000;
}

.category-tab.active i,
.category-tab:hover i {
    color: #000000;
}

.tab-icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-icon i {
    font-size: 1.8rem;
}

.game-grid {
    display: none;
}

.game-grid.active {
    display: block;
}

.game-grid h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.game-grid > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.4rem;
    margin-bottom: 3rem;
}

.game-card {
    background-color: #1c1c1c;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-image {
    position: relative;
    height: 210px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jackpot-amount {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(202, 170, 59, 0.9);
    color: #000000;
    padding: 1rem;
    font-weight: 700;
    text-align: center;
}

.live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ff0000;
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
}

.game-card h4 {
    padding: 1.6rem 1.6rem 0.8rem;
    margin-bottom: 0.8rem;
}

.game-card p {
    padding: 0 1.6rem;
    margin-bottom: 1.6rem;
    font-size: 1.4rem;
    color: #cccccc;
}

.game-buttons {
    display: flex;
    gap: 1rem;
    padding: 0 1.6rem 1.6rem;
}

.view-more {
    text-align: center;
    margin-top: 2rem;
}

.live-casino-feature {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #1c1c1c;
    border-radius: 8px;
    padding: 3rem;
    margin-top: 4rem;
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1;
}

/* Specialty Games Section */
.specialty-games-section {
    padding: 4rem 0;
    background-color: #0c0c0c;
}

/* Providers Section */
.providers-section {
    padding: 6rem 0;
    background-color: #0c0c0c;
}

.providers-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.provider {
    background-color: #1c1c1c;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    text-align: center;
}

.provider:hover {
    transform: scale(1.05);
}

.provider img {
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.provider-name {
    font-weight: 600;
    margin-bottom: 0;
}

/* Bonus Section */
.bonus-section {
    padding: 6rem 0;
    background-color: #000000;
}

.welcome-bonus {
    display: flex;
    align-items: center;
    gap: 4rem;
    background-color: #1c1c1c;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.bonus-content {
    flex: 1;
}

.bonus-image {
    flex: 1;
    display: none; /* Hidden on mobile, shown on larger screens via media query */
}

.bonus-image img {
    border-radius: 4px;
}

.bonus-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #2a2a2a;
}

.table-header {
    background-color: #CAAA3B;
    color: #000000;
    font-weight: 700;
}

.table-cell {
    padding: 1.2rem;
    text-align: center;
}

.bonus-code {
    margin: 2rem 0;
    font-size: 1.8rem;
}

.other-promotions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.promo-card {
    background-color: #1c1c1c;
    padding: 2.4rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-10px);
}

.promo-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-icon i {
    font-size: 3rem;
}

.tournaments-section {
    background-color: #1c1c1c;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    padding-top: 6rem;
}

.tournament-icon {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tournament-icon i {
    font-size: 2.5rem;
}

/* Getting Started Section */
.getting-started-section {
    padding: 6rem 0;
    background-color: #0c0c0c;
}

.registration-process,
.login-guide {
    background-color: #1c1c1c;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.registration-content,
.login-content {
    flex: 1;
}

.registration-image,
.login-image {
    flex: 1;
}

.deposit-bonus-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.deposit-guide,
.bonus-claim {
    flex: 1;
    min-width: 300px;
    background-color: #1c1c1c;
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    padding-top: 6rem;
    height: 100%;
}

.deposit-icon,
.bonus-icon {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    background-color: #0c0c0c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposit-icon i,
.bonus-icon i {
    font-size: 2.5rem;
}

/* Mobile Casino Section */
.mobile-casino-section {
    padding: 6rem 0;
    background-color: #000000;
}

.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mobile-feature-card {
    background-color: #1c1c1c;
    padding: 3rem;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 6rem;
}

.mobile-icon {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-icon i {
    font-size: 2.5rem;
}

/* Banking Section */
.banking-section {
    padding: 6rem 0;
    background-color: #0c0c0c;
}

.banking-features {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.banking-table {
    background-color: #1c1c1c;
    padding: 3rem;
    border-radius: 8px;
    grid-column: 1 / 2;
}

.withdrawal-process {
    background-color: #1c1c1c;
    padding: 3rem;
    border-radius: 8px;
    grid-column: 1 / 2;
    position: relative;
    padding-top: 6rem;
}

.withdrawal-icon {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    background-color: #0c0c0c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.withdrawal-icon i {
    font-size: 2.5rem;
}

.security-measures {
    background-color: #1c1c1c;
    padding: 3rem;
    border-radius: 8px;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    position: relative;
    padding-top: 6rem;
}

.security-icon {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    background-color: #0c0c0c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon i {
    font-size: 2.5rem;
}

.withdrawal-expectations {
    background-color: #1c1c1c;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.payment-icon {
    background-color: #1c1c1c;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    padding: 6rem 0;
    background-color: #000000;
}

.responsible-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-box {
    background-color: #1c1c1c;
    padding: 2.4rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
    padding-top: 6rem;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box .feature-icon {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.feature-box .feature-icon i {
    font-size: 2.5rem;
}

.responsible-cta {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #0c0c0c;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid #1c1c1c;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 0;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 2rem;
}

.faq-toggle {
    width: 2.4rem;
    height: 2.4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(-180deg);
}

.faq-answer {
    padding: 0 0 2rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,1) 100%), url('cta-bg.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Footer Styles */
.site-footer {
    background-color: #0a0a0a;
    color: #cccccc;
}

.footer-top {
    padding: 6rem 0 4rem;
    border-bottom: 1px solid #1c1c1c;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-about p {
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #1c1c1c;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #CAAA3B;
}

.social-link i {
    font-size: 2rem;
    color: #ffffff;
}

.widget-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #cccccc;
}

.footer-links a:hover {
    color: #CAAA3B;
}

.contact-info {
    margin-bottom: 2rem;
}

.footer-middle {
    padding: 3rem 0;
    border-bottom: 1px solid #1c1c1c;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-bottom: 3rem;
}

.responsible-gaming-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}

.copyright {
    margin-bottom: 1rem;
}

/* Animation for page load */
.page-loaded .hero-content, 
.page-loaded .feature-card,
.page-loaded .game-card,
.page-loaded .promo-card {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Lazy Loading */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Additional Utilities */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mb-4 {
    margin-bottom: 4rem !important;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.h-100 {
    height: 100%;
}

/* Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000000;
        color: #ffffff;
    }

    .btn-primary {
        background-color: #CAAA3B;
        color: #000000;
    }

    .btn-secondary {
        background-color: #1c1c1c;
        color: #ffffff;
        border: 1px solid #CAAA3B;
    }

    .feature-card,
    .game-card,
    .promo-card,
    .provider,
    .banking-table,
    .security-measures,
    .withdrawal-process,
    .withdrawal-expectations,
    .feature-box,
    .registration-process,
    .login-guide,
    .deposit-guide,
    .bonus-claim,
    .mobile-feature-card {
        background-color: #1c1c1c;
    }
}

.btn:focus, 
.game-card:focus,
.faq-question:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(202, 170, 59, 0.5);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1c1c1c;
}

::-webkit-scrollbar-thumb {
    background-color: #CAAA3B;
    border-radius: 5px;
    border: 2px solid #1c1c1c;
}

::-webkit-scrollbar-thumb:hover {
    background: #d5b854;
}

/* Selection Style */
::selection {
    background-color: #CAAA3B;
    color: #000000;
}

/* Font Awesome Adjustments */
.fa-solid {
    color: #CAAA3B;
    font-size: 1.2em;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

a:hover .fa-solid, 
.btn:hover .fa-solid {
    transform: translateY(-2px);
}

/* Custom Icons for Different Sections */
.fa-shield-check, 
.fa-check-double {
    color: #3fc380; /* Green shade for security/compliance */
}

.fa-hand-holding-dollar, 
.fa-money-bill-transfer {
    color: #3ad09f; /* Teal for money-related */
}

.fa-crown, 
.fa-trophy {
    color: #f5d76e; /* Bright gold for achievement */
}

.fa-mobile-screen, 
.fa-globe, 
.fa-percent {
    color: #5499c7; /* Blue for technology */
}

.fa-ban, 
.fa-sliders {
    color: #ec7063; /* Red-orange for restrictions/controls */
}

.fa-gift {
    color: #af7ac5; /* Purple for bonuses */
}

.fa-headset {
    color: #5dade2; /* Blue for support */
}

/* Special Effects for Game Cards */
.game-card {
    overflow: hidden;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: left 0.7s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

.game-card:hover::before {
    left: 150%;
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Enhanced Provider Cards */
.provider {
    position: relative;
    overflow: hidden;
}

.provider-name {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.provider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(202, 170, 59, 0.2), rgba(202, 170, 59, 0));
    transition: height 0.3s ease;
    z-index: 1;
}

.provider:hover::after {
    height: 100%;
}

/* Enhanced FAQ Toggles */
.faq-toggle i {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.faq-item.active .faq-toggle i {
    transform: rotate(-180deg);
    color: #CAAA3B;
}

/* Registration and Login Form Images */
.registration-image img,
.login-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.registration-image img:hover,
.login-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

/* Enhanced Deposit and Bonus Icons */
.deposit-icon,
.bonus-icon,
.mobile-icon,
.withdrawal-icon,
.security-icon,
.feature-box .feature-icon,
.tournament-icon {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deposit-guide:hover .deposit-icon,
.bonus-claim:hover .bonus-icon,
.mobile-feature-card:hover .mobile-icon,
.withdrawal-process:hover .withdrawal-icon,
.security-measures:hover .security-icon,
.feature-box:hover .feature-icon,
.tournaments-section:hover .tournament-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* 
* Vipzino Casino - Responsive Stylesheet
* Theme: Premium Online Casino
* Colors:
* - Background: #000000
* - Neutral: #1c1c1c
* - Secondary: #CAAA3B (Gold)
* - Primary: #ffffff
*/

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
    .hero-image {
        display: block;
    }
    
    .bonus-image {
        display: block;
    }
    
    .container {
        padding: 0 4rem;
    }
    
    .live-casino-feature {
        margin: 6rem auto;
        max-width: 1100px;
    }
    
    .registration-content {
        flex: 1;
    }
    
    .registration-image {
        flex: 1;
    }
    
    .login-content {
        flex: 1;
    }
    
    .login-image {
        flex: 1;
    }
    
    .deposit-bonus-row {
        flex-wrap: nowrap;
    }
    
    .deposit-guide,
    .bonus-claim {
        flex: 1;
    }
    
    .mobile-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mobile-feature-card {
        min-height: 450px;
    }
    
    .withdrawal-expectations .table-container {
        overflow: visible;
    }
}

/* Desktops and Laptops (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    html {
        font-size: 60%;
    }
    
    .hero-image {
        display: block;
    }
    
    .bonus-image {
        display: block;
    }
    
    .games-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-widgets {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .registration-content {
        flex: 1;
    }
    
    .registration-image {
        flex: 1;
    }
    
    .login-content {
        flex: 1;
    }
    
    .login-image {
        flex: 1;
    }
    
    .deposit-bonus-row {
        flex-wrap: nowrap;
    }
    
    .deposit-guide,
    .bonus-claim {
        flex: 1;
    }
    
    .mobile-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mobile-feature-card {
        min-height: 450px;
    }
    
    .banking-features {
        grid-template-columns: 2fr 1fr;
    }
    
    .banking-table {
        grid-column: 1 / 2;
    }
    
    .security-measures {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }
    
    .withdrawal-process {
        grid-column: 1 / 2;
    }
}

/* Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    html {
        font-size: 58%;
    }
    
    h1 {
        font-size: 3.8rem;
    }
    
    h2 {
        font-size: 3.2rem;
    }
    
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        display: block;
        margin-top: 3rem;
    }
    
    .hero-image picture,
    .hero-image img {
        width: 100%;
        height: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .welcome-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-casino-feature {
        flex-direction: column;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-image {
        margin-top: 3rem;
    }
    
    .welcome-bonus {
        flex-direction: column;
    }
    
    .bonus-content {
        text-align: center;
    }
    
    .bonus-image {
        display: block;
        margin-top: 3rem;
    }
    
    .other-promotions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .registration-process,
    .login-guide {
        flex-direction: column;
        text-align: center;
    }
    
    .registration-image img,
    .login-image img {
        margin: 0 auto;
    }
    
    .registration-content,
    .login-content {
        order: 1;
    }
    
    .registration-image,
    .login-image {
        order: 2;
    }
    
    .deposit-bonus-row {
        flex-wrap: wrap;
    }
    
    .deposit-guide,
    .bonus-claim {
        flex: 100%;
        margin-bottom: 3rem;
    }
    
    .mobile-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-feature-card {
        min-height: auto;
    }
    
    .banking-features {
        grid-template-columns: 1fr;
    }
    
    .banking-table,
    .withdrawal-process,
    .security-measures {
        grid-column: 1 / 2;
    }
    
    .security-measures {
        grid-row: auto;
    }
}

/* Small Tablets and Large Phones (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    html {
        font-size: 55%;
    }
    
    h1 {
        font-size: 3.4rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    h3 {
        font-size: 2.2rem;
    }
    
    .site-header {
        padding: 1.5rem 0;
    }
    
    .header-container {
        position: relative;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000;
        border-top: 1px solid #1c1c1c;
        padding: 2rem;
        display: none;
        z-index: 100;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .menu {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-item {
        width: 100%;
        text-align: center;
    }
    
    .menu-item a {
        display: block;
        padding: 1.2rem;
    }
    
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    .logo-container {
        order: 1;
    }
    
    .user-actions {
        order: 2;
    }
    
    .user-actions .btn {
        padding: 0.8rem 1.2rem;
        font-size: 1.4rem;
    }
    
    .hero-section {
        padding: 4rem 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
    }
    
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .hero-image {
        display: block;
        margin-top: 2.4rem;
        width: 100%;
    }
    
    .hero-image picture,
    .hero-image img {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        height: auto;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .welcome-section,
    .game-collection,
    .specialty-games-section,
    .providers-section,
    .bonus-section,
    .getting-started-section,
    .mobile-casino-section,
    .banking-section,
    .responsible-gaming-section,
    .faq-section {
        padding: 4rem 0;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .games-container {
        grid-template-columns: 1fr;
    }
    
    .game-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .live-casino-feature {
        flex-direction: column;
        padding: 2rem;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-image {
        margin-top: 2rem;
    }
    
    .welcome-bonus {
        flex-direction: column;
        padding: 2rem;
    }
    
    .bonus-content {
        text-align: center;
    }
    
    .table-header, 
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-cell {
        border-bottom: 1px solid #2a2a2a;
    }
    
    .table-header .table-cell:last-child,
    .table-row .table-cell:last-child {
        border-bottom: none;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row .table-cell {
        position: relative;
        padding-left: 50%;
        text-align: right;
    }
    
    .table-row .table-cell::before {
        content: attr(data-label);
        position: absolute;
        left: 1.2rem;
        width: 45%;
        text-align: left;
        font-weight: 700;
    }
    
    .other-promotions {
        grid-template-columns: 1fr;
    }
    
    .promo-card {
        padding: 2rem;
    }
    
    .banking-table h3 {
        text-align: center;
    }
    
    .banking-features {
        grid-template-columns: 1fr;
    }
    
    .banking-table,
    .withdrawal-process,
    .security-measures {
        grid-column: 1 / 2;
    }
    
    .security-measures {
        grid-row: auto;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.8rem;
    }
    
    .responsible-features {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        padding: 2rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 3rem;
    }
    
    .cta-content p {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-top {
        padding: 4rem 0 2rem;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .payment-methods, 
    .responsible-gaming-logos {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .payment-icon, 
    .responsible-logo {
        margin-bottom: 1rem;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
    }
    
    .registration-process,
    .login-guide {
        flex-direction: column;
        text-align: center;
    }
    
    .registration-image img,
    .login-image img {
        margin: 0 auto;
    }
    
    .registration-content,
    .login-content {
        order: 1;
    }
    
    .registration-image,
    .login-image {
        order: 2;
    }
    
    .deposit-bonus-row {
        flex-wrap: wrap;
    }
    
    .deposit-guide,
    .bonus-claim {
        flex: 100%;
        margin-bottom: 3rem;
    }
}

/* Mobile Phones (575px and down) */
@media (max-width: 575px) {
    html {
        font-size: 50%;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.6rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .site-header {
        padding: 1.2rem 0;
    }
    
    .header-container {
        position: relative;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000;
        border-top: 1px solid #1c1c1c;
        padding: 2rem;
        display: none;
        z-index: 100;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .menu {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-item {
        width: 100%;
        text-align: center;
    }
    
    .menu-item a {
        display: block;
        padding: 1.2rem;
    }
    
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    .logo-container {
        order: 1;
    }
    
    .user-actions {
        order: 2;
    }
    
    .user-actions .btn {
        padding: 0.8rem 1.2rem;
        font-size: 1.4rem;
        min-width: unset !important;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .welcome-section,
    .game-collection,
    .specialty-games-section,
    .providers-section,
    .bonus-section,
    .getting-started-section,
    .mobile-casino-section,
    .banking-section,
    .responsible-gaming-section,
    .faq-section {
        padding: 4rem 0;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .games-container {
        grid-template-columns: 1fr;
    }
    
    .game-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .live-casino-feature {
        flex-direction: column;
        padding: 2rem;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-image {
        margin-top: 2rem;
    }
    
    .welcome-bonus {
        flex-direction: column;
        padding: 2rem;
    }
    
    .bonus-content {
        text-align: center;
    }
    
    .table-header, 
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-cell {
        border-bottom: 1px solid #2a2a2a;
    }
    
    .table-header .table-cell:last-child,
    .table-row .table-cell:last-child {
        border-bottom: none;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row .table-cell {
        position: relative;
        padding-left: 50%;
        text-align: right;
    }
    
    .table-row .table-cell::before {
        content: attr(data-label);
        position: absolute;
        left: 1.2rem;
        width: 45%;
        text-align: left;
        font-weight: 700;
    }
    
    .other-promotions {
        grid-template-columns: 1fr;
    }
    
    .promo-card {
        padding: 2rem;
    }
    
    .banking-table h3 {
        text-align: center;
    }
    
    .banking-features {
        grid-template-columns: 1fr;
    }
    
    .banking-table,
    .withdrawal-process,
    .security-measures {
        grid-column: 1 / 2;
    }
    
    .security-measures {
        grid-row: auto;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.8rem;
    }
    
    .responsible-features {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        padding: 2rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 3rem;
    }
    
    .cta-content p {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-top {
        padding: 4rem 0 2rem;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .payment-methods, 
    .responsible-gaming-logos {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .payment-icon, 
    .responsible-logo {
        margin-bottom: 1rem;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
    }
    
    .registration-process,
    .login-guide {
        flex-direction: column;
        text-align: center;
    }
    
    .registration-image img,
    .login-image img {
        margin: 0 auto;
    }
    
    .registration-content,
    .login-content {
        order: 1;
    }
    
    .registration-image,
    .login-image {
        order: 2;
    }
    
    .deposit-bonus-row {
        flex-wrap: wrap;
    }
    
    .deposit-guide,
    .bonus-claim {
        flex: 100%;
        margin-bottom: 3rem;
    }
    
    /* Fix for table cells on mobile */
    td, th {
        padding: 1rem 0.8rem;
    }
    
    table, 
    .deposit-table,
    .withdrawal-table {
        font-size: 1.4rem;
    }
    
    .tournaments-section,
    .deposit-guide,
    .bonus-claim,
    .mobile-feature-card,
    .withdrawal-process,
    .security-measures,
    .feature-box {
        padding-top: 8rem;
    }
    
    .tournament-icon,
    .deposit-icon,
    .bonus-icon,
    .mobile-icon,
    .withdrawal-icon,
    .security-icon,
    .feature-box .feature-icon {
        top: 2rem;
    }
}

/* Fix for table responsiveness on all devices */
@media (max-width: 991px) {
    .table-container {
        overflow-x: auto;
    }
    
    .banking-table {
        min-width: 100%;
    }
    
    /* Make tables responsive */
    table {
        width: 100%;
        min-width: 600px;
    }
    
    .withdrawal-expectations .table-container.full-width {
        margin-left: -2rem;
        margin-right: -2rem;
        padding: 0 2rem;
        width: calc(100% + 4rem);
    }
}

/* Special handling for mobile orientation change */
@media screen and (max-height: 450px) and (orientation: landscape) {
    .site-header {
        position: relative;
    }
    
    .main-navigation.active {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Special layout handling for icons when stacked vertically */
@media (max-width: 768px) {
    .tournaments-section h3,
    .deposit-guide h3,
    .bonus-claim h3,
    .mobile-feature-card h3,
    .withdrawal-process h3,
    .security-measures h4,
    .feature-box h3 {
        text-align: center;
    }
}

/* Print styles */
@media print {
    body {
        background-color: #ffffff;
        color: #000000;
        font-size: 12pt;
    }
    
    .site-header,
    .hero-section,
    .game-categories,
    .game-buttons,
    .view-more,
    .cta-section,
    .site-footer,
    .menu-toggle,
    .user-actions {
        display: none;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000000;
        page-break-after: avoid;
    }
    
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
    
    a {
        color: #000000;
        text-decoration: underline;
    }
    
    .section-header {
        text-align: left;
        margin: 2cm 0 1cm;
    }
    
    .welcome-features,
    .games-container,
    .banking-features,
    .other-promotions,
    .responsible-features {
        display: block;
    }
    
    .feature-card,
    .game-card,
    .promo-card,
    .info-card,
    .feature-box {
        page-break-inside: avoid;
        border: 1px solid #cccccc;
        padding: 1cm;
        margin-bottom: 1cm;
    }
    
    table {
        border-collapse: collapse;
    }
    
    th, td {
        border: 1px solid #000000;
    }
    
    img {
        max-width: 100% !important;
    }
    
    .fa-solid {
        display: none;
    }
}