/* main.css - Primary styles */

/* Variables */
:root {
    /* Brand Colors */
    --primary-color: #FF234A;  
    --primary-dark: #D01139;
    --primary-light: #FF526F;
    --secondary-color: #141B2D;
    --dark-color: #0A0E1A;
    --text-color: #FFFFFF;
    --text-secondary: #CCCCCC;
    --accent-color: #00E1FF;    
    --success-color: #4CD964;
    --warning-color: #FFCC00;
    --error-color: #FF3B30;
    
    /* Layout Variables */
    --container-width: 1320px;
    --header-height: 80px;
    --border-radius-sm: 6px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--secondary-color);
    min-height: 100%;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
    opacity: 0.9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: 1.5rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

ul, ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

li {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 35, 74, 0.3);
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color), var(--primary-light));
    z-index: -1;
    transition: var(--transition);
    transform: scaleX(1.3) scaleY(1.3);
    opacity: 0;
}

.btn:hover::before {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 35, 74, 0.4);
    color: white;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(255, 35, 74, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: linear-gradient(to right, rgba(10, 14, 26, 0.98), rgba(20, 27, 45, 0.98));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    background: rgba(10, 14, 26, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    border-radius: 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: var(--space-md);
}

.nav-item {
    position: relative;
    margin-bottom: 0;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-buttons {
    display: flex;
    gap: var(--space-md);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
    transition: var(--transition);
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

.menu-toggle span::before {
    top: -8px;
}

.menu-toggle span::after {
    bottom: -8px;
}

.menu-toggle.active span {
    background-color: transparent;
}

.menu-toggle.active span::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active span::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + var(--space-xxl));
    padding-bottom: var(--space-xxl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 35, 74, 0.1), transparent 70%);
    z-index: -1;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xxl);
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    font-weight: 800;
    color: var(--text-color);
    text-transform: uppercase;
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--primary-color);
    opacity: 0.3;
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0);
}

.hero-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(255, 35, 74, 0.3);
    transform: rotate(5deg);
    z-index: 2;
}

/* Features Section */
.features {
    padding: var(--space-xxl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xxl);
    position: relative;
}

.section-title h2 {
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: 2.5rem;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.6), rgba(20, 27, 45, 0.6));
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: var(--space-xl);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 35, 74, 0.05), transparent);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 35, 74, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: rgba(255, 35, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-color);
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Game Categories Section */
.games {
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.games::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 35, 74, 0.05), transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.games-slider {
    position: relative;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.game-card {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.4), rgba(20, 27, 45, 0.4));
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 35, 74, 0.3);
}

.game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 0;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-content {
    padding: var(--space-lg);
    position: relative;
}

.game-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-color);
}

.game-provider {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.game-rtp {
    display: flex;
    align-items: center;
    color: var(--accent-color);
    gap: 5px;
}

.game-year {
    color: var(--text-secondary);
}

.game-play {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 35, 74, 0.3);
}

.game-card:hover .game-play {
    transform: scale(1);
    opacity: 1;
}

/* Bonuses Section */
.bonuses {
    padding: var(--space-xxl) 0;
    position: relative;
}

.bonuses::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 225, 255, 0.05), transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.bonus-card {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.6), rgba(20, 27, 45, 0.6));
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 35, 74, 0.3);
}

.bonus-header {
    background: var(--primary-color);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
}

.bonus-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0;
}

.bonus-content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: var(--space-md);
}

.bonus-description {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

.bonus-conditions {
    margin-top: auto;
}

.bonus-condition {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.bonus-condition svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.bonus-footer {
    padding: var(--space-lg);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* CTA Section */
.cta {
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 35, 74, 0.1), transparent 80%);
    z-index: -1;
}

.cta-container {
    background: linear-gradient(145deg, rgba(30, 39, 65, 0.6), rgba(20, 27, 45, 0.6));
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xxl);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/cta-pattern.png') repeat;
    opacity: 0.03;
    z-index: -1;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: var(--space-lg);
}

.cta-title span {
    color: var(--primary-color);
}

.cta-description {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    padding-top: var(--space-xxl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    margin-bottom: var(--space-lg);
}

.footer-logo img {
    height: 40px;
    border-radius: 0;
}

.footer-about {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.footer-socials {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-color);
}

.footer-title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    margin-bottom: var(--space-sm);
}

.footer-link a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-link a::before {
    content: '›';
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.footer-link a:hover {
    color: var(--text-color);
    transform: translateX(5px);
}

.footer-link a:hover::before {
    color: var(--text-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    color: var(--text-secondary);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 35, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
}

.footer-bottom {
    padding: var(--space-lg) 0;
    text-align: center;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.age-restriction img {
    width: 40px;
    height: 40px;
    border-radius: 0;
}

.license-img {
    height: 40px;
    border-radius: 0;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
}

.lang-option:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: var(--space-sm);
    background-color: var(--dark-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: var(--space-sm);
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 1000;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 35, 74, 0.3);
    z-index: 100;
    transition: var(--transition);
    transform: scale(0.9);
}

.floating-cta:hover {
    transform: scale(1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(255, 35, 74, 0.4);
}

.floating-cta svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: var(--space-md) !important;
}

.mb-2 {
    margin-bottom: var(--space-lg) !important;
}

.mb-3 {
    margin-bottom: var(--space-xl) !important;
}

.mb-4 {
    margin-bottom: var(--space-xxl) !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: var(--space-md) !important;
}

.mt-2 {
    margin-top: var(--space-lg) !important;
}

.mt-3 {
    margin-top: var(--space-xl) !important;
}

.mt-4 {
    margin-top: var(--space-xxl) !important;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.footer-seo {
    margin-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--space-lg);
}

.seo-spoiler {
    width: 100%;
}

.seo-spoiler summary {
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
    padding: var(--space-sm) 0;
    outline: none;
    transition: var(--transition-fast);
    position: relative;
}

.seo-spoiler summary:hover {
    color: var(--primary-color);
}

.seo-spoiler summary::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.seo-spoiler summary:hover::after {
    width: 100px;
}

.seo-content {
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0 var(--space-lg);
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
}

.seo-content h2 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: var(--space-md);
    color: var(--primary-color);
}

.seo-content h3 {
    font-size: 1.1rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-color);
}

.seo-content p {
    margin-bottom: var(--space-md);
    line-height: 1.5;
    font-size: 0.85rem;
}

.seo-content ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.seo-content li {
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.seo-collapsed {
    height: 1px;
    overflow: hidden;
    opacity: 0.01;
    position: absolute;
    width: 1px;
    z-index: -1;
}

@media (min-width: 1px) {
    .seo-hidden-content {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}