/* Адаптивные стили для Chicken Road */

/* CSS Variables */
:root {
    --color-primary: #e03183;
    --color-main: #e03183;
    --color-secondary: #2c3e50;
    --color-accent: #e74c3c;
    --color-success: #27ae60;
    --color-warning: #f39c12;
    --color-header: #1a252f;
    --color-text: #2c3e50;
    --color-light: #f8f9fa;
    --color-dark: #343a40;
    --font-primary: 'DM Sans', Arial, sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    * {
        will-change: auto !important;
    }
    
    .ncr-rating__block:hover,
    .wp-block-button__link:hover,
    .hero-mobile-image:hover {
        transform: none !important;
    }
}

/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 {
    width: 100%;
    padding: 0 15px;
}

.col-lg-6 {
    width: 50%;
    padding: 0 15px;
}

/* Header Navigation */
.navbar-custom {
    background-color: var(--color-header) !important;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.navbar-custom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
}

.navbar-brand a {
    color: #ffffff !important;
    text-decoration: none;
}

.navbar-nav {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 15px;
    border-radius: 8px;
    display: block;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-primary) !important;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar-collapse {
    display: flex !important;
}

/* Hero Section */
.page--hero {
    background: linear-gradient(135deg, #e03183 0%, #c7286f 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 70px; /* Offset for fixed header */
}

.page--hero-decor {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 1;
}

.page--hero-decor svg {
    width: 100%;
    height: auto;
    display: block;
}

.page--hero .container {
    position: relative;
    z-index: 10;
}

.page--hero .row {
    align-items: center;
}

.page--hero-left {
    text-align: center;
    margin-bottom: 30px;
}

.page--hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page--hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(224, 49, 131, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-height: 400px;
    object-fit: contain;
}

.page--hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(224, 49, 131, 0.4);
}

.page--hero-right {
    color: white;
}

.page--hero-right h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.page--hero-right p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page--hero-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page--hero-link {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: #ffffff !important;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page--hero-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
}

.page--hero-link-right {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid #ffffff;
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.page--hero-link-right:hover {
    background: #ffffff;
    color: #e03183 !important;
}

/* Game Features Section */
.features-section {
    padding: 80px 0;
    background: var(--color-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Game Rules Section */
.rules-section {
    padding: 80px 0;
    background: #ffffff;
}

.rules-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rules-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.rules-list {
    list-style: none;
    margin: 30px 0;
}

.rules-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.rules-list li:before {
    content: '✓';
    color: var(--color-success);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.rules-image {
    text-align: center;
}

.rules-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Statistics Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-header) 100%);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--color-header);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Prevent horizontal overflow */
    * {
        box-sizing: border-box;
    }
    
    img, video, iframe {
        max-width: 100%;
    }
    
    .schema-how-to-steps {
        margin: 20px 0;
        padding: 0 5px;
    }
    
    .col-lg-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .page--hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .page--hero .row {
        flex-direction: column-reverse;
    }
    
    .page--hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-mobile-image {
        max-height: 200px !important;
        border: 3px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 
            0 10px 30px rgba(224, 49, 131, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
        backdrop-filter: blur(10px) !important;
        position: relative !important;
        z-index: 9999 !important;
        border-radius: 20px !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        margin-top: 30px !important;
        margin-bottom: 20px !important;
        display: block !important;
    }
    
    .page--hero-image {
        position: relative !important;
        z-index: 9999 !important;
    }
    
    .page--hero-left {
        margin-bottom: 0;
    }
    
    .page--hero-right {
        margin-bottom: 30px;
    }
    
    .hero-mobile-image:hover {
        transform: translateY(-3px) scale(1.02) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
        box-shadow: 
            0 15px 40px rgba(224, 49, 131, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    }
    
    .page--intro {
        padding-top: 40px !important;
        position: relative;
        z-index: 1;
        background: #2c3e50 !important;
    }
    
    .page--hero-left {
        position: relative;
        z-index: 100;
    }
    
    .page--hero-decor {
        display: none;
    }
    
    .navbar-nav {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-header);
        display: none;
    }
    
    .navbar-nav.active {
        display: flex;
    }
    
    .rules-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page--hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Rating Cards Styles */
.ncr-rating__box {
    margin-top: 2rem;
}

.ncr-rating__block {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.ncr-rating__block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ncr-rating__border {
    display: flex;
    padding: 20px;
}

.ncr-rating__border-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.ncr-rating__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.ncr-rating__num {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-top: 5px;
}

.ncr-rating__bonus-title {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin: 0;
}

.ncr-rating__preview {
    flex: 1;
    display: flex;
    align-items: center;
}

.ncr-rating__image-wrap {
    width: 100%;
}

.ncr-rating__content {
    padding: 0 20px 20px;
}

.ncr-rating__content-top {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.ncr-rating__content-left {
    flex: 1;
}

.ncr-rating__content-right {
    flex: 1;
}

.ncr-rating__rating {
    margin-bottom: 15px;
}

.ncr-rating__title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.ncr-rating__stars {
    font-size: 1.1rem;
}

.ncr-rating__bonus {
    margin-bottom: 15px;
}

.ncr-rating__bonus-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.ncr-rating__bonus-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.ncr-rating__pros ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ncr-rating__pros li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #666;
}

.ncr-rating__links {
    display: flex;
    gap: 10px;
}

.ncr-rating__btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.ncr-rating__btn--primary {
    background: var(--color-primary);
    color: white;
}

.ncr-rating__btn--primary:hover {
    background: #c7286f;
    transform: translateY(-2px);
}

.ncr-rating__btn--secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.ncr-rating__btn--secondary:hover {
    background: var(--color-primary);
    color: white;
}

/* Players Counter */
.players-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    width: fit-content;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.player-count {
    font-size: 1.1rem;
    font-weight: bold;
}

.player-text {
    font-size: 0.9rem;
}

/* Table of Contents */
.page--toc {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
}

.page--toc-button {
    width: 100%;
    padding: 15px 20px;
    background: var(--color-primary);
    color: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
}

.page--toc-button:hover {
    background: #c7286f;
}

.page--toc-list {
    padding: 20px;
}

.page--toc-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page--toc-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.page--toc-list li:last-child {
    border-bottom: none;
}

.page--toc-list svg {
    margin-right: 10px;
    flex-shrink: 0;
}

.page--toc-list a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.page--toc-list a:hover {
    color: var(--color-primary);
}

.collapse {
    display: none;
}

.card {
    background: white;
    border-radius: 0;
}

.card-body {
    padding: 0;
}

/* Author Section */
.page--author {
    background: #f8f9fa;
    padding: 40px 20px;
    border-radius: 15px;
    margin: 40px 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.page--author-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page--author-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page--author-image {
    flex-shrink: 0;
}

.page--author-info {
    display: flex;
    flex-direction: column;
}

.page--author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 5px;
}

.page--author-position {
    font-size: 1rem;
    color: #666;
}

.page--author-right {
    flex: 1;
}

.page--author-quote p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-style: italic;
    margin: 0;
}

.page--author-socials {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.page--author-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.page--author-social:hover {
    background: #c7286f;
    transform: translateY(-2px);
}

.page--author-socials.mobile {
    display: none;
}

/* Page Content Wrapper */
.page--content-wrap {
    background: #ffffff;
    padding: 40px 0;
}

.page--content {
    line-height: 1.7;
    font-size: 1.1rem;
}

.page--content h2 {
    color: var(--color-text) !important;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.page--content h3 {
    color: var(--color-text) !important;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.page--content p {
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.page--content ul, .page--content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page--content li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
}

.page--content strong {
    color: var(--color-primary);
    font-weight: 600;
}

.wp-block-spacer {
    margin: 20px 0;
}

/* Intro Section */
.page--intro {
    padding: 20px 0;
    background: #2c3e50;
    border-bottom: 1px solid #34495e;
}

.page--intro-row {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page--intro-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page--intro-image {
    flex-shrink: 0;
}

.page--intro-author {
    display: flex;
    flex-direction: column;
}

.page--intro-author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ecf0f1;
    margin-bottom: 5px;
}

.page--intro-position {
    font-size: 1rem;
    color: #bdc3c7;
}

.page--intro-right {
    margin-left: auto;
}

.page--intro-reading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Tables */
.wp-block-table {
    margin: 30px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .wp-block-table {
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(224, 49, 131, 0.2);
    }
    
    .wp-block-table::after {
        content: "📱 Прокрутите влево для просмотра";
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: #666;
        padding: 8px;
        background: #f8f9fa;
        border-radius: 0 0 12px 12px;
    }
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.wp-block-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
    color: #2c3e50;
    font-weight: 500;
}

.wp-block-table tr:first-child td {
    background: linear-gradient(135deg, #1a252f, #2c3e50) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    border-bottom: 3px solid #e03183 !important;
}

.wp-block-table tr:nth-child(even),
.wp-block-table tr:nth-child(odd) {
    background: linear-gradient(135deg, var(--color-primary), #c7286f);
}

.wp-block-table tr:nth-child(even) td,
.wp-block-table tr:nth-child(odd) td {
    color: #ffffff;
    font-weight: 500;
}

.wp-block-table tr:hover {
    background: linear-gradient(135deg, #d63384, #b02a60);
}

.wp-block-table tr:hover td {
    color: #ffffff;
}

/* Step by Step Guide */
.schema-how-to-steps {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.schema-how-to-step {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
    position: relative;
    border-left: 5px solid var(--color-primary);
}

.schema-how-to-step-name {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 15px;
    display: block;
}

.schema-how-to-step-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.step-image-placeholder {
    margin: 15px auto !important;
    border: 2px dashed #ddd;
    font-weight: 500;
}

/* Info Block */
.info-block {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    transition: transform 0.3s ease-in-out;
    box-shadow: var(--box-shadow);
    border: 2px solid #ecf0f1;
}

.info-block:hover {
    transform: scale(1.02);
}

.info-block p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff !important;
    font-weight: 500;
}

/* Play Now Button */
.wp-block-buttons {
    text-align: center;
    margin: 40px 0;
}

.wp-block-button {
    display: inline-block;
}

.wp-block-button__link {
    background: linear-gradient(45deg, var(--color-primary), #c7286f);
    color: white !important;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(224, 49, 131, 0.3);
}

.wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 49, 131, 0.4);
    color: white !important;
}

/* Social Sharing */
.social-sharing {
    margin: 40px 0;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px solid rgba(224, 49, 131, 0.1);
}

.social-sharing h3 {
    color: var(--color-text);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    min-width: 120px;
    justify-content: center;
}

.social-btn.vk {
    background: linear-gradient(135deg, #4680C2, #5181b8);
}

.social-btn.telegram {
    background: linear-gradient(135deg, #229ED9, #0088cc);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

@media (max-width: 768px) {
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 200px;
    }
    
    /* Step by Step responsive */
    .schema-how-to-step {
        padding: 20px 15px;
        margin: 0 10px 20px 10px;
    }
    
    .schema-how-to-step-name {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .schema-how-to-step-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .step-image-placeholder {
        width: 100% !important;
        max-width: 300px !important;
        height: 150px !important;
        font-size: 0.9rem !important;
        margin: 10px auto !important;
    }
}

/* Difficulty Cards */
.difficulty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.difficulty-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.difficulty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.difficulty-card.easy::before { background: linear-gradient(90deg, #28a745, #20c997); }
.difficulty-card.medium::before { background: linear-gradient(90deg, #ffc107, #fd7e14); }
.difficulty-card.hard::before { background: linear-gradient(90deg, #fd7e14, #dc3545); }
.difficulty-card.extreme::before { background: linear-gradient(90deg, #dc3545, #6f42c1); }

.difficulty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.difficulty-card.easy:hover { border-color: #28a745; }
.difficulty-card.medium:hover { border-color: #ffc107; }
.difficulty-card.hard:hover { border-color: #fd7e14; }
.difficulty-card.extreme:hover { border-color: #dc3545; }

.difficulty-header {
    text-align: center;
    margin-bottom: 25px;
}

.difficulty-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.difficulty-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 5px;
}

.difficulty-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.difficulty-stats {
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.difficulty-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    text-align: center;
    font-style: italic;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .difficulty-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .difficulty-card {
        padding: 20px;
    }
    
    .difficulty-title {
        font-size: 1.5rem;
    }
    
    .difficulty-icon {
        font-size: 2.5rem;
    }
}

/* Strategy Cards */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.strategy-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: all 0.3s ease;
}

.strategy-card.conservative::before { background: linear-gradient(90deg, #28a745, #20c997); }
.strategy-card.balanced::before { background: linear-gradient(90deg, #ffc107, #fd7e14); }
.strategy-card.aggressive::before { background: linear-gradient(90deg, #dc3545, #e03183); }
.strategy-card.martingale::before { background: linear-gradient(90deg, #6f42c1, #e03183); }

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.strategy-card.conservative:hover { border-color: #28a745; }
.strategy-card.balanced:hover { border-color: #ffc107; }
.strategy-card.aggressive:hover { border-color: #dc3545; }
.strategy-card.martingale:hover { border-color: #6f42c1; }

.strategy-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.strategy-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.strategy-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.strategy-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strategy-badge.safe { background: #d4edda; color: #155724; }
.strategy-badge.moderate { background: #fff3cd; color: #856404; }
.strategy-badge.risky { background: #f8d7da; color: #721c24; }
.strategy-badge.expert { background: #e2e3f1; color: #6f42c1; }

.strategy-content {
    text-align: left;
}

.strategy-content p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.strategy-content strong {
    color: var(--color-text);
    font-weight: 600;
}

.strategy-tips {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    border-left: 5px solid var(--color-primary);
}

.strategy-tips h4 {
    color: var(--color-text);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.strategy-tips ul {
    list-style: none;
    padding: 0;
}

.strategy-tips li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.strategy-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.strategy-tips strong {
    color: var(--color-text);
    font-weight: 600;
}

@media (max-width: 768px) {
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .strategy-card {
        padding: 20px;
    }
    
    .strategy-header h4 {
        font-size: 1.2rem;
    }
    
    .strategy-icon {
        font-size: 2rem;
    }
    
    .strategy-tips {
        padding: 20px;
    }
}

/* List Styles */
.wp-block-list {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.wp-block-list li {
    padding: 12px 0;
    padding-left: 40px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    line-height: 1.6;
}

.wp-block-list li:before {
    content: '🎯';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.wp-block-list li:last-child {
    border-bottom: none;
}

/* NCR Rating Icons */
.ncr-rating__icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.ncr-rating__pros ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ncr-rating__pros li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

/* Image Alignment */
.wp-block-image {
    margin: 30px 0;
}

.wp-block-image .alignright {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    margin: 30px 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.faq-question {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--color-text);
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.faq-answer {
    padding: 25px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* New Author Card */
.author-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 50px 0;
    border: 1px solid #e9ecef;
}

.author-avatar {
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 5px 0;
}

.author-position {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0 0 15px 0;
}

.author-bio {
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-size: 1rem;
}

.author-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(224, 49, 131, 0.3);
}

.social-link:hover {
    background: #c7286f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 49, 131, 0.4);
    color: white;
}

/* Search Form */
.search--form {
    display: none; /* Hide by default, show when needed */
    padding: 20px 0;
    background: #f8f9fa;
}

.search__form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search__input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.search__input:focus {
    border-color: var(--color-primary);
}

.search__btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search__btn:hover {
    background: #c7286f;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.p-4 { padding: 2rem; }
.d-none { display: none; }
.d-block { display: block; }

/* Mobile Responsive */
@media (max-width: 992px) {
    .page--hero {
        padding: 100px 0 60px;
    }
    
    .page--hero-right h1 {
        font-size: 2.5rem;
    }
    
    .col-lg-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .page--hero-left {
        order: 2;
    }
    
    .page--hero-right {
        order: 1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-header);
        padding: 20px;
        box-shadow: var(--box-shadow);
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 15px;
        text-align: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .page--hero {
        margin-top: 60px;
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .page--hero-right h1 {
        font-size: 2.2rem;
    }
    
    .page--hero-links {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .page--hero-link,
    .page--hero-link-right {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .page--content h2 {
        font-size: 1.8rem;
    }
    
    .page--content h3 {
        font-size: 1.5rem;
    }
    
    .page--author {
        flex-direction: column;
        text-align: center;
    }
    
    .page--author-left {
        flex-direction: column;
    }
    
    .page--author-main {
        flex-direction: column;
    }
    
    .page--author-socials.desktop {
        display: none;
    }
    
    .page--author-socials.mobile {
        display: flex;
        justify-content: center;
        margin: 20px 0 0 0;
    }
    
    .page--intro-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }
    
    .page--intro-left {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .page--intro-right {
        margin-left: 0;
        margin-top: 0;
        text-align: center;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .author-name {
        font-size: 1.3rem;
    }
    
    .author-socials {
        justify-content: center;
    }
    
    .ncr-rating__content-top {
        flex-direction: column;
    }
    
    .ncr-rating__border {
        flex-direction: column;
        text-align: center;
    }
    
    .ncr-rating__border-inner {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page--hero-right h1 {
        font-size: 1.8rem;
    }
    
    .page--hero-right p {
        font-size: 1.1rem;
    }
    
    .page--content {
        font-size: 1rem;
    }
    
    .page--content h2 {
        font-size: 1.6rem;
    }
}

/* Live Stats Section */
.live-stats-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(224, 49, 131, 0.1);
    position: relative;
    overflow: hidden;
}

.live-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #c7286f, var(--color-primary));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(224, 49, 131, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(224, 49, 131, 0.15);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(224, 49, 131, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Players Counter */
.players-counter {
    display: inline-flex !important;
    align-items: center !important;
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3) !important;
    transition: var(--transition) !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
    gap: 10px !important;
}

.players-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.players-counter:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4) !important;
}

.status-dot {
    width: 10px !important;
    height: 10px !important;
    background: #fff !important;
    border-radius: 50% !important;
    animation: pulse 2s infinite !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
    margin-right: 0 !important;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.player-count {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
}

.player-text {
    font-size: 0.9rem !important;
    opacity: 0.9 !important;
}

/* Mobile responsive for live stats */
@media (max-width: 768px) {
    .live-stats-section {
        padding: 20px;
        margin: 30px 0;
    }
    
    .game-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .players-counter {
        font-size: 0.9rem !important;
        padding: 10px 16px !important;
    }
}

/* Casino Logo Styles */
.casino-logo-container {
    width: 100%;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid rgba(224, 49, 131, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.casino-logo-container:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(224, 49, 131, 0.15);
    transform: translateY(-2px);
}

.casino-logo {
    max-width: 100%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.casino-logo:hover {
    transform: scale(1.05);
}

.casino-logo-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary), #c7286f);
    color: white;
    width: 100%;
    height: 100%;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.casino-logo-fallback::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.casino-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.casino-country {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced ncr-rating styles for logos */
.ncr-rating__image-wrap {
    padding: 15px;
    background: transparent;
}

.ncr-rating__preview {
    padding: 10px;
}

/* Casino specific fallback colors */
.casino-logo-container:nth-child(1) .casino-logo-fallback {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.casino-logo-container:nth-child(2) .casino-logo-fallback {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.casino-logo-container:nth-child(3) .casino-logo-fallback {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

/* Mobile responsive for casino logos */
@media (max-width: 768px) {
    .casino-logo-container {
        height: 70px;
    }
    
    .casino-name {
        font-size: 1rem;
    }
    
    .casino-country {
        font-size: 0.75rem;
    }
    
    .ncr-rating__image-wrap {
        padding: 10px;
    }
    
    .ncr-rating__preview {
        padding: 8px;
    }
}

/* Page Navigation Menu */
.page-navigation {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 40px 0;
    border-bottom: 1px solid rgba(224, 49, 131, 0.1);
    position: relative;
    overflow: hidden;
}

.page-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    animation: gradientMove 4s linear infinite;
}

.nav-menu-wrapper {
    text-align: center;
}

.nav-menu-title {
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.nav-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-menu-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 49, 131, 0.05), transparent);
    transition: left 0.5s ease;
}

.nav-menu-item:hover::before {
    left: 100%;
}

.nav-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(224, 49, 131, 0.15);
    border-color: var(--color-primary);
}

.nav-icon {
    font-size: 2rem;
    margin-right: 15px;
    min-width: 50px;
    text-align: center;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.nav-menu-item:hover .nav-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.nav-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 3px;
}

.nav-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
}

/* Individual nav item colors */
.nav-menu-item.casinos:hover {
    border-color: #f39c12;
}

.nav-menu-item.about:hover {
    border-color: #3498db;
}

.nav-menu-item.howto:hover {
    border-color: #e74c3c;
}

.nav-menu-item.features:hover {
    border-color: #9b59b6;
}

.nav-menu-item.difficulty:hover {
    border-color: #e67e22;
}

.nav-menu-item.faq:hover {
    border-color: #27ae60;
}

/* Mobile responsive for navigation */
@media (max-width: 768px) {
    .page-navigation {
        padding: 30px 0;
    }
    
    .nav-menu-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .nav-menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .nav-menu-item {
        padding: 15px;
    }
    
    .nav-icon {
        font-size: 1.5rem;
        margin-right: 12px;
        min-width: 40px;
    }
    
    .nav-title {
        font-size: 1rem;
    }
    
    .nav-subtitle {
        font-size: 0.85rem;
    }
}

/* New Footer Styles */
.footer {
    background: var(--color-header);
    color: #ffffff;
    padding: 0;
    position: relative;
}

.-footer--wrap {
    position: relative;
}

.-footer--decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 172px;
    overflow: hidden;
    z-index: 1;
}

.-footer--decor svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer .-container {
    position: relative;
    z-index: 2;
    padding-top: 200px;
    padding-bottom: 40px;
}

.-footer--menu {
    margin-bottom: 30px;
}

.-footer--logos {
    margin: 30px 0;
}

.-footer--copy {
    padding: 20px 0;
}
