/*
CONTRACT HEADER
ID: CASINO:hitnspin:07-css3:2026-01-26
Version: v8
*/

/* From 01-seo-audit.md design system - DARK VERSION */

:root {
    --color-primary: #FF6B00;
    --color-secondary: #FFB800;
    --color-background: #1A1A1A;
    --color-card: #2A2A2A;
    --color-text: #FFFFFF;
    --color-text-muted: #B0B0B0;
    --color-border: #404040;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 42px; font-weight: 700; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }

/* WordPress-style Site Header */
.site-header {
    background-color: var(--color-card);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.site-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.site-logo {
    height: 50px;
    width: auto;
}

.main-navigation {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-navigation a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

.header__cta {
    background-color: #FFFFFF; /* White background for contrast */
    color: #FF6B00; /* Orange text */
    border: 2px solid #FF6B00;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-shadow: none;
    letter-spacing: 0.2px;
    box-shadow: none;
    transition: all 0.2s;
}

.header__cta:hover {
    background-color: #FF6B00; /* Orange on hover */
    color: #FFFFFF; /* White text on hover */
    border-color: #FF6B00;
    box-shadow: none;
}

.header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
}

.header__mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-card);
    border-top: 1px solid var(--color-border);
    z-index: 999;
    padding: 1rem;
}

.header__mobile-nav.active {
    display: block;
}

.header__mobile-nav a {
    display: block;
    padding: 0.75rem;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
}

/* Entry/Post Structure */
.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.entry-meta {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.entry-meta span {
    margin-right: 1rem;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-border);
}

.entry-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--color-card);
}

.entry-content table th,
.entry-content table td {
    padding: 12px;
    border: 1px solid var(--color-border);
    text-align: left;
}

.entry-content table th {
    background-color: #333333;
    font-weight: 600;
}

.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

.post-thumbnail {
    margin-bottom: 2rem;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--color-card);
    padding: 1rem 20px;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
    font-size: 14px;
}

.breadcrumb-item {
    color: var(--color-text-muted);
}

.breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--color-text-muted);
}

/* Sidebar */
.sidebar {
    max-width: 300px;
    padding: 2rem 20px;
}

.widget {
    background-color: var(--color-card);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.widget-content {
    color: var(--color-text-muted);
    font-size: 14px;
}

.widget-content ul {
    list-style: none;
    padding: 0;
}

.widget-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.widget-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.widget-content a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9));
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-text);
    max-width: 800px;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn--primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.btn--primary:hover {
    background-color: #E65100;
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

/* CTA Button - Prominent for external offer links */
.btn--cta {
    background-color: #FFFFFF; /* White background for contrast */
    color: #FF6B00; /* Orange text */
    border: 2px solid #FF6B00;
    box-shadow: none;
    font-size: 15px;
    padding: 10px 28px;
    font-weight: 600;
    text-shadow: none;
    letter-spacing: 0.2px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn--cta:hover {
    background-color: #FF6B00; /* Orange on hover */
    color: #FFFFFF; /* White text on hover */
    border-color: #FF6B00;
    box-shadow: none;
    transform: none;
}

/* Internal Link Button - Subtle for internal navigation */
.btn--internal {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-size: 15px;
    padding: 10px 24px;
    font-weight: 500;
    box-shadow: none;
}

.btn--internal:hover {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: none;
}

/* Site Footer */
.site-footer {
    background-color: var(--color-card);
    border-top: 1px solid var(--color-border);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-widgets {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget {
    color: var(--color-text-muted);
}

.footer-widget h3 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget li {
    margin-bottom: 0.5rem;
}

.footer-widget a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget a:hover {
    color: var(--color-primary);
}

.site-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 14px;
}

.site-info p {
    margin: 0.5rem 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-area {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.main-content {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .header__mobile-toggle {
        display: block;
    }
    
    .header__cta {
        display: block;
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .content-area {
        flex-direction: column;
    }
    
    .sidebar {
        max-width: 100%;
    }
    
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    
    .entry-title {
        font-size: 32px;
    }
}
