/*!
Theme Name: Winna
Theme URI: #
Version: 1.0.0
Author: Winna Design Team
Description: A high-converting, futuristic casino theme with neon accents and glassmorphism.
Text Domain: winna
*/

:root {
    --primary: #1FB9FF;
    --accent: #27C2FF;
    --bg-dark: #07090f;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --glow: 0 0 15px rgba(31, 185, 255, 0.4);
    --glass: blur(12px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4 {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2rem;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: 0.3s transform, 0.3s box-shadow;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #000;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(31, 185, 255, 0.7);
}

/* Header */
.header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 9, 15, 0.8);
    backdrop-filter: var(--glass);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow);
}

.header ul {
    display: none;
    list-style: none;
    gap: 20px;
}

.header ul li a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.header ul li a:hover {
    color: var(--primary);
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    margin-bottom: 40px;
    text-align: center;
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: var(--glass);
    transition: 0.3s;
}

.card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

/* Grid Layouts */
.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 0 60px;
    background: radial-gradient(circle at center, rgba(31, 185, 255, 0.1) 0%, transparent 70%);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Navigation */
.section-nav {
    background: rgba(255,255,255,0.03);
    padding: 15px 0;
    overflow-x: auto;
    white-space: nowrap;
}

.section-nav a {
    margin-right: 25px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dim);
}

.section-nav a:hover {
    color: var(--primary);
}

/* Games */
.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.game-card img {
    width: 100%;
    transition: 0.5s;
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* Payments */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.payment-item {
    background: #15171e;
    padding: 10px;
    border-radius: 8px;
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-item img {
    max-height: 100%;
}

/* Footer */
.footer {
    background: #030407;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: var(--text-dim);
    font-size: 14px;
}

.footer-menu li a:hover {
    color: var(--primary);
}

/* Content Elements */
.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-block th, .content-block td {
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.content-block th {
    background: rgba(31, 185, 255, 0.1);
}

.content-block ul, .content-block ol {
    margin: 20px 0 20px 40px;
}

/* Desktop Queries */
@media (min-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .header ul {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    h1 {
        font-size: 4rem;
    }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
.wp-block-image {
    margin: 20px auto;
    max-width: 100%;
}
.text-tp-h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
}
.text-tp-h3-primary {
    color: var(--primary);
}
.text-bonus-label {
    font-size: 14px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}
.text-promo-card-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.2;
}
.text-tp-h4 {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
}
.text-faq-q {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
}
