/*
Theme Name: MM Win - ProWebsite
Theme URI: https://megamedusa.com
Description: A custom WordPress theme with vertical navigation, modern design, and full RankMath SEO compatibility
Version: 1.2.0
Author: MegaMedusa
Author URI: https://megamedusa.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mm-win
*/

/* ===========================
   CSS Reset & Base Styles
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

@font-face {
    font-family: 'Modesto Poster';
    src: url('assets/fonts/Modesto-Poster-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Modesto Condensed';
    src: url('assets/fonts/Modesto-Condensed.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===========================
   Main Layout
=========================== */
.site-wrapper {
    display: flex;
    min-height: 100vh;
}

.main-content-wrapper {
    flex: 1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#032c2c));
    background-image: linear-gradient(#000000, #032c2c);
    padding: 0;
    width: calc(100% - 300px);
    margin-right: 300px;
}

/* ===========================
   Vertical Sidebar (Right)
=========================== */
.vertical-sidebar {
    width: 300px;
    background-color: #173f3c;
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    overflow-y: hidden;
    overflow-x: hidden;
    z-index: 1000;
}

/* Hide scrollbar for sidebar */
.vertical-sidebar::-webkit-scrollbar {
    display: none;
}

.vertical-sidebar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Top Section - Logo & Buttons */
.sidebar-top-section {
    background-color: #173f3c;
    padding: 30px 20px;
    text-align: center;
}

.sidebar-logo {
    margin-bottom: 30px;
}

.sidebar-logo img {
    max-width: 240px;
    height: auto;
}

.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
}

.btn-register {
    background-color: #ffeb3b;
    color: #2f5d61;
}

.btn-register:hover {
    background-color: #fdd835;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-login {
    background: linear-gradient(#FFFFFF, #E3FDF1);
    color: #2f5d61;
}

.btn-login:hover {
    background: linear-gradient(#f5f5f5, #d0f5e3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Menu Section */
.sidebar-menu-section {
    background-color: #072221;
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Hide scrollbar but keep functionality */
.sidebar-menu-section::-webkit-scrollbar {
    display: none;
}

.sidebar-menu-section {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu > li {
    position: relative;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 4px 20px;
    color: #99ff02;
    transition: color 0.3s ease;
    gap: 12px;
    font-size: 20px;
}

.sidebar-menu > li.menu-item-has-children > a {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

.sidebar-menu > li:not(.menu-item-has-children) > a {
    color: #99ff02;
    font-weight: 500;
}

/* Make all top-level menu items uppercase */
.sidebar-menu > li > a {
    text-transform: uppercase;
}

.sidebar-menu .menu-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-menu .menu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Apply lime filter to icons of regular menu items */
.sidebar-menu > li:not(.menu-item-has-children) .menu-icon img {
    filter: brightness(0) saturate(100%) invert(89%) sepia(67%) saturate(1513%) hue-rotate(23deg) brightness(102%) contrast(101%);
    transition: filter 0.3s ease;
}

/* White filter for parent menu icons */
.sidebar-menu > li.menu-item-has-children > a > .menu-icon img {
    filter: brightness(0) saturate(100%) invert(100%);
    transition: filter 0.3s ease;
}

/* Lime filter for sub-menu icons */
.sidebar-menu .sub-menu .menu-icon img {
    filter: brightness(0) saturate(100%) invert(89%) sepia(67%) saturate(1513%) hue-rotate(23deg) brightness(102%) contrast(101%);
    transition: filter 0.3s ease;
}

/* Change icon to white on hover */
.sidebar-menu a:hover .menu-icon img {
    filter: brightness(0) saturate(100%) invert(100%) !important;
}

.sidebar-menu a:hover {
    color: #ffffff !important;
}

/* Sub-menu styles */
.sidebar-menu .sub-menu {
    padding-left: 35px;
}

.sidebar-menu .sub-menu a {
    color: #99ff02;
    font-size: 18px;
    padding: 3px 20px;
}

/* Support Button Section */
.sidebar-support-section {
    background-color: #072221;
    padding: 20px;
}

.support-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(#FFFFFF, #E3FDF1);
    color: #2f5d61;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.support-button:hover {
    background: linear-gradient(#f5f5f5, #d0f5e3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(47, 93, 97, 0.3);
}

.support-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===========================
   Main Content Area
=========================== */
.main-content {
    width: 100%;
    max-width: 100%;
}

.main-content h1 {
    color: #99ff02;
    margin-bottom: 20px;
}

.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
    color: #ffffff;
}

.main-content p {
    color: #ffffff;
    margin-bottom: 15px;
}

/* Homepage Specific Styles */
.homepage-content {
    padding: 40px 60px;
    width: 100%;
}

/* Promotional Banner */
.promo-banner {
    background-image: url('promo/promo-bg.jpg');
    background-size: cover;
    background-position: center center;
    border-radius: 30px;
    padding: 40px 50px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
    min-height: 350px;
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    align-items: center;
}

.promo-content a {
    margin-bottom: -15px;
}

.promo-bonus-image {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.promo-button-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.promo-button-image:hover {
    transform: scale(1.05);
}

.promo-lightning-image {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Currency Logos */
.currency-logos {
    text-align: center;
    padding: 5px 0;
    margin-bottom: 40px;
    margin-top: -20px;
}

.currency-image {
    max-width: 300px;
    height: auto;
}

/* Games Sections */
.games-section {
    margin-bottom: 60px;
}

.games-section h2 {
    color: #99ff02;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: left;
    font-family: 'Modesto Poster', 'Roboto', sans-serif;
}

/* New Games Section - White Title */
.new-games-section h2 {
    color: #ffffff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 25px;
}

.game-card {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(153, 255, 2, 0.4);
}

.game-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Table Games Background */
.table-games-section {
    background-color: #ceecc4;
    padding: 50px 60px;
    border-radius: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.table-games-section .games-grid,
.table-games-section h2 {
    max-width: calc(100vw - 300px - 120px);
    margin: 0 auto;
}

.table-games-section h2 {
    color: #2F5D61;
}

/* Video Poker Background */
.video-poker-section {
    background-color: #ceecc4;
    padding: 50px 60px;
    border-radius: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.video-poker-section .games-grid,
.video-poker-section h2 {
    max-width: calc(100vw - 300px - 120px);
    margin: 0 auto;
}

.video-poker-section h2 {
    color: #2F5D61;
}

/* Jackpot Section */
.jackpot-section {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    background-image: url('assets/jackpots/home-jackpots-larger-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 50px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.jackpot-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.jackpot-amount {
    font-size: 6rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Modesto Condensed', 'Roboto', sans-serif;
    margin-bottom: 5px;
    line-height: 1;
    letter-spacing: 8px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.jackpot-text {
    font-size: 3rem;
    color: #e2fcf0;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 4px;
    font-family: 'Modesto Condensed', 'Roboto', sans-serif;
}

.jackpot-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffeb3b;
    color: #2F5D61;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.jackpot-button:hover {
    background-color: #fdd835;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
}

.jackpot-right {
    flex: 1;
}

.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.jackpot-card {
    background-color: rgba(7, 34, 33, 0.5);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(153, 255, 2, 0.2);
    transition: all 0.3s ease;
}

.jackpot-card:hover {
    transform: translateY(-5px);
    border-color: rgba(153, 255, 2, 0.4);
    box-shadow: 0 8px 25px rgba(153, 255, 2, 0.3);
}

.jackpot-card-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 10px;
}

.jackpot-card-amount {
    color: #99ff02;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.jackpot-card-name {
    color: #e2fcf0;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Fast Cashout Promo Section */
.cashout-promo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 60px;
    background-image: url('assets/home-footer-promo-larger-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 80px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-height: 350px;
}

.cashout-promo-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cashout-promo-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Modesto Condensed', 'Roboto', sans-serif;
    margin-bottom: 5px;
    line-height: 1.1;
    letter-spacing: 3px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.cashout-promo-subtitle {
    font-size: 4rem;
    font-weight: 700;
    color: #e2fcf0;
    font-family: 'Modesto Condensed', 'Roboto', sans-serif;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 3px;
}

.cashout-promo-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffeb3b;
    color: #2F5D61;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.cashout-promo-button:hover {
    background-color: #fdd835;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
}

.welcome-section {
    background-color: rgba(153, 255, 2, 0.1);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.welcome-section h1 {
    font-size: 3rem;
    color: #99ff02;
    margin-bottom: 15px;
}

.welcome-section p {
    font-size: 1.2rem;
    color: #ffffff;
}

.homepage-intro {
    background-color: rgba(7, 34, 33, 0.5);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.homepage-intro h2 {
    color: #99ff02;
    margin-bottom: 20px;
}

.homepage-intro ul {
    list-style: disc;
    margin-left: 20px;
    color: #ffffff;
}

.homepage-intro li {
    margin-bottom: 10px;
    color: #ffffff;
}

/* Recent Posts Section */
.recent-posts-section {
    margin-top: 50px;
}

.recent-posts-section h2 {
    color: #99ff02;
    font-size: 2rem;
    margin-bottom: 30px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: rgba(7, 34, 33, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(153, 255, 2, 0.2);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(153, 255, 2, 0.3);
    border-color: rgba(153, 255, 2, 0.4);
}

.post-card-image {
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 25px;
}

.post-card-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.post-card-content h3 a {
    color: #99ff02;
    transition: color 0.3s ease;
}

.post-card-content h3 a:hover {
    color: #ffffff;
}

.post-meta {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-excerpt {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more-link {
    color: #99ff02;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Entry Meta */
.entry-meta {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.entry-meta span {
    margin-right: 15px;
}

/* Entry Content */
/* ===========================
   Single Post & Page Styles
=========================== */

.single-post-content,
.page-content {
    padding: 40px 60px;
    max-width: 100%;
}

.single-post-content article,
.page-content article {
    background-color: rgba(7, 34, 33, 0.6);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Entry Header */
.entry-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(153, 255, 2, 0.2);
}

.entry-title {
    font-size: 2.5rem;
    color: #ffffff;
    font-family: 'Modesto Poster', 'Roboto', sans-serif;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #99ff02;
}

.entry-meta span {
    display: inline-block;
}

.entry-meta .byline,
.entry-meta .posted-on,
.entry-meta .cat-links {
    color: #cccccc;
}

.entry-meta a {
    color: #99ff02;
    text-decoration: none;
}

.entry-meta a:hover {
    color: #ffffff;
}

/* Post Thumbnail */
.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Entry Content */
.entry-content {
    line-height: 1.8;
    color: #ffffff;
    font-size: 16px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #99ff02;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.entry-content h1 {
    font-size: 2.2rem;
}

.entry-content h2 {
    font-size: 2rem;
}

.entry-content h3 {
    font-size: 1.6rem;
}

.entry-content h4 {
    font-size: 1.4rem;
}

.entry-content h5 {
    font-size: 1.2rem;
}

.entry-content h6 {
    font-size: 1rem;
}

.entry-content a {
    color: #99ff02;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: #ffffff;
}

.entry-content img {
    border-radius: 10px;
    margin: 25px 0;
    max-width: 100%;
    height: auto;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
    color: #ffffff;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 10px;
}

.entry-content blockquote {
    background-color: rgba(153, 255, 2, 0.1);
    border-left: 4px solid #99ff02;
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
    color: #e2fcf0;
    border-radius: 5px;
}

.entry-content code {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #99ff02;
    font-size: 0.9em;
}

.entry-content pre {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.entry-content table th,
.entry-content table td {
    padding: 12px;
    border: 1px solid rgba(153, 255, 2, 0.3);
    text-align: left;
}

.entry-content table th {
    background-color: rgba(153, 255, 2, 0.2);
    color: #99ff02;
    font-weight: 700;
}

.entry-content table tr:hover {
    background-color: rgba(153, 255, 2, 0.05);
}

/* Page Links */
.page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(153, 255, 2, 0.2);
    color: #99ff02;
}

.page-links a {
    color: #99ff02;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #99ff02;
    border-radius: 5px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background-color: #99ff02;
    color: #072221;
}

/* Entry Footer (Tags) */
.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(153, 255, 2, 0.2);
}

.tags-links {
    color: #cccccc;
}

.tags-links a {
    display: inline-block;
    background-color: rgba(153, 255, 2, 0.15);
    color: #99ff02;
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    margin: 5px 5px 5px 0;
    transition: all 0.3s ease;
}

.tags-links a:hover {
    background-color: #99ff02;
    color: #072221;
}

/* Post Navigation */
.post-navigation {
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(7, 34, 33, 0.4);
    border-radius: 15px;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation a {
    display: block;
    padding: 20px;
    background-color: rgba(153, 255, 2, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.post-navigation a:hover {
    background-color: rgba(153, 255, 2, 0.2);
    border-color: #99ff02;
}

.post-navigation .nav-subtitle {
    display: block;
    color: #99ff02;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-navigation .nav-title {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

/* Comments Section */
.comments-area {
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(7, 34, 33, 0.4);
    border-radius: 15px;
}

.comments-title {
    font-size: 1.8rem;
    color: #99ff02;
    margin-bottom: 25px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-body {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.comment-author {
    color: #99ff02;
    font-weight: 700;
    margin-bottom: 8px;
}

.comment-meta {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 15px;
}

.comment-content {
    color: #ffffff;
    line-height: 1.6;
}

.reply {
    margin-top: 10px;
}

.reply a {
    color: #99ff02;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 12px;
    background-color: rgba(153, 255, 2, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.reply a:hover {
    background-color: #99ff02;
    color: #072221;
}

/* Post Thumbnail */
.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Page Links */
.page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(153, 255, 2, 0.2);
}

/* Pagination */
.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-numbers {
    padding: 10px 15px;
    background-color: rgba(7, 34, 33, 0.8);
    color: #99ff02;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(153, 255, 2, 0.3);
}

.page-numbers:hover,
.page-numbers.current {
    background-color: #99ff02;
    color: #000000;
    border-color: #99ff02;
}

/* Post Navigation */
.post-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(153, 255, 2, 0.2);
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 5px;
}

.nav-title {
    color: #99ff02;
    font-weight: 600;
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title {
    color: #ffffff;
}

/* ===========================
   Responsive Design
=========================== */
@media screen and (max-width: 1024px) {
    .vertical-sidebar {
        width: 250px;
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    /* Show mobile header */
    .mobile-header {
        display: block!important;
    }
    
    /* Hide sidebar by default on mobile */
    .vertical-sidebar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        z-index: 999;
        transition: right 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        background-color: #072221 !important;
    }
    
    /* Show sidebar when menu is open */
    .vertical-sidebar.mobile-menu-open {
        right: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    /* Hide top section on mobile */
    .vertical-sidebar .sidebar-top-section {
        display: none !important;
    }
    
    .vertical-sidebar .sidebar-menu-section {
        background-color: #072221 !important;
        flex: 1 1 auto;
        overflow-y: auto;
        margin-top: 80px;
        padding-top: 20px;
    }
    
    .vertical-sidebar .sidebar-support-section {
        background-color: #072221 !important;
        flex: 0 0 auto;
        margin-bottom: 80px;
        padding-bottom: 20px;
    }
    
    /* Make sure menu items are visible on mobile */
    .vertical-sidebar .sidebar-menu a {
        color: #99ff02 !important;
    }
    
    .vertical-sidebar .sidebar-menu > li.menu-item-has-children > a {
        color: #ffffff !important;
    }
    
    /* Ensure logo and buttons are visible */
    .vertical-sidebar .sidebar-logo,
    .vertical-sidebar .sidebar-buttons,
    .vertical-sidebar .sidebar-navigation {
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    /* Adjust main content for mobile header */
    .site-wrapper {
        flex-direction: column;
        margin-top: 70px;
    }
    
    .main-content-wrapper {
        padding: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .homepage-content {
        padding: 20px 30px;
    }
    
    .sidebar-top-section {
        padding: 20px 15px;
    }
    
    .sidebar-logo img {
        max-width: 200px;
    }
    
    .sidebar-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn {
        flex: 1;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .welcome-section {
        padding: 30px 20px;
    }
    
    .welcome-section h1 {
        font-size: 2rem;
    }
    
    .welcome-section p {
        font-size: 1rem;
    }
    
    .homepage-intro {
        padding: 30px 20px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .promo-banner {
        padding: 30px 25px;
        background-position: center center;
        position: relative;
        align-items: flex-end;
    }
    
    .promo-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
        border-radius: 30px;
        pointer-events: none;
    }
    
    .promo-content {
        gap: 15px;
        position: relative;
        z-index: 1;
        margin-top: 100px;
    }
    
    .recent-posts-section h2 {
        font-size: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .games-section h2 {
        font-size: 2rem;
    }
    
    .table-games-section,
    .video-poker-section {
        padding: 40px 0;
    }
    
    /* Single Post & Page Responsive */
    .single-post-content,
    .page-content {
        padding: 30px 30px;
    }
    
    .single-post-content article,
    .page-content article {
        padding: 30px;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .post-navigation .nav-links {
        flex-direction: column;
    }
    
    .entry-content h1 {
        font-size: 1.8rem;
    }
    
    .entry-content h2 {
        font-size: 1.6rem;
    }
    
    .entry-content h3 {
        font-size: 1.4rem;
    }
    
    .table-games-section .games-grid,
    .table-games-section h2,
    .video-poker-section .games-grid,
    .video-poker-section h2 {
        max-width: calc(100% - 60px);
        margin-left: 30px;
        margin-right: 30px;
        padding-left: 0;
        margin-bottom: 20px;
    }
    
    .currency-image {
        max-width: 300px;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .jackpot-section {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .jackpot-amount {
        font-size: 4rem;
    }
    
    .jackpot-text {
        font-size: 2rem;
    }
    
    .jackpot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cashout-promo-section {
        padding: 60px 30px;
        min-height: 300px;
    }
    
    .cashout-promo-title,
    .cashout-promo-subtitle {
        font-size: 3rem;
    }
    
    /* Footer Responsive */
    .footer-main {
        max-width: 100%;
        width: 100%;
        padding: 0 30px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-nav-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-separator {
        max-width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-features {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
}

@media screen and (max-width: 520px) {
    /* Mobile header adjustments for small screens */
    .mobile-header-content {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .mobile-logo {
        max-width: 150px;
    }
    
    .mobile-logo img,
    .mobile-logo .custom-logo-link img {
        max-height: 50px !important;
        display: block !important;
    }
    
    .btn-register-mobile,
    .btn-login-mobile {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .mobile-buttons {
        gap: 6px;
    }
    
    .sidebar-buttons {
        flex-direction: column;
    }
    
    .main-content-wrapper {
        padding: 0;
        width: 100%;
    }
    
    .homepage-content {
        padding: 15px 20px;
    }
    
    .welcome-section {
        padding: 20px 15px;
    }
    
    .welcome-section h1 {
        font-size: 1.75rem;
    }
    
    .homepage-intro {
        padding: 20px 15px;
    }
    
    .post-card-content {
        padding: 20px;
    }
    
    .promo-banner {
        padding: 25px 20px;
        background-image: url(assets/promo-bg-mob.jpg) !important;
        background-position: center top !important;
        align-items: flex-end;
        min-height: 450px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    
    .promo-banner::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) !important;
    }
    
    .promo-content {
        margin-top: 150px;
    }
    
    .promo-bonus-image {
        max-width: 75%;
    }
    
    .promo-button-image {
        max-width: 250px;
    }
    
    .promo-lightning-image {
        max-width: 200px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .games-section h2 {
        font-size: 1.5rem;
    }
    
    .table-games-section,
    .video-poker-section {
        padding: 30px 0;
    }
    
    /* Single Post & Page Mobile */
    .single-post-content,
    .page-content {
        padding: 20px 20px;
    }
    
    .single-post-content article,
    .page-content article {
        padding: 25px 20px;
    }
    
    .entry-title {
        font-size: 1.8rem;
    }
    
    .entry-meta {
        font-size: 13px;
        gap: 12px;
    }
    
    .entry-content {
        font-size: 15px;
    }
    
    .entry-content h1 {
        font-size: 1.6rem;
    }
    
    .entry-content h2 {
        font-size: 1.4rem;
    }
    
    .entry-content h3 {
        font-size: 1.2rem;
    }
    
    .post-navigation {
        padding: 20px;
    }
    
    .post-navigation a {
        padding: 15px;
    }
    
    .post-navigation .nav-title {
        font-size: 16px;
    }
    
    .comments-area {
        padding: 20px;
    }
    
    .table-games-section .games-grid,
    .table-games-section h2,
    .video-poker-section .games-grid,
    .video-poker-section h2 {
        max-width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
        padding-left: 0;
    }
    
    .currency-image {
        max-width: 250px;
    }
    
    .jackpot-amount {
        font-size: 2.2rem;
        margin-bottom: 2px;
        letter-spacing: 4px;
    }
    
    .jackpot-text {
        font-size: 1.2rem;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }
    
    .jackpot-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .jackpot-section {
        padding: 30px 20px;
        background-image: url(assets/home-jackpots-mobile-bg.jpg) !important;
        background-position: center center;
        position: relative;
        background-size: auto;
        background-repeat: no-repeat;
        background-position: top;
    
    }
    
    .jackpot-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(3, 44, 44, 0) 0%, rgba(3, 44, 44, 1) 100%);
        border-radius: 30px;
        pointer-events: none;
    }
    
    .jackpot-left,
    .jackpot-right {
        position: relative;
        z-index: 1;
    }
    
    .cashout-promo-section {
        padding: 50px 20px;
        min-height: 250px;
    }
    
    .cashout-promo-title,
    .cashout-promo-subtitle {
        font-size: 2.2rem;
    }
    
    .cashout-promo-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* Footer Responsive Mobile */
    .footer-main {
        padding: 0 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .footer-top {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }
    
    .footer-logo {
        text-align: center !important;
        width: 100% !important;
        flex: none !important;
    }
    
    .footer-menu {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    .footer-nav-menu {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .footer-column-menu {
        text-align: center !important;
    }
    
    .footer-column-menu li {
        margin-bottom: 8px !important;
        text-align: center !important;
    }
    
    .footer-links {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }
    
    .footer-help-links {
        flex-direction: row !important;
        gap: 20px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        width: 100% !important;
    }
    
    .footer-help-links::before {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }
    
    .footer-help-item {
        flex-direction: row !important;
        gap: 8px !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .footer-help-item img {
        width: 30px !important;
    }
    
    .footer-help-item span {
        font-size: 11px !important;
    }
    
    .footer-features {
        display: flex !important;
        flex-direction: row !important;
        gap: 15px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        width: 100% !important;
    }
    
    .footer-feature-item {
        flex-direction: row !important;
        gap: 8px !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .footer-feature-item img {
        width: 30px !important;
    }
    
    .footer-feature-item span {
        font-size: 10px !important;
        line-height: 1.2 !important;
        max-width: 60px !important;
    }
    
    .footer-copyright {
        text-align: center !important;
    }
    
    .footer-copyright p {
        font-size: 12px !important;
    }
    
    .footer-separator {
        max-width: 100% !important;
    }
    
    .footer-currency {
        text-align: center !important;
    }
}

/* ===========================
   Footer Section
=========================== */
.site-footer {
    background: linear-gradient(to bottom, #062c2c, #000000);
    color: #ffffff;
    padding: 60px 0 30px;

}

.footer-main {
    max-width: calc(100% - 300px);
    margin: 0 0 0 0;
    padding: 0 60px;
    width: calc(100% - 300px);
}

/* Footer Top - Logo and Menu */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-logo h2 {
    color: #99ff02;
    font-size: 2rem;
}

.footer-menu {
    flex: 0 1 auto;
    max-width: 600px;
}

.footer-nav-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
}

.footer-column {
    list-style: none;
}

.footer-column-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column-menu li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-column-menu li a {
    color: #99ff02;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-column-menu li a:hover {
    color: #ffffff;
}

.footer-column-menu .sub-menu {
    display: none;
}

/* Footer Separator */
.footer-separator {
    width: 100%;
    height: 2px;
    background-color: #99ff06;
    margin: 40px auto;
    max-width: calc(100% - 300px);
}

/* Footer Currency */
.footer-currency {
    text-align: center;
    margin: 40px 0;
}

.footer-currency img {
    max-width: 300px;
    height: auto;
}

/* Footer Links - Help and Features */
.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.footer-help-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-help-links::before {
    content: 'For Help';
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.footer-help-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-help-item:hover {
    opacity: 0.8;
}

.footer-help-item img {
    width: 40px;
    height: auto;
}

.footer-help-item span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
}

.footer-features {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-feature-item img {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.footer-feature-item span {
    color: #cccccc;
    font-size: 12px;
    line-height: 1.3;
    max-width: 80px;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(153, 255, 2, 0.2);
}

.footer-copyright p {
    color: #888888;
    font-size: 14px;
    margin: 0;
}

/* ===========================
   Mobile Header & Navigation
=========================== */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #173f3c;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-header * {
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    gap: 15px;
}

.mobile-logo {
    flex: 0 0 auto;
    max-width: 200px;
    min-width: 120px;
    display: flex !important;
    align-items: center;
    overflow: visible !important;
}

.mobile-logo img,
.mobile-logo .custom-logo,
.mobile-logo .custom-logo-link img,
.mobile-logo .mobile-logo-img,
.mobile-logo-img,
.mobile-logo .custom-logo-link .custom-logo {
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100% !important;
    min-height: 40px !important;
    position: relative !important;
    z-index: 10 !important;
}

.mobile-logo .custom-logo-link,
.mobile-logo .mobile-logo-link,
.mobile-logo-link,
.mobile-logo a.custom-logo-link {
    display: block !important;
    line-height: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

.mobile-logo a {
    text-decoration: none;
    display: block;
}

.mobile-logo h1 {
    font-size: 20px;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

.mobile-buttons {
    display: flex;
    gap: 8px;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.btn-register-mobile,
.btn-login-mobile {
    padding: 6px 14px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.btn-register-mobile {
    background: #99ff02 !important;
    color: #2f5d61 !important;
    border: none;
}

.btn-register-mobile:hover {
    background: #88ee00 !important;
    box-shadow: 0 4px 8px rgba(153, 255, 2, 0.3);
}

.btn-login-mobile {
    background: linear-gradient(#FFFFFF, #E3FDF1);
    color: #2f5d61 !important;
    border: none;
}

.btn-login-mobile:hover {
    background: linear-gradient(#f5f5f5, #d0f5e3);
    box-shadow: 0 4px 8px rgba(47, 93, 97, 0.3);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 0 0 auto;
}

.mobile-menu-toggle .dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.is-active .dot {
    background: #99ff02;
}

body.mobile-menu-active {
    overflow: hidden;
}

body.mobile-menu-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
}

.mobile-menu-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 10;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #99ff02;
}

@media screen and (max-width: 768px) {
    .mobile-menu-close {
        display: block;
    }
    
    /* Add padding to sidebar content to avoid overlap with close button */
    .vertical-sidebar .sidebar-top-section {
        padding-top: 60px;
    }
}

/* ===========================
   Utility Classes
=========================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ===========================
   Homepage Editable Content
=========================== */
.homepage-editable-content {

    padding: 40px 20px;
    margin-bottom: 30px;
}

.homepage-editable-content .entry-content {
    max-width: 1200px;

    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

.homepage-editable-content .entry-content p {
    margin: 0 0 15px 0;
}

.homepage-editable-content .entry-content p:last-child {
    margin-bottom: 0;
}

.homepage-editable-content .entry-content h1,
.homepage-editable-content .entry-content h2,
.homepage-editable-content .entry-content h3,
.homepage-editable-content .entry-content h4,
.homepage-editable-content .entry-content h5,
.homepage-editable-content .entry-content h6 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffffff;
}

.homepage-editable-content .entry-content a {
    color: #ffffff;
    transition: color 0.3s ease;
    font-weight: bold;
    text-decoration: underline;
}

.homepage-editable-content .entry-content a:hover {
    color: #b3ff33;
    text-decoration: underline;
}

.homepage-editable-content .entry-content ul,
.homepage-editable-content .entry-content ol {
    margin: 0 0 15px 20px;
    padding-left: 20px;
}

.homepage-editable-content .entry-content li {
    margin-bottom: 8px;
}

.homepage-editable-content .entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.homepage-editable-content .entry-content blockquote {
    border-left: 4px solid #99ff02;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #cccccc;
}

.homepage-editable-content .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.homepage-editable-content .entry-content table th,
.homepage-editable-content .entry-content table td {
    padding: 10px;
    border: 1px solid #99ff02;
    text-align: left;
}

.homepage-editable-content .entry-content table th {
    background-color: rgba(153, 255, 2, 0.1);
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .homepage-editable-content {
        padding: 30px 15px;
    }
    
    .homepage-editable-content .entry-content {
        font-size: 14px;
    }
}

