/* style/beginner-guide.css */

/* General Page Styles */
.page-beginner-guide {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* White text on dark background */
    background-color: #000000; /* Main dark background */
    line-height: 1.6;
}

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

.page-beginner-guide__container--center {
    text-align: center;
}

.page-beginner-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-beginner-guide__section:last-of-type {
    border-bottom: none;
}

.page-beginner-guide__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-beginner-guide__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-beginner-guide__description {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide__description--center {
    text-align: center;
}

.page-beginner-guide__content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-beginner-guide__content-block--reversed {
    flex-direction: row-reverse;
}

.page-beginner-guide__text-content {
    flex: 1;
    min-width: 300px;
}

.page-beginner-guide__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-beginner-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* Buttons */
.page-beginner-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-beginner-guide__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #000000; /* Black text */
}

.page-beginner-guide__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide__btn--secondary {
    background-color: #333333; /* Dark grey */
    color: #FFD700; /* Gold text */
    border: 1px solid #FFD700;
}

.page-beginner-guide__btn--secondary:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 25px;
}

.page-beginner-guide__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
    min-width: 250px;
    margin-top: 30px;
}

/* Hero Section */
.page-beginner-guide__hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-beginner-guide__hero > .page-beginner-guide__container {
    position: relative;
    z-index: 1;
}

.page-beginner-guide__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-beginner-guide__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Why Fun88 Section */
.page-beginner-guide__why-fun88 p {
    color: #cccccc;
    margin-bottom: 15px;
}

/* Getting Started Section */
.page-beginner-guide__step-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
}

.page-beginner-guide__step-item {
    background-color: #1a1a1a;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide__step-title {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-beginner-guide__step-item p {
    color: #e0e0e0;
}

/* Detail Guides Grid */
.page-beginner-guide__guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide__guide-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
}

.page-beginner-guide__guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-beginner-guide__card-title {
    font-size: 1.4em;
    color: #FFD700;
    margin: 0 15px 10px 15px;
}

.page-beginner-guide__card-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-beginner-guide__card-title a:hover {
    color: #ffffff;
}

.page-beginner-guide__card-description {
    color: #cccccc;
    font-size: 0.95em;
    margin: 0 15px 20px 15px;
    flex-grow: 1;
}

.page-beginner-guide__guide-card .page-beginner-guide__btn {
    margin-top: auto; /* Push button to bottom */
}

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

.page-beginner-guide__promo-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
}

.page-beginner-guide__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Responsible Gambling Section */
.page-beginner-guide__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-beginner-guide__contact-list li {
    display: flex;
    align-items: center;
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-beginner-guide__icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(80%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(1.2) contrast(1.2); /* Gold tint for icons */
}

.page-beginner-guide__icon--chat {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 9h12v2H6V9zm8 4H6v-2h8v2zm4-8H6V5h12v2z"/></svg>');
}
.page-beginner-guide__icon--phone {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.01.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.2c.27-.27.35-.66.24-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z"/></svg>');
}
.page-beginner-guide__icon--email {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide__hero-title {
        font-size: 3em;
    }
    .page-beginner-guide__section-title {
        font-size: 2em;
    }
    .page-beginner-guide__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-beginner-guide__content-block--reversed {
        flex-direction: column;
    }
    .page-beginner-guide__text-content, .page-beginner-guide__image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-beginner-guide__guides-grid, .page-beginner-guide__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-beginner-guide__hero-title {
        font-size: 2.5em;
    }
    .page-beginner-guide__section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide__description {
        font-size: 1em;
    }
    .page-beginner-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide__hero-title {
        font-size: 2em;
    }
    .page-beginner-guide__section-title {
        font-size: 1.5em;
    }
    .page-beginner-guide__hero-description {
        font-size: 1em;
    }
    .page-beginner-guide__step-item {
        padding: 20px;
    }
    .page-beginner-guide__step-title {
        font-size: 1.3em;
    }
    .page-beginner-guide__guide-card, .page-beginner-guide__promo-card {
        margin: 0 auto; /* Center single cards */
        max-width: 350px;
    }
}