
    /* General page styling */
    .page-77wings {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
        padding-top: 10px; /* Small top padding for aesthetic spacing, header offset handled by body padding */
    }

    /* Section styling */
    .page-77wings__section-title {
        font-size: 2.2em;
        color: #2c3e50;
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
        font-weight: bold;
    }

    .page-77wings__section-description {
        font-size: 1.1em;
        color: #555;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px;
        padding: 0 15px;
    }

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

    .page-77wings__register-button,
    .page-77wings__login-button {
        background-color: #e74c3c; /* Red */
        color: #fff;
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        min-width: 120px; /* Ensure buttons are not too small */
    }

    .page-77wings__register-button:hover,
    .page-77wings__login-button:hover {
        background-color: #c0392b;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-77wings__hero-section {
        position: relative;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 500px;
        background-color: #2c3e50;
        color: #fff;
        text-align: center;
        padding: 20px; /* Add some padding to prevent content touching edges */
    }

    .page-77wings__hero-section img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
        z-index: 1;
        max-width: 100%; /* Responsive image */
    }

    .page-77wings__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 20px;
    }

    .page-77wings__brand-title {
        font-size: 4em;
        margin-bottom: 10px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #f1c40f; /* Yellow for brand */
        text-shadow: 0 0 15px rgba(241, 196, 15, 0.7);
    }

    .page-77wings__hero-description {
        font-size: 1.5em;
        margin-bottom: 30px;
        font-weight: 300;
        color: #ecf0f1;
    }

    .page-77wings__hero-cta {
        display: flex;
        justify-content: center;
    }

    .page-77wings__cta-button {
        background-color: #2ecc71; /* Green */
        color: #fff;
        padding: 15px 40px;
        border-radius: 5px;
        font-size: 1.2em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-77wings__cta-button:hover {
        background-color: #27ae60;
        transform: translateY(-2px);
    }

    /* Game Categories Section */
    .page-77wings__games-section,
    .page-77wings__promotions-section,
    .page-77wings__why-choose-section,
    .page-77wings__faq-section,
    .page-77wings__news-section,
    .page-77wings__social-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-77wings__game-categories,
    .page-77wings__promo-grid,
    .page-77wings__features-grid,
    .page-77wings__news-grid,
    .page-77wings__social-links {
        display: grid;
        gap: 30px;
        justify-content: center;
    }

    .page-77wings__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-77wings__game-card,
    .page-77wings__promo-card,
    .page-77wings__feature-item,
    .page-77wings__news-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%; /* Ensure cards have equal height in a row */
    }

    .page-77wings__game-card:hover,
    .page-77wings__promo-card:hover,
    .page-77wings__feature-item:hover,
    .page-77wings__news-card:hover {
        transform: translateY(-5px);
    }

    .page-77wings__game-card img,
    .page-77wings__promo-card img,
    .page-77wings__feature-item img,
    .page-77wings__news-card img {
        width: 100%;
        height: 200px; /* Fixed height for image consistency */
        object-fit: cover;
        border-bottom: 1px solid #eee;
        max-width: 100%; /* Responsive image */
    }

    .page-77wings__game-title,
    .page-77wings__promo-title,
    .page-77wings__feature-title,
    .page-77wings__news-title {
        font-size: 1.5em;
        color: #2c3e50;
        margin: 20px 15px 10px;
        font-weight: bold;
    }

    .page-77wings__game-text,
    .page-77wings__promo-text,
    .page-77wings__feature-text,
    .page-77wings__news-excerpt {
        font-size: 1em;
        color: #666;
        padding: 0 15px 20px;
        flex-grow: 1; /* Allow text to take available space */
    }

    /* Promotions Section */
    .page-77wings__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    /* Why Choose Us Section */
    .page-77wings__why-choose-section {
        background-color: #ecf0f1;
    }

    .page-77wings__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-77wings__feature-item img {
        height: 150px; /* Adjust height for feature icons */
        object-fit: contain; /* Ensure icons are fully visible */
        padding: 20px;
    }

    /* FAQ Section */
    .page-77wings__faq-container {
        max-width: 900px;
        margin: 0 auto;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .page-77wings__faq-item {
        border-bottom: 1px solid #eee;
    }

    .page-77wings__faq-item:last-child {
        border-bottom: none;
    }

    .page-77wings__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #fdfdfd;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-77wings__faq-question:hover {
        background-color: #f5f5f5;
    }

    .page-77wings__faq-title {
        font-size: 1.2em;
        color: #2c3e50;
        margin: 0;
        font-weight: bold;
        pointer-events: none; /* Prevent clicks on h3 from interfering */
    }

    .page-77wings__faq-toggle {
        font-size: 1.5em;
        color: #e74c3c;
        font-weight: bold;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent clicks on toggle from interfering */
    }

    .page-77wings__faq-item.active .page-77wings__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
        color: #2ecc71;
    }

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

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

    .page-77wings__faq-answer p {
        margin: 0;
        color: #555;
        font-size: 1em;
    }

    /* News Section */
    .page-77wings__news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-77wings__news-date {
        font-size: 0.9em;
        color: #999;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    /* Social Media Section */
    .page-77wings__social-section {
        background-color: #34495e;
        color: #fff;
        text-align: center;
    }

    .page-77wings__social-section .page-77wings__section-title,
    .page-77wings__social-section .page-77wings__section-description {
        color: #fff;
    }

    .page-77wings__social-links {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        max-width: 1000px;
        margin: 0 auto;
    }

    .page-77wings__social-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-77wings__social-item:hover {
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .page-77wings__social-item img {
        width: 80px; /* Social icons, placeholder will provide >=200x200px */
        height: 80px;
        object-fit: contain;
        max-width: 100%;
    }

    .page-77wings__social-item p {
        font-size: 1.1em;
        font-weight: bold;
        color: #ecf0f1;
        margin: 0;
    }


    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-77wings__brand-title {
            font-size: 3.5em;
        }
        .page-77wings__hero-description {
            font-size: 1.3em;
        }
        .page-77wings__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-77wings__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            justify-content: space-around;
            bottom: 10px;
        }
        .page-77wings__register-button,
        .page-77wings__login-button {
            flex: 1;
            padding: 10px 15px;
            font-size: 1em;
            min-width: unset;
        }

        .page-77wings__brand-title {
            font-size: 2.8em;
        }
        .page-77wings__hero-description {
            font-size: 1.1em;
        }
        .page-77wings__cta-button {
            padding: 12px 30px;
            font-size: 1.1em;
        }
        .page-77wings__section-title {
            font-size: 1.8em;
        }
        .page-77wings__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        /* General card list responsiveness */
        .page-77wings__game-categories,
        .page-77wings__promo-grid,
        .page-77wings__features-grid,
        .page-77wings__news-grid,
        .page-77wings__social-links {
            grid-template-columns: 1fr; /* Single column layout for mobile */
            gap: 20px;
            padding: 0 15px; /* Add padding to containers */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        
        .page-77wings__game-card,
        .page-77wings__promo-card,
        .page-77wings__feature-item,
        .page-77wings__news-card,
        .page-77wings__social-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            /* padding: 0; /* Remove padding from items to allow inner content to handle it */ */
        }

        .page-77wings__game-card img,
        .page-77wings__promo-card img,
        .page-77wings__feature-item img,
        .page-77wings__news-card img,
        .page-77wings__social-item img {
            max-width: 100% !important;
            height: auto !important; /* Allow height to adjust */
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-77wings__faq-question {
            padding: 15px 20px;
        }
        .page-77wings__faq-title {
            font-size: 1.1em;
        }
        .page-77wings__faq-answer {
            padding: 0 20px;
        }
        .page-77wings__faq-item.active .page-77wings__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-77wings__brand-title {
            font-size: 2.2em;
        }
        .page-77wings__hero-description {
            font-size: 1em;
        }
        .page-77wings__section-title {
            font-size: 1.5em;
        }
        .page-77wings__hero-section {
            min-height: 400px;
        }
        .page-77wings__game-card img,
        .page-77wings__promo-card img,
        .page-77wings__news-card img {
            height: 180px;
        }
        .page-77wings__social-item img {
            width: 60px;
            height: 60px;
        }
        .page-77wings__social-item p {
            font-size: 0.9em;
        }
    }
  