
    .page-80king {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
    background-color: #1a1a2e; /* Dark background for gambling theme */
    line-height: 1.6;
    overflow-x: hidden;
}

.page-80king__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-80king__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-80king__subsection-title {
    font-size: 2em;
    color: #FFD700;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-80king__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #cccccc;
}

/* Hero Section */
.page-80king__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 10px 0 60px 0; /* 10px for header offset */
    overflow: hidden;
}

.page-80king__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); /* Darken image for text readability */
}

.page-80king__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-80king__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-80king__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.page-80king__promo-link {
    display: inline-block;
    background-color: #FFD700;
    color: #1a1a2e;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-80king__promo-link:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* About Section */
.page-80king__about-section {
    background-color: #22223b;
    padding: 60px 0;
}

.page-80king__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-80king__feature-item {
    background-color: #2e2e4a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-80king__feature-item:hover {
    transform: translateY(-10px);
}

.page-80king__feature-icon {
    width: 200px; /* Minimum size requirement */
    height: auto;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
    object-fit: cover;
}

.page-80king__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-80king__feature-text {
    color: #cccccc;
}

/* Games Section */
.page-80king__games-section {
    padding: 60px 0;
}

.page-80king__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-80king__game-item {
    background-color: #2e2e4a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-80king__game-item:hover {
    transform: translateY(-10px);
}

.page-80king__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent look */
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-80king__game-title {
    font-size: 1.4em;
    color: #FFD700;
    margin: 20px 0 10px 0;
    padding: 0 15px;
}

.page-80king__game-text {
    color: #cccccc;
    padding: 0 15px 20px 15px;
}

/* Promotion Section */
.page-80king__promo-section {
    background-color: #22223b;
    padding: 60px 0;
}

.page-80king__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-80king__promo-card {
    background-color: #2e2e4a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-80king__promo-card:hover {
    transform: translateY(-10px);
}

.page-80king__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-80king__promo-title {
    font-size: 1.4em;
    color: #FFD700;
    margin: 20px 0 10px 0;
    padding: 0 15px;
}

.page-80king__promo-text {
    color: #cccccc;
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-80king__promo-button {
    background-color: #FFD700;
    color: #1a1a2e;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-80king__promo-button:hover {
    background-color: #e6c200;
}

/* Payments & Providers Section */
.page-80king__payments-providers-section {
    padding: 60px 0;
}

.page-80king__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    gap: 20px;
    justify-content: center;
}

.page-80king__payment-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    max-width: 1000px;
    margin-bottom: 50px;
}

.page-80king__provider-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    max-width: 1000px;
}

.page-80king__list-item {
    background-color: #2e2e4a;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    box-sizing: border-box; /* Crucial for mobile responsiveness */
}

.page-80king__list-item:hover {
    transform: translateY(-5px);
}

.page-80king__list-item a {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    height: 100%; /* Ensure link covers entire item */
}

.page-80king__payment-logo,
.page-80king__provider-logo {
    width: 100%;
    height: 100px; /* Fixed height for logos */
    max-width: 150px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 5px;
}

.page-80king__list-item span {
    font-weight: bold;
    font-size: 1.1em;
    color: #FFD700;
    word-wrap: break-word; /* Ensure text wraps */
    overflow-wrap: break-word;
}

/* FAQ Section */
.page-80king__faq-section {
    background-color: #22223b;
    padding: 60px 0;
}

.page-80king__faq-list {
    max-width: 900px;
    margin: 30px auto 0 auto;
}

.page-80king__faq-item {
    background-color: #2e2e4a;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-80king__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #3a3a5e; /* Slightly different background for question */
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    user-select: none;
}

.page-80king__faq-question:hover {
    background-color: #4a4a7a;
}

.page-80king__faq-question h3 {
    margin: 0;
    color: #FFD700;
    font-size: 1.2em;
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-80king__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle from blocking click event */
    color: #FFD700;
}

.page-80king__faq-item.active .page-80king__faq-toggle {
    transform: rotate(45deg); /* Change '+' to 'x' or '-' appearance */
}

.page-80king__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    color: #cccccc;
}

.page-80king__faq-item.active .page-80king__faq-answer {
    max-height: 2000px !important; /* Sufficiently large value */
    padding: 20px 25px !important; /* Ensure content padding */
    opacity: 1;
}

.page-80king__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Add some space at the bottom of the answer */
}

/* Call to Action Section */
.page-80king__cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: #1a1a2e;
}

.page-80king__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-80king__cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-80king__cta-button--register {
    background-color: #FFD700;
    color: #1a1a2e;
}

.page-80king__cta-button--register:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-80king__cta-button--login {
    background-color: #007bff; /* A secondary accent color */
    color: #ffffff;
}

.page-80king__cta-button--login:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Floating Buttons */
.page-80king__floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    width: 90%; /* Adjust width for mobile */
    max-width: 400px;
}

.page-80king__floating-button {
    flex: 1;
    padding: 12px 0;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.page-80king__floating-button--register {
    background-color: #FFD700;
    color: #1a1a2e;
}

.page-80king__floating-button--register:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-80king__floating-button--login {
    background-color: #007bff;
    color: #ffffff;
}

.page-80king__floating-button--login:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .page-80king__container {
        padding: 15px;
    }

    .page-80king__section-title {
        font-size: 2em;
        padding-top: 30px;
    }

    .page-80king__subsection-title {
        font-size: 1.7em;
        margin-top: 30px;
    }

    .page-80king__hero-title {
        font-size: 2.5em;
    }

    .page-80king__hero-subtitle {
        font-size: 1.1em;
    }

    .page-80king__promo-link {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-80king__features,
    .page-80king__game-grid,
    .page-80king__promo-cards {
        grid-template-columns: 1fr;
    }

    /* List item mobile responsiveness */
    .page-80king__list {
        grid-template-columns: 1fr !important; /* Force single column */
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important; /* Adjust padding for container */
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .page-80king__list-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 10px 0; /* Adjust padding for individual items */
    }

    .page-80king__list-item a {
        padding: 10px;
    }

    .page-80king__list-item span {
        font-size: 1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-80king__payment-logo,
    .page-80king__provider-logo {
        height: 80px; /* Smaller height for mobile logos */
        max-width: 120px;
    }

    .page-80king__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-80king__faq-question h3 {
        font-size: 1.1em;
    }

    .page-80king__faq-answer {
        padding: 0 20px;
    }

    .page-80king__faq-item.active .page-80king__faq-answer {
        padding: 15px 20px !important;
    }

    .page-80king__cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
    }

    .page-80king__floating-buttons {
        bottom: 15px;
        gap: 10px;
        width: 95%;
    }

    .page-80king__floating-button {
        font-size: 1em;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-80king__hero-title {
        font-size: 2em;
    }

    .page-80king__hero-subtitle {
        font-size: 1em;
    }

    .page-80king__section-title {
        font-size: 1.8em;
    }

    .page-80king__section-description {
        font-size: 1em;
    }

    .page-80king__faq-question {
        font-size: 1em;
    }

    .page-80king__faq-question h3 {
        font-size: 1em;
    }
}
  