/* Theme Variables - Inheriting from common.css where possible for consistency */
:root {
    /* Keeping page specific variables but mapping colors to global consistency */
    --card-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Ensure these match common.css or are compatible */
    --primary-bg: var(--background-color, #ffffff);
    --secondary-bg: var(--light-gray, #f8f9fa);
    --text-color: var(--text-color, #333333);
    --border-color: var(--border-color, #e0e0e0);
    /* Using consistent primary/accent */
    --primary-color: var(--primary-color, #7B2CBF);
    --accent-color: var(--accent-color, #D94400);
    --hover-color: rgba(0, 0, 0, 0.05);
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    /* Global gradients mapped */
    --promo-gradient: var(--gradient-primary, linear-gradient(135deg, #7B2CBF 0%, #9D4EDD 100%));
}

[data-theme="dark"] {
    --primary-bg: var(--background-color, #121212);
    --secondary-bg: var(--card-background, #1E1E1E);
    --text-color: var(--text-color, #E0E0E0);
    --border-color: var(--border-color, #333333);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --hover-color: rgba(255, 255, 255, 0.05);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(30deg);
}

/* Search Section */
.search-section {
    padding: 2.5rem 0;
    background: var(--secondary-bg);
    box-shadow: 0 4px 6px var(--shadow-color);
    position: relative;
    z-index: 1;
}

.search-container {
    max-width: 900px;
    margin: 0 auto;
}

.search-bar {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-bar input {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px; /* Input arrondi */
    font-size: 1.1rem;
    background: var(--primary-bg);
    color: var(--text-color);
    transition: var(--transition);
    box-shadow: 0 2px 5px var(--shadow-color);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(92, 107, 192, 0.15);
    transform: translateY(-2px);
}

.search-bar i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.2rem;
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filters select {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 25px; /* Select arrondis */
    background: var(--primary-bg);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 5px var(--shadow-color);
    font-weight: 500;
    min-width: 180px;
    text-align: center;
    appearance: none; /* Supprime l'apparence par défaut */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6bc0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.filters select:focus,
.filters select:hover {
    outline: none;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

/* Services Hero Section */
.services-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
                      radial-gradient(circle at 20% 20%, rgba(92,107,192,.25), transparent 45%), radial-gradient(circle at 80% 30%, rgba(255,64,129,.22), transparent 40%), radial-gradient(circle at 50% 85%, rgba(0,255,136,.15), transparent 45%);
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(63, 81, 181, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    animation: pulse 5s infinite alternate;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInDown 1s ease-out;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.services-hero .subtitle {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    letter-spacing: 5px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Game Section */
.game-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.game-section:nth-child(even) {
    background-color: var(--light-gray);
}

.game-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Service Showcase */
.service-showcase {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.showcase-item:hover {
    transform: translateY(-10px);
}

.showcase-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.showcase-content {
    padding: 2rem;
    text-align: center;
}

.showcase-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.showcase-content ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 2rem;
}

.showcase-content ul li {
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--dark-gray);
}

.showcase-content ul li:before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: -1.5rem;
}

/* Services Grid */
.services-grid {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--secondary-bg), var(--primary-bg));
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
    align-items: stretch;
    contain: layout style;
    content-visibility: auto;
    contain-intrinsic-size: 1200px;
}

/* Service card image */
.service-image-container {
    width: 100%;
    height: 200px;
    min-height: 200px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.service-image-container > img.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Secondary cards use a div.service-image wrapper: reserve space to avoid CLS */
.service-card .service-image:not(img) {
    width: 100%;
    height: 200px;
    min-height: 200px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.service-card .service-image:not(img) > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

/* Service card styling */
.service-card {
    background-color: var(--primary-bg);
    border-radius: var(--card-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* Skeleton placeholders prevent large first render jumps before dynamic injection */
.service-skeleton {
    min-height: 520px;
    background:
        linear-gradient(90deg, rgba(125, 125, 125, 0.08) 25%, rgba(125, 125, 125, 0.16) 37%, rgba(125, 125, 125, 0.08) 63%);
    background-size: 400% 100%;
    animation: skeleton-shimmer 1.6s ease-in-out infinite;
    border-radius: var(--card-radius);
}

@keyframes skeleton-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-color);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
    background-color: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    flex-grow: 1;
}

.service-features h4 {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--dark-gray);
}

.service-features ul {
    padding-left: 1.2rem;
}

.service-features ul li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Service actions buttons */
.service-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.service-actions .btn {
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-actions .btn-accent {
    background-color: var(--accent-color);
    color: white;
    border: none;
}

.service-actions .btn-accent:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(63, 81, 181, 0.4);
}

.service-actions .btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.service-actions .btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(63, 81, 181, 0.4);
}

/* Dark mode adjustments */
[data-theme="dark"] .service-features {
    background-color: var(--secondary-bg);
}

[data-theme="dark"] .service-actions .btn-outline {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

[data-theme="dark"] .service-actions .btn-outline:hover {
    background-color: var(--accent-color);
    color: #fff;
}

[data-theme="dark"] .services-hero {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)),
                      radial-gradient(circle at 20% 20%, rgba(92,107,192,.25), transparent 45%), radial-gradient(circle at 80% 30%, rgba(255,64,129,.22), transparent 40%), radial-gradient(circle at 50% 85%, rgba(0,255,136,.15), transparent 45%);
}

[data-theme="dark"] .search-section {
    background: var(--secondary-bg);
}

[data-theme="dark"] .search-bar input {
    background: var(--primary-bg);
    color: var(--text-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .search-bar input::placeholder {
    color: #888;
}

[data-theme="dark"] .filters select {
    background: var(--primary-bg);
    color: var(--text-color);
    border-color: var(--border-color);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237986cb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

[data-theme="dark"] .service-card {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .service-title {
    color: var(--accent-color);
}

[data-theme="dark"] .service-price {
    color: var(--accent-color);
}

[data-theme="dark"] .service-description {
    color: var(--text-color);
}

[data-theme="dark"] .service-features {
    background-color: var(--primary-bg);
}

[data-theme="dark"] .service-features h4 {
    color: var(--text-color);
}

[data-theme="dark"] .service-features ul li {
    color: var(--text-color);
}

[data-theme="dark"] .services-grid {
    background: linear-gradient(to bottom, var(--secondary-bg), var(--primary-bg));
}

[data-theme="dark"] .no-results {
    background-color: rgba(121, 134, 203, 0.1);
    color: var(--text-color);
}

[data-theme="dark"] .promo-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

[data-theme="dark"] .payment-item {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .payment-item p {
    color: var(--text-color);
}

[data-theme="dark"] .showcase-item {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .showcase-content ul li {
    color: var(--text-color);
}

[data-theme="dark"] .game-section {
    background-color: var(--primary-bg);
}

[data-theme="dark"] .game-section:nth-child(even) {
    background-color: var(--secondary-bg);
}

/* Internal Links Section */
.internal-links-section {
    padding: 4rem 0;
    background: var(--primary-bg);
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.internal-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    text-align: center;
}

.internal-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.internal-link-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.internal-link-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

[data-theme="dark"] .game-section h2 {
    color: var(--accent-color);
}

[data-theme="dark"] .showcase-content h3 {
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-image-container {
        height: 180px;
        min-height: 180px;
    }
    .service-card .service-image:not(img) {
        height: 180px;
        min-height: 180px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-price {
        font-size: 1.3rem;
    }
    
    .service-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .service-image-container {
        height: 160px;
        min-height: 160px;
    }
    .service-card .service-image:not(img) {
        height: 160px;
        min-height: 160px;
    }
}

/* Add category-specific styling */
.service-card[data-category="rpg"] .service-icon {
    color: #FF6B6B;
}

.service-card[data-category="fighting"] .service-icon {
    color: #4ECDC4;
}

.service-card[data-category="racing"] .service-icon {
    color: #45B7D1;
}

.service-card[data-category="survival"] .service-icon {
    color: #96CEB4;
}

/* Payment Methods Section */
.payment-methods {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.payment-methods h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.payment-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    transition: transform 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.payment-item:hover {
    transform: translateY(-5px);
}

.payment-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.payment-item p {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Warranty Section */
.warranty {
    padding: 5rem 0;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
}

.warranty h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.warranty p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.warranty-notice {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.warranty-notice i {
    font-size: 2rem;
    color: var(--accent-color);
}

.warranty .btn {
    margin-top: 1rem;
}

/* Animations */
@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.8;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-hero h1 {
        font-size: 3.5rem;
    }
    
    .services-hero .subtitle {
        font-size: 1.4rem;
    }
    
    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.8rem;
    }
    
    .services-hero .subtitle {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filters select {
        width: 100%;
        max-width: 300px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .search-bar input {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero {
        height: 350px;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
}

.no-results {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: var(--text-color);
    background-color: rgba(92, 107, 192, 0.1);
    border-radius: var(--card-radius);
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 4px 10px var(--shadow-color);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--accent-color);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 100;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.back-to-top i {
    font-size: 1.5rem;
}

/* Promo Banner */
.promo-banner {
    background: var(--promo-gradient);
    color: white;
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: moveBackground 20s linear infinite;
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.promo-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-banner p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    backdrop-filter: blur(5px);
}

.btn-promo:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-discord {
    background: #5865F2;
    border-color: #5865F2;
}

.btn-discord:hover {
    background: #4752c4;
}

.btn-discord i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50%, 50%);
    }
}

/* Ajustement pour que la banderole n'interfère pas avec la section hero */
.services-hero {
    margin-top: 0;
}

/* Responsive design pour la banderole */
@media (max-width: 768px) {
    .promo-banner h2 {
        font-size: 1.6rem;
    }
    
    .promo-banner p {
        font-size: 1rem;
    }
    
    .promo-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-promo {
        width: 100%;
    }
}

/* Accessibility Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (forced-colors: active) {
    .btn, .btn-promo {
        border: 2px solid currentColor;
    }
    
    .nav-menu a {
        border: 1px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

