/*
Theme Name: Neospin Casino
Theme URI: https://neospin.casino
Author: Neospin
Author URI: https://neospin.casino
Description: A modern casino theme with vertical sidebar navigation
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neospin
*/

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #111111;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.02rem;
    font-size: 0.8rem;
}

/* Sidebar Navigation */
#sideNav {
    background-color: #23242c;
    padding: 2rem 1rem;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    z-index: 1000;
}

/* Logo Section */
.site-logo {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

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

/* Navigation Menu */
.sidebar-menu {
    flex: 1;
    margin-bottom: 2rem;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 0rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem 0.875rem 2rem;
    color: #ffffff8c;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.sidebar-menu a:hover {
    background-color: rgba(74, 211, 21, 0.1);
    color: #ffffff;
}

.sidebar-menu a i {
    color: #4AD315;
    margin-right: 0.5rem;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
    line-height: 1;
}

/* Action Buttons Section */
.sidebar-actions {
    padding: 0 1rem 1rem;
    margin-top: auto;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    margin-bottom: 0.5rem;
    background-color: #171717;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
}

.btn-action:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
}

.btn-action i {
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.language-toggle .flag-icon {
    width: 20px;
    height: 15px;
}

/* Main Content Area */
.site-content {
    background-color: #111111;
    min-height: 100vh;
    padding: 0;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #000;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 30px;
    height: 4px;
    background-color: #666;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.slider-dot.active {
    background-color: #ffffff;
}

/* Game Categories */
.game-categories {
    padding: 1.5rem 2rem;
}

.categories-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.categories-list li {
    margin: 0;
}

.categories-list a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    color: #b7b7b7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02rem;
}

.categories-list a:hover {
    color: #ffffff;
}

.categories-list a:hover .category-icon img,
.categories-list a:hover .category-icon svg {
    opacity: 0.8;
}

.categories-list a:hover .category-icon i {
    color: #ffffff;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 1rem;
    height: 1rem;
    transition: all 0.3s ease;
}

.category-icon svg {
    width: 1rem;
    height: 1rem;
    transition: all 0.3s ease;
}

.category-icon i {
    font-size: 1rem;
    color: #b7b7b7;
    transition: all 0.3s ease;
}

/* Content Wrapper */
.content-wrapper {
    padding: 2rem;
}

.homepage-content {
    padding-top: 1rem;
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.entry-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #4AD315;
}

.entry-meta {
    color: #6f6f6f;
    font-size: 0.875rem;
}

.entry-content {
    color: #b7b7b7;
    line-height: 1.8;
    font-size: 1rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.entry-content p {
    margin-top: 1rem;
    margin-bottom: 1.6rem;
    font-size: 1rem;
}

.entry-content ol,
.entry-content ul {
    padding-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1.6rem;
}

.entry-content ol li,
.entry-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.entry-content ol li::marker {
    color: #4AD315;
    font-weight: 600;
}

.entry-content ul li::marker {
    color: #4AD315;
}

.entry-content a {
    color: #4AD315;
    text-decoration: none;
}

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

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #4AD315;
    color: #000000;
    text-decoration: none;
    border-radius: 0.25rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #5fd91e;
}

.post-thumbnail {
    margin-bottom: 1.5rem;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 2rem;
}

.payment-methods-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-item {
    background-color: #282c35;
    border-radius: 0.5rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.payment-item img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 0 2rem 2rem;
}

.disclaimer-separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.disclaimer-text {
    color: #6f6f6f;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.disclaimer-text p {
    margin-bottom: 1rem;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

.disclaimer-text a {
    color: #4AD315;
    text-decoration: none;
}

.disclaimer-text a:hover {
    text-decoration: underline;
}

.age-badge {
    display: inline-block;
    background-color: #282c35;
    color: #81828c;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

/* Games Section */
.games-section {
    padding: 2rem;
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.games-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.see-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6f6f6f;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.see-all-link:hover {
    color: #ffffff;
}

.see-all-link i {
    font-size: 0.8rem;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.game-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 1 / 1;
}

.game-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-item:hover .game-overlay {
    opacity: 1;
}

.game-item:hover img {
    transform: scale(1.05);
}

/* Desktop Styles */
@media (min-width: 992px) {
    #sideNav {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        width: 12.5rem;
        height: 100vh;
    }

    .site-content {
        margin-left: 12.5rem;
        padding: 0;
    }
    
    .content-wrapper {
        padding: 3rem;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .game-categories {
        padding: 2rem 3rem;
    }
    
    .categories-list {
        gap: 1.5rem;
    }
    
    .games-section {
        padding: 3rem;
    }
    
    .games-grid {
        gap: 1.5rem;
    }
    
    .payment-methods-section {
        padding: 3rem;
    }
    
    .disclaimer-section {
        padding: 0 3rem 3rem;
    }

    .sidebar-menu a {
        justify-content: flex-start;
        padding: 0.875rem 1rem 0.875rem 2rem;
    }
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #23242c;
    z-index: 999;
    padding: 0 1rem;
    align-items: center;
    justify-content: space-between;
}

.mobile-header-logo {
    height: 40px;
}

.mobile-header-logo img {
    height: 100%;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    background-color: transparent;
    color: #ffffff;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    .mobile-header {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .site-content {
        padding-top: 60px;
    }
}

@media (min-width: 992px) {
    .mobile-header {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* Tablet and Mobile Styles */
@media (max-width: 991px) {
    #sideNav {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 280px;
    }

    #sideNav.active {
        transform: translateX(0);
    }

    .site-content {
        margin-left: 0;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 300px;
    }
    
    /* Game Categories */
    .game-categories {
        padding: 1rem;
    }
    
    .categories-list {
        gap: 0.75rem;
        justify-content: flex-start;
    }
    
    .categories-list a {
        font-size: 0.875rem;
    }
    
    .category-icon img,
    .category-icon svg,
    .category-icon i {
        width: 0.875rem;
        height: 0.875rem;
        font-size: 0.875rem;
    }
    
    /* Games Grid */
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .games-section {
        padding: 1.5rem 1rem;
    }
    
    .games-title {
        font-size: 1.1rem;
    }
    
    /* Payment Methods */
    .payment-methods-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .payment-methods-section {
        padding: 1.5rem 1rem;
    }
    
    .payment-methods-title {
        font-size: 1.1rem;
    }
    
    .payment-item {
        padding: 0.75rem;
        min-height: 70px;
    }
    
    .payment-item img {
        max-height: 80px;
    }
    
    /* Content */
    .content-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .disclaimer-section {
        padding: 0 1rem 1.5rem;
    }
    
    .entry-title {
        font-size: 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    /* Hero Slider */
    .hero-slider {
        height: 250px;
    }
    
    .slider-controls {
        bottom: 10px;
    }
    
    .slider-dot {
        width: 20px;
        height: 3px;
    }
    
    /* Game Categories */
    .game-categories {
        padding: 0.75rem;
    }
    
    .categories-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .categories-list li {
        width: 100%;
    }
    
    .categories-list a {
        font-size: 0.75rem;
        gap: 0.35rem;
        justify-content: center;
    }
    
    .category-icon img,
    .category-icon svg,
    .category-icon i {
        width: 0.75rem;
        height: 0.75rem;
        font-size: 0.75rem;
    }
    
    /* Games Section */
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .games-section {
        padding: 1rem;
    }
    
    .games-title {
        font-size: 1rem;
    }
    
    .games-header {
        margin-bottom: 1rem;
    }
    
    .see-all-link {
        font-size: 0.75rem;
    }
    
    /* Payment Methods */
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .payment-methods-section {
        padding: 1rem;
    }
    
    .payment-methods-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .payment-item {
        padding: 0.5rem;
        min-height: 60px;
    }
    
    .payment-item img {
        max-height: 80px;
    }
    
    /* Content */
    .content-wrapper {
        padding: 1rem;
    }
    
    .disclaimer-section {
        padding: 0 1rem 1rem;
    }
    
    .disclaimer-text {
        font-size: 0.8rem;
    }
    
    .entry-title {
        font-size: 1.3rem;
    }
    
    .entry-content {
        font-size: 0.9rem;
    }
    
    .entry-content h2 {
        font-size: 1.2rem;
    }
    
    .entry-content h3 {
        font-size: 1.05rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Hero Slider */
    .hero-slider {
        height: 200px;
    }
    
    /* Games Header */
    .games-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .games-title {
        font-size: 0.9rem;
    }
    
    /* Categories - 2 per row on small screens */
    .categories-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .categories-list li {
        width: 100%;
    }
    
    .categories-list a {
        justify-content: center;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        padding: 0.5rem;
        font-size: 1rem;
    }
    
    /* Sidebar Actions */
    .sidebar-actions {
        padding: 0 0.75rem 0.75rem;
    }
    
    .btn-action {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .site-logo {
        margin-bottom: 1.5rem;
    }
    
    .site-logo img {
        max-width: 120px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .hero-slider {
        height: 180px;
    }
    
    .games-grid {
        gap: 0.4rem;
    }
    
    .payment-methods-grid {
        gap: 0.4rem;
    }
    
    .categories-list a {
        font-size: 0.7rem;
    }
}

