/* style/original.css */

/* Base Styles for the page-original scope */
.page-original {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
}

/* Container for main content width */
.page-original__container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Section padding */
.page-original__section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Hero Section */
.page-original__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Brand color gradient */
    overflow: hidden;
}

.page-original__hero-image-wrapper {
    width: 100%;
    height: 675px; /* Display slot height for 1200x675 */
    overflow: hidden;
    position: relative;
}

.page-original__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-original__hero-content {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
    background-color: #0A0A0A; /* Dark background for text content */
    padding-left: 15px;
    padding-right: 15px;
}

.page-original__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* H1 font size clamp, not fixed large */
    font-weight: bold;
    color: #F2C14E; /* Primary brand color */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-original__lead-text {
    font-size: 1.1em;
    color: #FFF6D6; /* Text Main */
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* CTA Buttons */
.page-original__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-original__btn-primary,
.page-original__btn-secondary {
    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;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-original__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #ffffff;
    border: none;
}

.page-original__btn-primary:hover {
    background: linear-gradient(180deg, #FFE08A 0%, #E8B02D 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-original__btn-secondary {
    background-color: transparent;
    color: #F2C14E;
    border: 2px solid #F2C14E;
}

.page-original__btn-secondary:hover {
    background-color: #F2C14E;
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-original__btn-text {
    color: #F2C14E;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    position: relative;
    padding-bottom: 3px;
}

.page-original__btn-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #F2C14E;
    transition: width 0.3s ease;
}

.page-original__btn-text:hover::after {
    width: 0;
}

.page-original__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: #F2C14E;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.page-original__section-description {
    font-size: 1.05em;
    color: #FFF6D6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Card Styles */
.page-original__card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #FFF6D6; /* Text Main */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-original__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-original__card-title {
    font-size: 1.4em;
    color: #FFD36B; /* Auxiliary brand color */
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Features Section */
.page-original__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-original__feature-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Gaming Categories Section */
.page-original__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-original__category-icon {
    width: 30px; /* Allowed exception for category icons */
    height: 30px; /* Allowed exception for category icons */
    object-fit: contain;
    margin-bottom: 15px;
}

/* Promotions Section */
.page-original__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-original__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

/* Security and Mobile Sections (Content with Image) */
.page-original__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-original__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-original__text-block,
.page-original__image-block {
    flex: 1;
    min-width: 300px;
}

.page-original__responsive-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.page-original__support-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Getting Started Section */
.page-original__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-original__payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-width: 150px;
}

.page-original__payment-logo {
    width: 167px; /* Allowed exception for media partner logos */
    height: 127px; /* Allowed exception for media partner logos */
    object-fit: contain;
    margin-bottom: 10px;
    filter: none; /* Strict rule: No CSS filter to change image colors */
}

.page-original__center-text {
    text-align: center;
    margin-top: 40px;
}