/* style/game-strategies-slots.css */
.page-game-strategies-slots {
    font-family: 'Arial', sans-serif;
    color: #f2eee8; /* Light text for dark background */
    background-color: #0D1117;
    line-height: 1.6;
}

.page-game-strategies-slots-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-strategies-slots-highlight {
    color: #FFD700;
}

/* Hero Section */
.page-game-strategies-slots-hero {
    background: linear-gradient(135deg, #0D1117 0%, #1a1e26 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #FFD700;
}

.page-game-strategies-slots-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: page-game-strategies-slots-pulse 4s infinite alternate;
}

.page-game-strategies-slots-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    animation: page-game-strategies-slots-pulse 3s infinite alternate reverse;
}

@keyframes page-game-strategies-slots-pulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 0.9; }
}

.page-game-strategies-slots-hero-title {
    font-size: 3.5em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

.page-game-strategies-slots-hero-subtitle {
    font-size: 1.4em;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-game-strategies-slots-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-game-strategies-slots-btn-primary {
    background-color: #FFD700;
    color: #0D1117;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-game-strategies-slots-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 13px 28px;
}

.page-game-strategies-slots-btn-secondary:hover {
    background-color: #FFD700;
    color: #0D1117;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-game-strategies-slots-btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Section Styling */
.page-game-strategies-slots-introduction, 
.page-game-strategies-slots-types, 
.page-game-strategies-slots-selection, 
.page-game-strategies-slots-betting, 
.page-game-strategies-slots-tips, 
.page-game-strategies-slots-conclusion {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-strategies-slots-introduction p,
.page-game-strategies-slots-types p,
.page-game-strategies-slots-selection p,
.page-game-strategies-slots-betting p,
.page-game-strategies-slots-tips p,
.page-game-strategies-slots-conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #bbb;
}

.page-game-strategies-slots-section-title {
    font-size: 2.5em;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-game-strategies-slots-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

/* Image Styling */
.page-game-strategies-slots-image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-game-strategies-slots-image-right {
    float: right;
    width: 45%;
    margin-left: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-strategies-slots-image-left {
    float: left;
    width: 45%;
    margin-right: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Grid Layout for Types Section */
.page-game-strategies-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategies-slots-card {
    background-color: #1a1e26;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-strategies-slots-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-strategies-slots-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-strategies-slots-card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-strategies-slots-card p {
    color: #ccc;
    font-size: 1em;
}

/* List Styling */
.page-game-strategies-slots-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-game-strategies-slots-list li {
    background-color: #1a1e26;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
    overflow: hidden;
    clear: both;
}

.page-game-strategies-slots-list li h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-game-strategies-slots-list li p {
    color: #ccc;
    font-size: 1em;
    margin-bottom: 0;
}

/* Tips Section */
.page-game-strategies-slots-grid-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategies-slots-tip-item {
    background-color: #1a1e26;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-game-strategies-slots-tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-strategies-slots-tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}

.page-game-strategies-slots-tip-item h3 {
    font-size: 1.4em;
    color: #fff;
    margin-bottom: 15px;
}

.page-game-strategies-slots-tip-item p {
    color: #ccc;
    font-size: 1em;
    margin-bottom: 20px;
}

/* Conclusion */
.page-game-strategies-slots-conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-game-strategies-slots-conclusion p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-strategies-slots-hero-title {
        font-size: 2.8em;
    }
    .page-game-strategies-slots-hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-strategies-slots-section-title {
        font-size: 2em;
    }
    .page-game-strategies-slots-image-right, 
    .page-game-strategies-slots-image-left {
        float: none;
        width: 100%;
        margin: 20px 0;
    }
    .page-game-strategies-slots-list li {
        clear: both;
    }
}

@media (max-width: 768px) {
    .page-game-strategies-slots-hero {
        padding: 80px 0;
    }
    .page-game-strategies-slots-hero-title {
        font-size: 2.2em;
    }
    .page-game-strategies-slots-hero-subtitle {
        font-size: 1em;
    }
    .page-game-strategies-slots-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-strategies-slots-btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-game-strategies-slots-section-title {
        font-size: 1.8em;
    }
    .page-game-strategies-slots-introduction, 
    .page-game-strategies-slots-types, 
    .page-game-strategies-slots-selection, 
.page-game-strategies-slots-betting, 
.page-game-strategies-slots-tips, 
.page-game-strategies-slots-conclusion {
        padding: 40px 0;
    }
    .page-game-strategies-slots-grid, .page-game-strategies-slots-grid-two-col {
        grid-template-columns: 1fr;
    }
    .page-game-strategies-slots-card, .page-game-strategies-slots-tip-item {
        padding: 20px;
    }
    .page-game-strategies-slots-list li {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-game-strategies-slots-hero-title {
        font-size: 1.8em;
    }
    .page-game-strategies-slots-hero-subtitle {
        font-size: 0.9em;
    }
    .page-game-strategies-slots-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-strategies-slots-section-title {
        font-size: 1.5em;
    }
    .page-game-strategies-slots-introduction p,
    .page-game-strategies-slots-types p,
    .page-game-strategies-slots-selection p,
    .page-game-strategies-slots-betting p,
    .page-game-strategies-slots-tips p,
    .page-game-strategies-slots-conclusion p {
        font-size: 0.95em;
    }
    .page-game-strategies-slots-card-title, .page-game-strategies-slots-list li h3, .page-game-strategies-slots-tip-item h3 {
        font-size: 1.2em;
    }
}