/**
 * KiloBet Casino Second Domain
 * Main Stylesheet
 */

/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */

:root {
    --primary-color: #4285f4;
    --secondary-color: #34a853;
    --accent-color: #ea4335;
    --warning-color: #fbbc04;
    
    --bg-primary: #1c1f24;
    --bg-secondary: #2d3238;
    --bg-light: #17191c;
    --bg-white: #ffffff;
    
    --text-primary: #1c1f24;
    --text-secondary: #5f6368;
    --text-light: #17191c;
    --text-white: #ffffff;
    
    --border-color: #dadce0;
    --border-light: #f1f3f4;
    
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.15);
    
    --border-radius: 8px;
    --border-radius-large: 16px;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;
    
    --container-width: 1200px;
    --header-height: 80px;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    color: #ffffff;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

button {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

main {
    min-height: calc(100vh - var(--header-height) - 200px);
    padding: 20px 0;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

header {
    background: #17191c;
    box-shadow: var(--shadow-small);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

h1 {
        padding: 20px 0px 0px 10px;
        color: #ffffff;
}
.logo {
    flex-shrink: 0;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform var(--transition-fast);
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-weight: 500;
    color: #ffffff;
    padding: 10px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-fast);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.login-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-btn {
    padding: 10px 20px;
    font-weight: 500;
    color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.login-btn:hover {
            background: #2196F3;
    border-color: #4285f4;
    color: #ffffff;
    transform: none;
}

.signup-btn {
    padding: 10px 20px;
    font-weight: 600;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.signup-btn:hover {
    background: linear-gradient(135deg, #3367d6 0%, #2e7d32 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    font-size: 20px;
       color: #ffffff;
}

/* ==========================================================================
   Hero Section & Banners
   ========================================================================== */

.hero-section {
    margin: 30px 0;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}


.language-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Для SVG флагов */
.language-flag svg {
    width: 100%;
    height: 100%;
}

.hero-banners {
    display: flex;
    gap: 20px;
    height: 400px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    flex: 7;
}

.hero-slider.small-slider {
    flex: 3;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide .full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-button-container {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.banner-button {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.banner-button:hover {
    background: linear-gradient(135deg, #3367d6 0%, #2e7d32 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    color: var(--text-white);
}

.slider-navigation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.nav-arrow:hover {
    background: rgba(66, 133, 244, 0.8);
    transform: scale(1.1);
}

/* ==========================================================================
   Game Sections
   ========================================================================== */

.game-section {
    margin: 50px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
       color: #ffffff;
    margin: 0;
}

.show-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

.show-more:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
    transform: translateX(5px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.game-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-small);
    transition: all var(--transition-medium);
    cursor: pointer;
    aspect-ratio: 1;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-medium);
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.provider-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.game-hover-popup {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 3;
    padding: 20px;
    text-align: center;
}

.game-card:hover .game-hover-popup {
    opacity: 1;
}

.game-title {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.game-play-free,
.game-play-real {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.game-play-free {
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.game-play-free:hover {
    background: var(--text-white);
    color: var(--text-primary);
}

.game-play-real {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    border: 2px solid transparent;
}

.game-play-real:hover {
    background: linear-gradient(135deg, #3367d6 0%, #2e7d32 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* ==========================================================================
   Text Content Section
   ========================================================================== */

.info-section {
    padding: 40px 20px;
    background: #1C1E23;
    border-radius: var(--border-radius-large);
    margin: 40px 0;
    box-shadow: var(--shadow-small);
}

.info-section h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.info-section h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.info-section p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.info-section ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #ffffff;
    line-height: 1.6;
}

.info-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
}

.info-section ul li strong {
    color: #ffffff;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.info-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-card p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}


/* ==========================================================================
   Language Switcher Styles
   ========================================================================== */

.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    z-index: 1000;
}

.language-dropdown {
    position: relative;
    background: rgba(68, 74, 84, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 140px;
    user-select: none;
}

.language-dropdown:hover {
    background: rgba(68, 74, 84, 1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.language-dropdown.active {
    background: rgba(68, 74, 84, 1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.selected-language {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 16px;
    position: relative;
}

.language-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.language-name {
    flex: 1;
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
    margin-left: auto;
}

.language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Language Options Dropdown */
.language-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(68, 74, 84, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-top: 4px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

.language-dropdown.active .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 400;
    font-size: 14px;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(95, 125, 255, 0.8);
    color: #ffffff;
    transform: translateX(2px);
}

.language-option.active {
    background: rgba(95, 125, 255, 0.9);
    color: #ffffff;
    font-weight: 500;
}

.language-option .language-flag {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.language-option .language-name {
    font-weight: inherit;
}

/* Footer Language Switcher */
.footer-language .language-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-language .language-dropdown:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-language .language-options {
    background: rgba(68, 74, 84, 0.98);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 10px;
    }
    
    .language-dropdown {
        min-width: 120px;
    }
    
    .selected-language {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .language-flag {
        width: 20px;
        height: 20px;
    }
    
    .language-option {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .language-option .language-flag {
        width: 18px;
        height: 18px;
    }
}

/* Animation for smooth transitions */
@keyframes languageDropdownOpen {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes languageDropdownClose {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
}

.language-dropdown.active .language-options {
    animation: languageDropdownOpen 0.3s ease forwards;
}

/* Focus states for accessibility */
.language-dropdown:focus-within {
    outline: 2px solid rgba(95, 125, 255, 0.5);
    outline-offset: 2px;
}

.language-option:focus {
    background: rgba(95, 125, 255, 0.8);
    outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .language-dropdown {
        border-color: #ffffff;
        background: #000000;
    }
    
    .language-options {
        border-color: #ffffff;
        background: #000000;
    }
    
    .language-option {
        border-bottom-color: #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .language-dropdown,
    .language-options,
    .language-option,
    .dropdown-arrow {
        transition: none;
    }
    
    .language-dropdown.active .language-options {
        animation: none;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: var(--border-radius-large);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    min-width: 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #3367d6 0%, #2e7d32 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    color: var(--text-white);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.2);
    color: var(--text-white);
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

footer {
    background: var(--bg-primary);
    color: var(--text-light);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav a {
    color: #ffffff;
    font-weight: 400;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--text-white);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.payment-icon {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.payment-icon:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.licensing {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.license-icon {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.footer-legal {
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-legal p {
    margin-bottom: 15px;
}

.footer-legal a {
    color: var(--text-white);
    text-decoration: underline;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Support Button
   ========================================================================== */

.support-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-large);
    z-index: 1000;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-button:hover {
    background: linear-gradient(135deg, #3367d6 0%, #2e7d32 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
    color: var(--text-white);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ==========================================================================
   Loading & Animation States
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.4s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .hero-section,
    .support-button,
    .nav-arrow,
    .banner-button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}