/*
Theme Name: Cryptonzy Child
Description: Child theme for Cryptonzy - No KYC Betting Sites
Template: twentytwentyfive
Version: 1.0.0
*/

@import url("../twentytwentyfive/style.css");

/* Light Theme Base Colors */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f9fa;
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --accent-green: #28a745;
    --accent-green-hover: #218838;
    --accent-pink: #dc3545;
    --border-color: #e9ecef;
    --border-light: #dee2e6;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Global Light Theme */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

.wp-block-group {
    background-color: var(--bg-primary);
}

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

/* Header & Navigation */
.site-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.site-branding .site-logo-link {
    text-decoration: none;
}

.site-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.site-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.default-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Custom styles for betting sites */
.betting-site-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: var(--bg-card);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.betting-site-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: var(--bg-card-hover);
}

.betting-site-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.betting-site-logo {
    width: 60px;
    height: 60px;
    margin-right: 16px;
    border-radius: 8px;
}

.betting-site-name {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: var(--text-primary);
}

.betting-site-name a {
    color: var(--text-primary);
    text-decoration: none;
}

.betting-site-name a:hover {
    color: var(--accent-green);
}

.betting-site-rating {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.rating-score {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-green);
    margin-right: 8px;
}

.rating-stars {
    color: #ffc107;
}

.betting-site-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-winner {
    background: var(--accent-green);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(126, 211, 33, 0.3);
}

.badge-runner-up {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.badge-kyc {
    background: var(--accent-pink);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.badge-vpn {
    background: #17a2b8;
    color: white;
}

.betting-site-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 16px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pros, .cons {
    padding: 16px;
    border-radius: 6px;
}

.pros {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-green);
    border: 1px solid var(--border-color);
}

.cons {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-pink);
    border: 1px solid var(--border-color);
}

.pros h4, .cons h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: var(--text-primary);
}

.pros ul, .cons ul {
    margin: 0;
    padding-left: 20px;
}

.cta-section {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

.btn-visit {
    background: var(--accent-green);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-visit:hover {
    background: var(--accent-green-hover);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(40, 167, 69, 0.3);
}

.btn-review {
    background: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn-review:hover {
    background: #0056b3;
    color: white;
}

/* Comparison table styles */
.comparison-table {
    overflow-x: auto;
    margin: 24px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e1e5e9;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Category sections */
.category-section {
    margin: 48px 0;
}

.category-title {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.category-description {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
}

/* Modern Card Layout */
.betting-sites-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Simplified Horizontal Card Layout */
.betting-site-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    overflow: hidden;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.betting-site-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-content-horizontal {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

/* Left Section: Logo + Rating */
.site-left-section {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}

.site-logo-container .site-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    background: var(--bg-secondary);
    padding: 4px;
}

.site-logo.placeholder {
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 18px;
}

.site-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-score {
    background: var(--accent-green);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

.rating-stars {
    color: #ffc107;
    font-size: 14px;
}

/* Middle Section: Basic Text */
.site-main-info {
    flex-grow: 1;
    min-width: 0;
}

.site-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.site-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Right Section: Single Button */
.card-actions {
    flex-shrink: 0;
}

.btn-play-now {
    background: var(--accent-green);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-play-now:hover {
    background: var(--accent-green-hover);
    transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 768px) {
    .betting-site-details {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .betting-site-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .betting-site-rating {
        margin: 16px 0 0 0;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .site-features {
        grid-template-columns: 1fr;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .header-container {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .default-nav {
        display: none;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
    
    .main-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .sidebar {
        order: -1;
        margin-bottom: 32px;
    }
    
    .sidebar-widget {
        margin-bottom: 20px;
    }
    
    .story-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .story-image {
        width: 100%;
        height: 120px;
        align-self: center;
    }
    
    .card-content-horizontal {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .site-header-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .site-badges {
        justify-content: flex-start;
    }
    
    .bonus-section {
        min-width: auto;
        width: 100%;
    }
    
    .card-actions {
        width: 100%;
        flex-direction: row;
        min-width: auto;
    }
    
    .btn-play-now {
        flex: 1;
    }
    
    .btn-review {
        flex: 0 0 auto;
        min-width: 80px;
    }
}

/* Footer Styles */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.footer-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.age-verification {
    background: var(--accent-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-top: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
}

.footer-legal {
    text-align: center;
}

.footer-legal p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 4px 0;
}

.disclaimer {
    font-size: 12px !important;
}

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

.content-area {
    padding: 40px 0;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-green);
}

.story-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.story-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.story-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}

.story-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.story-date {
    font-size: 12px;
    color: var(--text-muted);
}

.guide-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.guide-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-content ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.guide-content ul li:last-child {
    border-bottom: none;
}

.responsible-gambling {
    text-align: center;
}

.age-badge {
    background: var(--accent-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 16px;
}

.responsible-gambling p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.help-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.help-link:hover {
    text-decoration: underline;
}
