/* style/slots-games-new-releases.css */

.page-slots-games-new-releases {
    font-family: 'Arial', sans-serif;
    color: #f5dcbd; /* Light text for dark background */
    background-color: #0A2342; /* Main dark blue background */
}

.page-slots-games-new-releases__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slots-games-new-releases__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-slots-games-new-releases__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,gaming_pattern,subtle]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-slots-games-new-releases__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-slots-games-new-releases__hero-subtitle {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-slots-games-new-releases__section {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-slots-games-new-releases__section:nth-of-type(even) {
    background-color: #0F2F52; /* Slightly lighter dark blue for alternating sections */
}

.page-slots-games-new-releases__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-slots-games-new-releases__section-description {
    font-size: 1.1em;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.page-slots-games-new-releases__grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slots-games-new-releases__feature-card {
    background-color: #1a3a60; /* Darker blue for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-new-releases__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-slots-games-new-releases__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-slots-games-new-releases__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-slots-games-new-releases__feature-card p {
    font-size: 1em;
    color: #e0e0e0;
    line-height: 1.5;
}

.page-slots-games-new-releases__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 10px;
}

.page-slots-games-new-releases__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-slots-games-new-releases__btn--secondary {
    background-color: #0F2F52; /* Darker blue button */
    color: #FFD700; /* Gold text */
    border: 1px solid #FFD700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-slots-games-new-releases__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.page-slots-games-new-releases__btn--link {
    background: none;
    border: none;
    color: #FFD700;
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
    margin: 10px 0;
}

.page-slots-games-new-releases__btn--link:hover {
    color: #e6c200;
    text-decoration: none;
}

.page-slots-games-new-releases__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-slots-games-new-releases__game-card {
    background-color: #1a3a60;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-new-releases__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-slots-games-new-releases__game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-slots-games-new-releases__game-card h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin: 20px 20px 10px 20px;
}

.page-slots-games-new-releases__game-card p {
    font-size: 0.95em;
    color: #cccccc;
    padding: 0 20px 20px 20px;
    line-height: 1.5;
}

.page-slots-games-new-releases__game-card .page-slots-games-new-releases__btn {
    margin: 0 20px 20px 20px;
    width: calc(100% - 40px);
    text-align: center;
}

.page-slots-games-new-releases__more-games-text {
    margin-top: 40px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-slots-games-new-releases__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-slots-games-new-releases__step-card {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-new-releases__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #0A2342;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.page-slots-games-new-releases__step-card h3 {
    margin-top: 30px;
}

.page-slots-games-new-releases__optimization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-slots-games-new-releases__optimization-item {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-new-releases__optimization-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-slots-games-new-releases__app-download {
    background: linear-gradient(135deg, #0A2342, #0F2F52);
    padding: 80px 0;
}

.page-slots-games-new-releases__qr-code {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    border: 5px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-slots-games-new-releases__app-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-slots-games-new-releases__app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-slots-games-new-releases__btn--app-ios, 
.page-slots-games-new-releases__btn--app-android {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: bold;
    text-transform: uppercase;
}

.page-slots-games-new-releases__btn--app-ios {
    background-color: #fff;
    color: #0A2342;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games-new-releases__btn--app-ios:hover {
    background-color: #f0f0f0;
}

.page-slots-games-new-releases__btn--app-android {
    background-color: #3DDC84;
    color: #0A2342;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games-new-releases__btn--app-android:hover {
    background-color: #30b16a;
}

.page-slots-games-new-releases__app-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.page-slots-games-new-releases__btn--app-ios .page-slots-games-new-releases__app-icon {
    filter: none;
}

.page-slots-games-new-releases__app-note {
    margin-top: 20px;
    font-size: 1em;
    color: #cccccc;
}