
    :root {
        --primary-color: #e44d26; /* Example: A strong orange-red */
        --secondary-color: #f7b731; /* Example: A vibrant yellow */
        --accent-color: #4CAF50; /* Example: Green for success/highlight */
        --dark-bg: #1a1a1a; /* Dark background */
        --light-text: #ffffff; /* Light text on dark bg */
        --gray-text: #cccccc; /* Gray text for less emphasis */
        --border-color: #333333; /* Dark border */
        --button-hover-color: #c23e1e; /* Darker primary for hover */
    }

    /* Base styles for the page-58k1 container */
    .page-58k1 {
        font-family: 'Arial', sans-serif;
        color: var(--light-text);
        background-color: var(--dark-bg);
        line-height: 1.6;
        padding-top: 10px; /* Small decorative top padding, assuming body handles --header-offset */
    }

    /* Fallback for header offset if body doesn't handle it */
    .page-content.page-58k1:first-child {
        padding-top: var(--header-offset, 122px); /* Apply if no other padding-top is set for body */
    }

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

    @media (max-width: 768px) {
        .page-58k1__container {
            padding: 15px;
        }
    }

    .page-58k1__hero-section {
        text-align: center;
        padding: 80px 20px;
        background: linear-gradient(135deg, var(--dark-bg), #333333);
        margin-bottom: 40px;
        border-radius: 10px;
    }

    .page-58k1__hero-title {
        font-size: 3.5em;
        color: var(--primary-color);
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        line-height: 1.2;
    }

    .page-58k1__hero-subtitle {
        font-size: 1.5em;
        color: var(--light-text);
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-58k1__cta-button {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--light-text);
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 1.2em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
        border: none; /* Ensure it looks like a button */
        cursor: pointer; /* Indicate interactivity */
    }

    .page-58k1__cta-button:hover {
        background-color: #3e8e41; /* Slightly darker green */
    }

    @media (max-width: 768px) {
        .page-58k1__hero-section {
            padding: 50px 15px;
        }
        .page-58k1__hero-title {
            font-size: 2.2em;
        }
        .page-58k1__hero-subtitle {
            font-size: 1.1em;
        }
        .page-58k1__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
    }

    .page-58k1__section-title {
        font-size: 2.5em;
        color: var(--secondary-color);
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-58k1__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

    @media (max-width: 768px) {
        .page-58k1__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
    }

    .page-58k1__info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }

    .page-58k1__info-card {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid var(--border-color);
    }

    .page-58k1__info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-58k1__card-icon {
        width: 100px; /* This is a container for an image, actual image will be 200x200px minimum */
        height: 100px;
        margin-bottom: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 50%;
        overflow: hidden; /* Ensure image fits */
    }
    .page-58k1__card-icon img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-58k1__card-title {
        font-size: 1.8em;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .page-58k1__card-description {
        font-size: 1em;
        color: var(--gray-text);
    }

    @media (max-width: 768px) {
        .page-58k1__info-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-58k1__info-card {
            padding: 25px;
        }
        .page-58k1__card-title {
            font-size: 1.5em;
        }
        .page-58k1__card-icon {
            width: 80px;
            height: 80px;
        }
    }

    .page-58k1__steps-list {
        list-style: none;
        padding: 0;
        margin-bottom: 60px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .page-58k1__step-item {
        background-color: #2a2a2a;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: flex-start;
        border: 1px solid var(--border-color);
        box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-58k1__step-number {
        font-size: 2.5em;
        font-weight: bold;
        color: var(--secondary-color);
        margin-right: 20px;
        flex-shrink: 0;
        line-height: 1;
    }

    .page-58k1__step-content {
        flex-grow: 1;
    }

    .page-58k1__step-title {
        font-size: 1.6em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-58k1__step-description {
        font-size: 1em;
        color: var(--gray-text);
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
    }

    @media (max-width: 768px) {
        .page-58k1__steps-list {
            gap: 15px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-58k1__step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-58k1__step-number {
            margin-right: 0;
            margin-bottom: 15px;
        }
        .page-58k1__step-title {
            font-size: 1.4em;
        }
        .page-58k1__step-description {
            font-size: 0.95em;
        }
    }

    .page-58k1__game-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 60px;
    }

    .page-58k1__game-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        text-align: center;
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease;
    }

    .page-58k1__game-card:hover {
        transform: translateY(-5px);
    }

    .page-58k1__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-58k1__game-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-58k1__game-title {
        font-size: 1.4em;
        color: var(--light-text);
        padding: 15px 10px;
        background-color: #3a3a3a;
    }

    @media (max-width: 768px) {
        .page-58k1__game-gallery {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-58k1__game-image-wrapper {
            height: 180px;
        }
        .page-58k1__game-title {
            font-size: 1.2em;
        }
    }

    /* FAQ Section */
    .page-58k1__faq-section {
        margin-bottom: 60px;
    }

    .page-58k1__faq-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-58k1__faq-item {
        background-color: #2a2a2a;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-58k1__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #333333;
        transition: background-color 0.3s ease;
        user-select: none;
        min-height: 50px; /* Ensure minimum height for clickable area */
    }

    .page-58k1__faq-question:hover {
        background-color: #444444;
    }

    .page-58k1__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--light-text);
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
        word-wrap: break-word; /* Ensure title wraps */
        overflow-wrap: break-word;
    }

    .page-58k1__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--primary-color);
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
        flex-shrink: 0; /* Prevent shrinking */
    }

    .page-58k1__faq-item.active .page-58k1__faq-toggle {
        transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-58k1__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--gray-text);
        font-size: 0.95em;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
    }

    .page-58k1__faq-item.active .page-58k1__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 20px !important;
        opacity: 1;
    }

    @media (max-width: 768px) {
        .page-58k1__faq-list {
            gap: 10px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-58k1__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-58k1__faq-question {
            padding: 12px 15px;
        }
        .page-58k1__faq-question h3 {
            font-size: 1.1em;
        }
        .page-58k1__faq-toggle {
            font-size: 1.5em;
        }
        .page-58k1__faq-item.active .page-58k1__faq-answer {
            padding: 15px 15px !important;
        }
        .page-58k1__faq-answer {
            padding: 0 15px;
        }
    }

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

    .page-58k1__floating-button {
        background-color: var(--primary-color);
        color: var(--light-text);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 1em;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        width: 120px; /* Fixed width for consistency */
    }

    .page-58k1__floating-button:hover {
        background-color: var(--button-hover-color);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .page-58k1__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }
        .page-58k1__floating-button {
            padding: 8px 15px;
            font-size: 0.9em;
            width: 100px;
        }
    }
  