/* =============================================
   Neospin Casino Review - Styles
   ============================================= */

/* CSS Variables */
:root {
    --bg-dark: #0f1923;
    --bg-card: #1a2634;
    --bg-card-light: #243242;
    --primary: #44C811;
    --primary-light: #A4DD03;
    --text-white: #ffffff;
    --text-muted: #8b9cb3;
    --text-gray: #6b7a8f;
    --border-color: #2a3a4a;
    --gradient-green: linear-gradient(135deg, #44C811 0%, #A4DD03 100%);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 30px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--text-white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--gradient-green);
    color: #000000 !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(68, 200, 17, 0.35);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.9) 0%, rgba(26, 38, 52, 0.85) 100%),
                url('../img/small-banner-new.webp');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 800px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.hero .btn {
    font-size: 1rem;
    padding: 15px 35px;
}

/* Sections */
.section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.section:last-of-type {
    border-bottom: none;
}

.section-dark {
    background: #000000;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-white);
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--text-white);
}

.section-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Quick Facts Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.info-table th {
    background: var(--bg-card-light);
    color: var(--text-white);
    font-weight: 600;
    width: 35%;
}

.info-table td {
    color: var(--text-muted);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

/* Content Lists */
.content-list {
    list-style: none;
    margin: 20px 0;
}

.content-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.content-list.numbered {
    counter-reset: item;
}

.content-list.numbered li::before {
    content: counter(item);
    counter-increment: item;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bg-dark);
    top: 3px;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.pros-box,
.cons-box {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
}

.pros-box {
    border-left: 4px solid var(--primary);
}

.cons-box {
    border-left: 4px solid #e74c3c;
}

.pros-box h4,
.cons-box h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-box h4 {
    color: var(--primary);
}

.cons-box h4 {
    color: #e74c3c;
}

/* Info Cards */
.info-card {
    background: #000000;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid var(--border-color);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.info-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Key Takeaway */
.key-takeaway {
    background: linear-gradient(135deg, rgba(68, 200, 17, 0.1) 0%, rgba(164, 221, 3, 0.05) 100%);
    border: 1px solid rgba(68, 200, 17, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 25px 0;
}

.key-takeaway strong {
    color: var(--primary);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.game-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.game-card-content {
    padding: 20px;
}

.game-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-white);
}

.game-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* CTA Box */
.cta-box {
    background: var(--gradient-green);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.cta-box p {
    color: var(--bg-dark);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.cta-box .btn {
    background: var(--bg-dark);
    color: #ffffff !important;
}

.cta-box .btn:hover {
    background: var(--bg-card);
    color: #ffffff !important;
}

/* Payments Table */
.payments-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.payments-table th,
.payments-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.payments-table th {
    background: var(--bg-card-light);
    color: var(--primary);
    font-weight: 600;
}

.payments-table td {
    color: var(--text-muted);
}

.payments-table tr:last-child td {
    border-bottom: none;
}

/* Feature Icons Row */
.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 40px 0 20px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: nowrap;
    }

    .nav {
        gap: 15px;
    }

    .nav a:not(.btn) {
        display: none;
    }

    .nav .btn {
        display: inline-flex;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.15rem;
    }

    .info-table th,
    .info-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .info-table th {
        width: 40%;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .features-row {
        gap: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }
}
