
    .page-7777x7777 {
    font-family: 'Arial', sans-serif;
    color: #f8f9fa; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from fixed elements */
}

.page-7777x7777__section-padding {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-7777x7777__section-padding {
        padding: 60px 30px;
    }
}

.page-7777x7777__section-title {
    font-size: 2.2em;
    color: #e0b000; /* Primary accent color */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-7777x7777__section-subtitle {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .page-7777x7777__section-title {
        font-size: 1.8em;
    }
    .page-7777x7777__section-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
    }
}

/* Buttons */
.page-7777x7777__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-7777x7777__button--primary {
    background-color: #e0b000; /* Primary accent color */
    color: #1a1a1a; /* Dark text for primary button */
}

.page-7777x7777__button--primary:hover {
    background-color: #ffcc00;
    transform: translateY(-2px);
}

.page-7777x7777__button--secondary {
    background-color: #007bff; /* Secondary accent color */
    color: #f8f9fa; /* Light text for secondary button */
    border: 1px solid #007bff;
}

.page-7777x7777__button--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-7777x7777__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
}

/* Hero Section */
.page-7777x7777__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 40px; /* 10px top padding for offset */
    background-color: #0d0d0d;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-7777x7777__hero-section {
        flex-direction: row;
        text-align: left;
        padding: 10px 30px 60px;
    }
}

.page-7777x7777__hero-content {
    max-width: 600px;
    z-index: 1;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .page-7777x7777__hero-content {
        margin-right: 50px;
        margin-bottom: 0;
    }
}

.page-7777x7777__hero-title {
    font-size: 3em;
    color: #f8f9fa;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-7777x7777__hero-description {
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 30px;
}

.page-7777x7777__hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 480px) {
    .page-7777x7777__hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .page-7777x7777__hero-buttons .page-7777x7777__button {
        width: 100%;
    }
}

.page-7777x7777__hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@media (min-width: 768px) {
    .page-7777x7777__hero-image-wrapper {
        max-width: 600px;
    }
}

.page-7777x7777__hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100% !important; /* Ensure responsiveness */
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .page-7777x7777__hero-title {
        font-size: 2.2em;
    }
    .page-7777x7777__hero-description {
        font-size: 1em;
    }
    .page-7777x7777__hero-image-wrapper {
        border-radius: 10px;
    }
}

/* Floating Register/Login Buttons */
.page-7777x7777__floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.page-7777x7777__floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 45px;
    border-radius: 25px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.page-7777x7777__floating-button--register {
    background-color: #e0b000; /* Primary accent color */
}

.page-7777x7777__floating-button--login {
    background-color: #007bff; /* Secondary accent color */
    color: #f8f9fa;
}

.page-7777x7777__floating-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .page-7777x7777__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Horizontal on mobile */
        width: calc(100% - 30px);
        justify-content: space-around;
    }
    .page-7777x7777__floating-button {
        width: 48%; /* Adjust width for mobile */
        height: 40px;
    }
}

/* About Section */
.page-7777x7777__about-text {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-7777x7777__features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .page-7777x7777__features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.page-7777x7777__feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-7777x7777__feature-item:hover {
    transform: translateY(-5px);
}

.page-7777x7777__feature-icon {
    width: 200px; /* Min size */
    height: auto;
    margin-bottom: 20px;
    max-width: 100% !important; /* Ensure responsiveness */
    box-sizing: border-box !important;
}

.page-7777x7777__feature-title {
    font-size: 1.4em;
    color: #e0b000;
    margin-bottom: 10px;
}

.page-7777x7777__feature-description {
    font-size: 1em;
    color: #cccccc;
}

/* Product Showcase */
.page-7777x7777__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center; /* Center product cards */
}

.page-7777x7777__product-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-7777x7777__product-card:hover {
    transform: translateY(-5px);
}

.page-7777x7777__product-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100% !important; /* Ensure responsiveness */
    box-sizing: border-box !important;
}

.page-7777x7777__product-title {
    font-size: 1.5em;
    color: #e0b000;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-7777x7777__product-description {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 15px 20px;
}

/* Promotions Section */
.page-7777x7777__promotions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .page-7777x7777__promotions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.page-7777x7777__promotion-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-7777x7777__promotion-card:hover {
    transform: translateY(-5px);
}

.page-7777x7777__promotion-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    max-width: 100% !important; /* Ensure responsiveness */
    box-sizing: border-box !important;
}

.page-7777x7777__promotion-title {
    font-size: 1.4em;
    color: #e0b000;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-7777x7777__promotion-description {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 15px 20px;
}

.page-7777x7777__button-wrapper {
    text-align: center;
}

/* Payment Methods */
.page-7777x7777__payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
}

.page-7777x7777__payment-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    width: 100%; /* Ensure full width in grid item */
    box-sizing: border-box; /* Crucial for responsive width */
}

.page-7777x7777__payment-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.page-7777x7777__payment-item:hover {
    transform: translateY(-3px);
}

.page-7777x7777__payment-logo {
    width: 100px; /* Fixed width for logos */
    height: auto;
    max-height: 50px; /* Limit height for uniformity */
    object-fit: contain;
    margin-bottom: 10px;
    max-width: 100% !important; /* Ensure responsiveness */
    box-sizing: border-box !important;
}

.page-7777x7777__payment-name {
    font-size: 0.9em;
    color: #e0b000;
    font-weight: bold;
}

/* Game Providers */
.page-7777x7777__provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
}

.page-7777x7777__provider-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.page-7777x7777__provider-item a {
    display: block;
}

.page-7777x7777__provider-item:hover {
    transform: translateY(-3px);
}

.page-7777x7777__provider-logo {
    width: 100%; /* Make logo fill item width */
    max-width: 100px; /* Max width for larger screens */
    height: auto;
    max-height: 60px; /* Limit height for uniformity */
    object-fit: contain;
    display: block;
    margin: 0 auto;
    max-width: 100% !important; /* Ensure responsiveness */
    box-sizing: border-box !important;
}

/* FAQ Section */
.page-7777x7777__faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-7777x7777__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #3a3a3a;
    border-bottom: 1px solid #444;
    transition: background-color 0.3s ease;
}

.page-7777x7777__faq-question:hover {
    background-color: #4a4a4a;
}

.page-7777x7777__faq-question-text {
    font-size: 1.2em;
    color: #f8f9fa;
    margin: 0;
    pointer-events: none; /* Prevent text from blocking click event */
    flex-grow: 1;
}

.page-7777x7777__faq-toggle {
    font-size: 1.5em;
    color: #e0b000;
    font-weight: bold;
    margin-left: 15px;
    pointer-events: none; /* Prevent toggle from blocking click event */
    transition: transform 0.3s ease;
}

.page-7777x7777__faq-item.active .page-7777x7777__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
    color: #007bff;
}

.page-7777x7777__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    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;
    background-color: #2a2a2a;
}

.page-7777x7777__faq-item.active .page-7777x7777__faq-answer {
    max-height: 2000px !important; /* Sufficiently large */
    padding: 20px !important;
    opacity: 1;
}

.page-7777x7777__faq-answer p {
    margin: 0;
    font-size: 1em;
}

@media (max-width: 768px) {
    .page-7777x7777__faq-question {
        padding: 12px 15px;
    }
    .page-7777x7777__faq-question-text {
        font-size: 1.1em;
    }
    .page-7777x7777__faq-toggle {
        font-size: 1.3em;
    }
    .page-7777x7777__faq-answer {
        padding: 0 15px;
    }
    .page-7777x7777__faq-item.active .page-7777x7777__faq-answer {
        padding: 15px !important;
    }
}

/* Call to Action Section */
.page-7777x7777__cta-section {
    background-color: #0d0d0d;
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #333;
}

.page-7777x7777__cta-title {
    font-size: 2.5em;
    color: #f8f9fa;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-7777x7777__cta-description {
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .page-7777x7777__cta-title {
        font-size: 2em;
    }
    .page-7777x7777__cta-description {
        font-size: 1em;
    }
    .page-7777x7777__cta-section {
        padding: 40px 20px;
    }
}

/* General responsive image and list item rules */
img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    /* For all grid/list items */
    .page-7777x7777__features-grid .page-7777x7777__feature-item,
    .page-7777x7777__product-grid .page-7777x7777__product-card,
    .page-7777x7777__promotions-grid .page-7777x7777__promotion-card,
    .page-7777x7777__payment-grid .page-7777x7777__payment-item,
    .page-7777x7777__provider-grid .page-7777x7777__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        /* Adjust padding to prevent content from touching edges */
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Adjust padding for their containers */
    .page-7777x7777__features-grid,
    .page-7777x7777__product-grid,
    .page-7777x7777__promotions-grid,
    .page-7777x7777__payment-grid,
    .page-7777x7777__provider-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Container padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Ensure text wraps */
    .page-7777x7777__feature-description,
    .page-7777x7777__product-description,
    .page-7777x7777__promotion-description,
    .page-7777x7777__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-all !important; /* Use word-break for long keywords */
    }
}
  