*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    min-height: 100vh;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 8px;
    background: #1a202c;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 500;
}

.skip-link:focus {
    top: 8px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #1a202c;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 16px;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: #4a5568;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 48px;
    text-align: center;
}

.btn:focus {
    outline: 2px solid #4299e1;
    outline-offset: 2px;
}

.btn-primary {
    background-color: #1a7f4b;
    color: #ffffff;
    border-color: #1a7f4b;
}

.btn-primary:hover:not(:disabled) {
    background-color: #155a33;
    border-color: #155a33;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #1a7f4b;
    border-color: #1a7f4b;
}

.btn-secondary:hover:not(:disabled) {
    background-color: #f7fafc;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    min-height: 56px;
}

.btn-purchase {
    width: 100%;
    max-width: 300px;
    margin-bottom: 16px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
    color: inherit;
}

/* Header */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a7f4b;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-link:hover, .nav-link:focus {
    color: #1a7f4b;
    background-color: #f0fff4;
}

/* Age Gate Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 16px;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.age-gate {
    max-width: 600px;
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.age-gate h1 {
    color: #1a202c;
    margin-bottom: 16px;
    font-size: 2rem;
}

.age-gate p {
    color: #4a5568;
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.age-verification {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.age-verification h2 {
    color: #1a202c;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.age-gate-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.age-gate-notice {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 24px;
}

.age-gate-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #4a5568;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Cookies Modal */
.cookies-modal {
    max-width: 600px;
    text-align: left;
}

.cookies-modal h2 {
    color: #1a202c;
    margin-bottom: 16px;
    text-align: center;
}

.cookie-categories {
    margin: 24px 0;
}

.cookie-category {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-header h3 {
    margin: 0;
    color: #1a202c;
}

.cookie-status {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cookie-status.required {
    background-color: #e2e8f0;
    color: #4a5568;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: #1a7f4b;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.cookie-category p {
    margin: 0;
    color: #4a5568;
    font-size: 0.875rem;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px 0 16px;
}

.cookie-notice {
    font-size: 0.875rem;
    color: #718096;
    text-align: center;
    margin: 0;
}

/* Region Notice Banner */
.region-notice {
    background-color: #fed7d7;
    border: 1px solid #fc8181;
    color: #742a2a;
    padding: 12px 0;
    text-align: center;
    position: relative;
}

.region-notice .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.region-notice p {
    margin: 0;
    flex-grow: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a7f4b 0%, #2d5a3d 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-restriction {
    margin-top: 16px;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Games Section */

/* Lottery Section */
.lottery-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.lottery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.lottery-card {
    background-color: #f7fafc;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.lottery-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.lottery-card:hover {
    transform: translateY(-2px);
    border-color: #1a7f4b;
}

.lottery-card.featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-color: #d69e2e;
    color: #1a202c;
}

.lottery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.lottery-header h3 {
    margin: 0;
    color: inherit;
}

.lottery-badge {
    background-color: #e53e3e;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.lottery-card .jackpot-display {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1a202c;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.lottery-card:not(.featured) .jackpot-display {
    background-color: #1a7f4b;
    color: #ffffff;
}

.lottery-variants {
    margin: 24px 0;
}

.lottery-variants .variant-option {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lottery-card:not(.featured) .variant-option {
    border-bottom-color: #e2e8f0;
}

.variant-name {
    font-weight: 500;
}

.variant-price {
    font-weight: 600;
    color: #1a7f4b;
}

.lottery-card.featured .variant-price {
    color: #d69e2e;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #edf2f7;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step-item {
    text-align: center;
    background-color: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1a7f4b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item h3 {
    color: #1a202c;
    margin-bottom: 12px;
}

.step-item p {
    color: #4a5568;
    margin: 0;
}
/* Product Hero */
.product-hero {
    padding: 40px 0;
    background-color: #f7fafc;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.product-icon-display {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-icon-display svg {
    max-width: 100%;
    height: auto;
}

.product-title {
    color: #1a202c;
    margin-bottom: 16px;
}

.product-description {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 24px;
}

.jackpot-display {
    background-color: #ffd700;
    color: #1a202c;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 24px;
}

.jackpot-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.jackpot-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.draw-info {
    background-color: #edf2f7;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.draw-info p {
    margin-bottom: 8px;
}

.draw-info p:last-child {
    margin-bottom: 0;
}

/* Variant Selector */
.variant-selector {
    margin-bottom: 32px;
}

.variant-selector h3 {
    margin-bottom: 16px;
    color: #1a202c;
}

.variants {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.variant-option {
    position: relative;
}

.variant-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.variant-option label {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.variant-option input[type="radio"]:checked + label {
    border-color: #1a7f4b;
    background-color: #f0fff4;
}

.variant-option label:hover {
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

.variant-name {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4px;
}

.variant-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a7f4b;
    margin-bottom: 4px;
}

.variant-desc {
    font-size: 0.875rem;
    color: #718096;
}

/* Purchase Section */
.purchase-section {
    text-align: center;
}

.price-display {
    background-color: #edf2f7;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-weight: 600;
    color: #4a5568;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a7f4b;
}

.availability-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1a7f4b;
    font-weight: 500;
}

.availability-icon {
    font-size: 1.2rem;
}

/* Trust Section */
.trust-section, .trust-compliance {
    padding: 60px 0;
    background-color: #ffffff;
}

.trust-section h2, .trust-compliance h2 {
    text-align: center;
    margin-bottom: 16px;
}

.trust-section p {
    text-align: center;
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges, .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.trust-badge, .trust-item {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background-color: #f7fafc;
}

.trust-badge-large {
    margin-bottom: 16px;
}

.badge-icon, .age-icon, .protection-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.age-icon {
    background-color: #e53e3e;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-block;
}

.trust-item h3 {
    color: #1a202c;
    margin-bottom: 12px;
}

.trust-item p {
    color: #4a5568;
    text-align: center;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #f7fafc;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.faq-item {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #1a202c;
    margin-bottom: 12px;
}

.faq-item p {
    color: #4a5568;
    margin-bottom: 0;
}

/* Responsible Gambling Styles */
.responsible-hero {
    background-color: #1a7f4b;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.responsible-hero h1 {
    color: #ffffff;
    margin-bottom: 16px;
}

.responsible-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.guidelines {
    display: grid;
    gap: 24px;
    margin: 32px 0;
}

.guideline-item {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #1a7f4b;
}

.guideline-item h3 {
    color: #1a7f4b;
    margin-bottom: 8px;
}

.warning-signs {
    list-style: none;
    margin: 24px 0;
}

.warning-signs li {
    padding: 8px 0 8px 24px;
    position: relative;
}

.warning-signs li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.support-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.support-box, .tools-box {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}

.support-resource {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.support-resource:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.support-resource h4 {
    color: #1a7f4b;
    margin-bottom: 8px;
}

.disclaimer {
    background-color: #fed7d7;
    border: 1px solid #fc8181;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
}

.action-section {
    background-color: #edf2f7;
    padding: 60px 0;
    text-align: center;
}

.action-content h2 {
    margin-bottom: 16px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #f7fafc;
    padding: 32px 0;
    border-top: 1px solid #e2e8f0;
}

/* Footer */
.site-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3, .footer-section h4 {
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-section p {
    color: #cbd5e0;
    margin-bottom: 16px;
}

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

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

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #68d391;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 8px;
    color: #cbd5e0;
}

.compliance-text {
    font-size: 0.875rem;
    color: #a0aec0;
}

/* Enhanced Disclaimer Styling */
.compliance-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(26, 127, 75, 0.1) 0%, rgba(45, 90, 61, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(26, 127, 75, 0.2);
}

.disclaimer-badge {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
    flex-shrink: 0;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;
}

.disclaimer-highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a202c;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.disclaimer-text {
    color: #2d3748;
    font-weight: 500;
}

.disclaimer-separator {
    color: #1a7f4b;
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .compliance-disclaimer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .disclaimer-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .disclaimer-separator {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        min-width: 200px;
    }
    
    .lottery-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .product-icon-display {
        order: -1;
    }
    
    .trust-badges, .trust-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .support-sidebar {
        position: static;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .age-gate-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        min-width: 200px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .container {
        padding: 0 12px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .main-nav {
        justify-content: center;
    }
    
    .modal-content {
        padding: 24px;
        margin: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .jackpot-amount {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .variant-option label {
        padding: 12px;
    }
    
    .trust-badge, .trust-item, .faq-item, .guideline-item {
        padding: 16px;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 3px solid;
    }
    
    .variant-option input[type="radio"]:checked + label {
        border-width: 3px;
    }
    
    .modal-overlay {
        background-color: rgba(0, 0, 0, 0.9);
    }
}

/* Print Styles */
@media print {
    .site-header, .site-footer, .btn, .modal-overlay, .region-notice {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: #000 !important;
    }
    
    * {
        background: none !important;
        color: #000 !important;
    }
    
    a::after {
        content: " (" attr(href) ")";
    }
}

/* Focus Styles for Better Accessibility */
*:focus {
    outline: 2px solid #4299e1;
    outline-offset: 2px;
}

/* Ensure sufficient color contrast */
.btn:focus, .nav-link:focus, .variant-option label:focus {
    outline: 3px solid #4299e1;
    outline-offset: 2px;
}

/* Animation for non-reduced motion users */
@media (prefers-reduced-motion: no-preference) {
    .btn {
        transition: all 0.3s ease;
    }
    
    .hero-features .feature {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }
    
    .hero-features .feature:nth-child(1) { animation-delay: 0.1s; }
    .hero-features .feature:nth-child(2) { animation-delay: 0.2s; }
    .hero-features .feature:nth-child(3) { animation-delay: 0.3s; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}