/* style/slots.css */
.page-slots {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #1a1a1a;
}

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

.page-slots__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-slots__hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('[GALLERY:bg:slots,casino_background,abstract_pattern]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-slots__hero .page-slots__container {
    position: relative;
    z-index: 1;
}

.page-slots__hero-title {
    font-size: 3.8em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-slots__hero-subtitle {
    font-size: 1.4em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-slots__btn {
    display: inline-block;
    padding: 15px 35px;
    margin: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-slots__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-slots__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-slots__btn--secondary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.page-slots__btn--secondary:hover {
    background-color: #a00000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.6);
}

.page-slots__btn--large {
    padding: 18px 45px;
    font-size: 1.2em;
}

.page-slots__intro {
    padding: 60px 0;
    background-color: #2a2a2a;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots__intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-slots__intro-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-slots__intro-content {
        order: 1;
    }
    .page-slots__intro-image {
        order: 2;
    }
}

.page-slots__intro-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-slots__intro-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-slots__intro-content ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #f0f0f0;
}

.page-slots__icon {
    color: #FFD700;
    font-size: 1.3em;
    margin-right: 10px;
}

.page-slots__img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slots__game-types {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-slots__grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .page-slots__grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.page-slots__game-card, .page-slots__promo-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots__game-card:hover, .page-slots__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-slots__game-card img, .page-slots__promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-slots__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slots__card-description {
    font-size: 1em;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 25px;
}

.page-slots__btn--small {
    padding: 10px 25px;
    font-size: 0.95em;
}

.page-slots__features {
    padding: 60px 0;
    background-color: #2a2a2a;
}

.page-slots__features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .page-slots__features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.page-slots__features-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots__icon-large {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-slots__features-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slots__features-item p {
    font-size: 1em;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 20px;
}

.page-slots__btn--text {
    background: none;
    border: none;
    color: #FFD700;
    padding: 0;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.page-slots__btn--text:hover {
    text-decoration: underline;
    color: #e6c200;
}

.page-slots__arrow-icon {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.page-slots__btn--text:hover .page-slots__arrow-icon {
    transform: translateX(5px);
}

.page-slots__cta-banner {
    background: linear-gradient(90deg, #8B0000, #a00000);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    border-top: 5px solid #FFD700;
    border-bottom: 5px solid #FFD700;
}

.page-slots__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-slots__promotions {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-slots__promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .page-slots__promo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.page-slots__promo-note {
    text-align: center;
    font-size: 0.95em;
    color: #aaaaaa;
    margin-top: 40px;
    line-height: 1.6;
}

.page-slots__faq {
    padding: 60px 0;
    background-color: #2a2a2a;
}

.page-slots__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-slots__accordion-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slots__accordion-header {
    background-color: #8B0000;
    color: #FFD700;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-slots__accordion-header:hover {
    background-color: #a00000;
}

.page-slots__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-slots__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-slots__accordion-content {
    padding: 0 25px;
    background-color: #2a2a2a;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-slots__accordion-content p {
    padding: 15px 0;
    font-size: 1em;
    line-height: 1.7;
    color: #cccccc;
}

.page-slots__accordion-content a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-slots__accordion-content a:hover {
    text-decoration: underline;
}

.page-slots__final-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #1a1a1a;
}

.page-slots__cta-buttons {
    margin-top: 40px;
}

@media (max-width: 767px) {
    .page-slots__hero-title {
        font-size: 2.5em;
    }
    .page-slots__hero-subtitle {
        font-size: 1.1em;
    }
    .page-slots__section-title {
        font-size: 2em;
    }
    .page-slots__cta-title {
        font-size: 2em;
    }
    .page-slots__btn--large {
        width: 100%;
        margin: 10px 0;
    }
    .page-slots__intro-grid, .page-slots__features-grid, .page-slots__grid-3, .page-slots__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-slots__game-card, .page-slots__promo-card, .page-slots__features-item {
        padding: 20px;
    }
    .page-slots__card-title, .page-slots__features-title {
        font-size: 1.5em;
    }
    .page-slots__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-slots__accordion-content p {
        padding: 10px 0;
    }
}