/*!
Theme Name: OnlySpins
Theme URI: #
Version: 1.0.0
Tested up to: 7.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: onlyspins
*/

:root {
    --primary: #36B8B1;
    --accent: #3EB7B0;
    --bg-dark: #0a0e12;
    --bg-card: #161b22;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --glow: 0 0 15px rgba(54, 184, 177, 0.4);
    --gradient-aurora: linear-gradient(135deg, #36B8B1 0%, #1a2a6c 100%);
    --glass: rgba(255, 255, 255, 0.05);
}

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

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

main {
    width: 100%;
}

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

h1, h2, h3, h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.btn-primary {
    background: var(--gradient-aurora);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    box-shadow: var(--glow);
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(54, 184, 177, 0.7);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(10, 14, 18, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

.section-title {
    margin-bottom: 50px;
}

.card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Grid Layouts */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

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

/* Content Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    background: rgba(54, 184, 177, 0.1);
    color: var(--primary);
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

@media (max-width: 768px) {
    .header ul {
        display: none;
    }
    h2 {
        font-size: 1.8rem;
    }
    section {
        padding: 50px 0;
    }
}

img {max-width: 100% !important;height: auto;display: block;}
html {overflow-x: hidden;}
.wp-block-image {margin: 20px auto;max-width: 100%;}
.wp-block-image img {margin: 0 auto;}
.logo img {max-height: 50px;}
table{margin-top: 20px;margin-bottom: 20px;}
.content-block p,.content-block h2, .content-block h3, .content-block ul, .content-block ol,
.content p,.content h2, .content h3, .content ul, .content ol{margin-top: 1em;margin-bottom: 1em;}
.text-tp-h3{font-weight:800;text-transform:uppercase;letter-spacing:1px;margin-bottom:1.5rem;font-size:1.2rem;line-height:1.25;}
.text-bonus-headline{font-weight:800;text-transform:uppercase;letter-spacing:1px;font-size:2rem;margin-bottom:1rem;line-height:1.2;}
.text-tp-h4{font-weight:800;text-transform:uppercase;letter-spacing:1px;margin-bottom:1rem;font-size:1.05rem;line-height:1.3;}
