/* General Styles */
body {
    background-color: #2d3447;
    color: #f0f0f0;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 40px 0;
    margin: 15px;
    background-color: rgba(29, 33, 88, 0.2);
    border-radius: 12px;
    border: 1px solid #1d2158;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #eaae16;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: #96a5d1;
    color: #1d2158;
}

.btn-secondary {
    background-color: #eaae16;
    color: #1d2158;
}

/* Header */
.header {
    background-color: #1d2158;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #eaae16;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    max-height: 40px;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.downloads-counter {
    color: #f0f0f0;
    font-size: 0.9rem;
}

.downloads-counter .icon {
    color: #eaae16;
    margin-right: 5px;
}

/* Hero Section */
.hero {
    background: url('/img/hero-banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    text-align: center;
    position: relative;
    color: white;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 52, 71, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.app-info-table {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    background: rgba(29, 33, 88, 0.8);
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

.app-info-table th, .app-info-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #2d3447;
}

.app-info-table th {
    background-color: #96a5d1;
    color: #1d2158;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Table of Contents */
.toc ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.toc ul li a {
    color: #96a5d1;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.toc ul li a:hover {
    color: #eaae16;
}

/* Pros and Cons */
.pros-cons {
    display: flex;
    gap: 30px;
}

.pros-cons > div {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
}

.pros-cons h3 {
    margin-top: 0;
    color: #eaae16;
}

.pros-cons ul {
    list-style-type: '✓ ';
    padding-left: 20px;
}

.pros-cons .cons ul {
    list-style-type: '✗ ';
}

/* Jackpots */
.jackpot-block {
    text-align: center;
    background: linear-gradient(45deg, #eaae16, #96a5d1);
    padding: 40px 20px;
    border-radius: 12px;
}

.jackpot-amount {
    font-size: 4rem;
    font-weight: bold;
    color: #1d2158;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Winners */
.winners-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    border-collapse: collapse;
}

.winners-table th, .winners-table td {
    padding: 12px;
    border: 1px solid #1d2158;
}

.winners-table th {
    background-color: #1d2158;
    color: #eaae16;
}

/* Bonuses & Games */
.slider-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bonus-card, .game-card {
    background-color: #1d2158;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.bonus-card:hover, .game-card:hover {
    transform: translateY(-10px);
}

.game-card img {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Review Content */
.review-content {
    background: #1d2158;
    padding: 25px;
    border-radius: 8px;
}
.review-content h3 {
    color: #eaae16;
    margin-top: 20px;
}
.review-content p {
    margin-bottom: 15px;
}
.review-content ol, .review-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}
.review-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    text-align: left;
}
.review-content th, .review-content td {
    padding: 10px;
    border: 1px solid #2d3447;
}
.review-content th {
    background-color: #2d3447;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: #1d2158;
    padding: 20px;
    border-radius: 8px;
}

.review-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-card-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.review-card .stars {
    color: #eaae16;
}

.review-form {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    background: #2d3447;
    border: 1px solid #1d2158;
    color: #f0f0f0;
    border-radius: 4px;
}

/* Author */
.author-block {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #1d2158;
    padding: 30px;
    border-radius: 12px;
}

.author-block img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.author-socials a {
    margin-right: 10px;
    color: #96a5d1;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #1d2158;
    color: #ccc;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logos img {
    max-height: 30px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s;
}
.footer-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
}

.copyright {
    font-size: 0.8rem;
    margin-top: 20px;
}

/* Widget */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1d2158;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1001;
    border-top: 2px solid #eaae16;
}

.sticky-widget .bonus-text {
    color: #eaae16;
    font-weight: bold;
}

.sticky-widget a {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
    .pros-cons, .author-block {
        flex-direction: column;
    }
    .slider-container {
        grid-template-columns: 1fr;
    }
    .jackpot-amount {
        font-size: 3rem;
    }
}

/* Wordpress-like junk styles */
.wp-block-button__link {
    color: #fff;
    background-color: #32373c;
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em;
}
.elementor-widget-container {
    margin: 0 0 15px 0;
}
.yoast-seo-breadcrumb {
    display: none;
}


.wrapper {
    width: 100%;
    overflow: hidden;
}
