
    /* General page styling */
    .page-5vin {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0;
        background-color: #1a1a1a;
        line-height: 1.6;
        overflow-x: hidden;
        padding-top: 10px; /* Adjusting for potential fixed header, as per instructions */
    }

    .page-5vin__section-title {
        color: #ffd700; /* Gold accent */
        text-align: center;
        font-size: 2.2em;
        margin-bottom: 20px;
        padding-top: 40px;
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }

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

    /* Hero Section */
    .page-5vin__hero-section {
        position: relative;
        width: 100%;
        height: 60vh; /* Responsive height */
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        background: linear-gradient(135deg, #2c3e50, #000000); /* Dark gradient background */
        margin-bottom: 40px;
    }

    .page-5vin__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Slightly transparent to let text stand out */
        z-index: 1;
    }

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

    .page-5vin__hero-title {
        font-size: 3.5em;
        color: #ffffff;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-5vin__hero-subtitle {
        font-size: 1.5em;
        color: #f0f0f0;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-5vin__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .page-5vin__button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        text-align: center;
    }

    .page-5vin__button--primary {
        background-color: #007bff; /* Blue accent */
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    }

    .page-5vin__button--primary:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
    }

    .page-5vin__button--secondary {
        background-color: transparent;
        color: #ffd700; /* Gold accent */
        border: 2px solid #ffd700;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-5vin__button--secondary:hover {
        background-color: #ffd700;
        color: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    }

    /* About Section */
    .page-5vin__about-section {
        padding: 60px 20px;
        background-color: #222;
        text-align: center;
    }

    .page-5vin__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 40px auto 0 auto;
    }

    .page-5vin__feature-item {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Required for list items */
    }

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

    .page-5vin__feature-icon {
        width: 250px; /* Minimum 200px */
        height: auto;
        max-width: 100%;
        margin-bottom: 20px;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .page-5vin__feature-title {
        color: #ffd700;
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .page-5vin__feature-text {
        color: #cccccc;
        font-size: 1em;
    }

    /* Games Section */
    .page-5vin__games-section {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

    .page-5vin__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 40px auto 0 auto;
    }

    .page-5vin__game-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Required for list items */
    }

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

    .page-5vin__game-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        box-sizing: border-box;
    }

    .page-5vin__game-title {
        color: #ffd700;
        font-size: 1.5em;
        padding: 15px 20px 5px;
    }

    .page-5vin__game-description {
        color: #cccccc;
        font-size: 0.95em;
        padding: 0 20px 20px;
    }

    /* Promotion Section */
    .page-5vin__promo-section {
        padding: 60px 20px;
        background-color: #222;
    }

    .page-5vin__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 40px auto 0 auto;
    }

    .page-5vin__promo-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        text-align: center;
        padding-bottom: 20px;
        box-sizing: border-box; /* Required for list items */
    }

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

    .page-5vin__promo-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .page-5vin__promo-title {
        color: #007bff; /* Blue accent */
        font-size: 1.6em;
        margin-bottom: 10px;
        padding: 0 20px;
    }

    .page-5vin__promo-text {
        color: #cccccc;
        font-size: 1em;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .page-5vin__button--small {
        padding: 10px 20px;
        font-size: 0.9em;
        border-radius: 5px;
        background-color: #ffd700;
        color: #1a1a1a;
        box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    }

    .page-5vin__button--small:hover {
        background-color: #e6c200;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    }

    /* FAQ Section */
    .page-5vin__faq-section {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

    .page-5vin__faq-list {
        max-width: 900px;
        margin: 40px auto;
    }

    .page-5vin__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box; /* Required for list items */
    }

    .page-5vin__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #333;
        cursor: pointer;
        user-select: none;
        border-bottom: 1px solid #444;
    }

    .page-5vin__faq-question:hover {
        background-color: #444;
    }

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

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

    .page-5vin__faq-item.active .page-5vin__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-5vin__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding */
        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;
        font-size: 1em;
    }

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

    /* CTA Section */
    .page-5vin__cta-section {
        padding: 60px 20px;
        background-color: #222;
        text-align: center;
    }

    .page-5vin__button--cta {
        background-color: #007bff;
        color: #ffffff;
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
        padding: 18px 40px;
        font-size: 1.3em;
        border-radius: 10px;
        margin-top: 30px;
    }

    .page-5vin__button--cta:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 123, 255, 0.7);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-5vin__hero-title {
            font-size: 2.8em;
        }
        .page-5vin__hero-subtitle {
            font-size: 1.3em;
        }
        .page-5vin__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-5vin__hero-section {
            height: 70vh;
        }
        .page-5vin__hero-title {
            font-size: 2.2em;
        }
        .page-5vin__hero-subtitle {
            font-size: 1.1em;
        }
        .page-5vin__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-5vin__button {
            width: 80%;
            margin: 0 auto;
            padding: 12px 25px;
        }
        .page-5vin__section-title {
            font-size: 1.8em;
            padding-top: 30px;
        }
        .page-5vin__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        /* Mobile list item responsiveness */
        .page-5vin__features-grid,
        .page-5vin__games-grid,
        .page-5vin__promo-grid {
            grid-template-columns: 1fr;
            padding: 0 10px;
        }

        .page-5vin__feature-item,
        .page-5vin__game-card,
        .page-5vin__promo-card,
        .page-5vin__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-5vin__feature-item,
        .page-5vin__game-card,
        .page-5vin__promo-card {
            padding: 20px;
        }

        .page-5vin__feature-icon,
        .page-5vin__game-image,
        .page-5vin__promo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-5vin__faq-question {
            padding: 15px;
        }
        .page-5vin__faq-question-text {
            font-size: 1.1em;
        }
        .page-5vin__faq-answer {
            padding: 0 15px;
        }
        .page-5vin__faq-item.active .page-5vin__faq-answer {
            padding: 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-5vin__hero-title {
            font-size: 1.8em;
        }
        .page-5vin__hero-subtitle {
            font-size: 1em;
        }
        .page-5vin__button {
            width: 90%;
            padding: 10px 20px;
            font-size: 1em;
        }
        .page-5vin__section-title {
            font-size: 1.6em;
        }
        .page-5vin__section-description {
            font-size: 0.9em;
        }
        .page-5vin__feature-title, .page-5vin__game-title, .page-5vin__promo-title {
            font-size: 1.4em;
        }
        .page-5vin__button--cta {
            padding: 15px 30px;
            font-size: 1.1em;
        }
    }
  