/* WeTheNorth Market - CSS Styles */

/* CSS Custom Properties */
:root {
    /* Color Palette */
    --primary-red: #d00000;
    --bg-light-gray: #f6f8f9;
    --white: #ffffff;
    --header-dark: #42464d;
    --text-primary: #444444;
    --text-secondary: #4a4e51;
    --input-bg: #ececec;
    --success-green: #4caf50;
    --success-alt: #5cb85c;
    --success-bright: #1aab23;
    --info-blue: #5bc0de;
    --info-alt: #428bca;
    --info-bright: #67bac7;
    --danger-red: #dc381d;
    --danger-dark: #8b0000;
    --danger-bright: #fd3c3c;
    --hover-yellow: #ffc;
    --hover-alt: #fffbe7;
    --hover-bright: #fdfda0;
    --secondary-bg: #f4f4f4;
    --border-light: #e8e0e0;
    --border-gray: #e6e6e6;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px 0;
    --card-padding: 2rem;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light-gray);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Mobile Warning */
.mobile-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.warning-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    margin: 1rem;
}

.warning-content h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.warning-content button {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    transition: var(--transition-fast);
}

.warning-content button:hover {
    background: var(--danger-dark);
}

/* Header */
.header {
    background: var(--header-dark);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.language-toggle {
    color: var(--white);
    font-weight: 500;
}

.lang-active {
    color: var(--primary-red);
}

.lang-inactive {
    opacity: 0.7;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-inactive:hover {
    opacity: 1;
    color: var(--primary-red);
}

.lang-separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(208, 0, 0, 0.1), rgba(66, 70, 77, 0.2));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-medium);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--danger-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: var(--success-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Mirror Links Section */
.mirrors {
    background: var(--white);
    box-shadow: var(--shadow-light);
}

.mirror-box {
    background: var(--header-dark);
    border-radius: 15px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
}

.mirror-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mirror-status {
    color: var(--success-green);
    font-weight: 600;
    font-family: var(--font-mono);
}

.mirror-label {
    color: var(--white);
    font-weight: 600;
}

.mirror-links {
    margin-bottom: 1.5rem;
}

.mirror-link {
    display: block;
    color: var(--info-blue);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.mirror-link:hover {
    color: var(--primary-red);
    background: rgba(255, 255, 255, 0.1);
}

.mirror-placeholder {
    color: var(--white);
    font-family: var(--font-mono);
    font-style: italic;
    opacity: 0.7;
}

.mirror-warning {
    color: var(--hover-bright);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

/* Statistics Section */
.stats {
    background: var(--primary-red);
    color: var(--white);
}

.stats .section-title {
    color: var(--white);
}

.stats .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Security Section */
.security {
    background: var(--white);
}

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

.security-card {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: var(--transition-medium);
    border: 2px solid transparent;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-heavy);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.security-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.security-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.security-badge {
    background: var(--success-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.security-critical {
    background: var(--danger-red);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Rules Section */
.rules {
    background: var(--secondary-bg);
}

.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.rule-category {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.rule-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.rule-item.danger {
    background: rgba(220, 56, 29, 0.1);
    border-left: 4px solid var(--danger-red);
}

.rule-item.success {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid var(--success-green);
}

.rule-item:hover {
    transform: translateX(5px);
}

.rule-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rule-text {
    font-weight: 500;
}

/* Escrow Section */
.escrow {
    background: var(--white);
}

.escrow-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-gray);
    z-index: 1;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    position: relative;
    max-width: 200px;
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--primary-red);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.escrow-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.escrow-option {
    background: var(--secondary-bg);
    padding: var(--card-padding);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.escrow-option h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.escrow-option ul {
    list-style: none;
}

.escrow-option li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.escrow-option li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Vendor Section */
.vendors {
    background: var(--secondary-bg);
}

.vendor-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.requirement-checklist {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.requirement-checklist h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-align: center;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--secondary-bg);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.checklist-item:hover {
    background: var(--hover-alt);
}

.check-icon {
    background: var(--success-green);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.check-text {
    font-weight: 500;
}

.vendor-benefits {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.vendor-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-align: center;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 10px;
    transition: var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-red);
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Wallet Section */
.wallet {
    background: var(--white);
}

.wallet-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.wallet-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary-bg);
    border-radius: 15px;
    transition: var(--transition-medium);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.wallet-example {
    background: var(--secondary-bg);
    padding: var(--card-padding);
    border-radius: 15px;
    text-align: center;
}

.wallet-example h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
}

.qr-placeholder {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

.qr-code {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.address-example {
    background: var(--header-dark);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    word-break: break-all;
}

.wallet-warning {
    background: var(--danger-red);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
}

/* Registration Section */
.registration {
    background: var(--secondary-bg);
}

.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    padding: var(--card-padding);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.step-number {
    background: var(--primary-red);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.step-visual {
    margin-bottom: 1rem;
}

.step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.critical-warning {
    background: var(--danger-red);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
}

.gallery {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
}

.gallery-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.gallery-item {
    min-width: 100%;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: var(--danger-dark);
    transform: scale(1.1);
}

.gallery-btn:disabled {
    background: var(--border-gray);
    cursor: not-allowed;
    transform: none;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background: var(--primary-red);
}

/* Support Section */
.support {
    background: var(--secondary-bg);
}

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

.support-card {
    background: var(--white);
    padding: var(--card-padding);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: var(--transition-medium);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.support-card p {
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--header-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.footer-section li {
    padding: 0.25rem 0;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-section li:hover {
    opacity: 1;
    color: var(--primary-red);
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-badge {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-warning {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav {
        display: none;
    }
    
    .timeline-track {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-track::before {
        display: none;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .rules-container {
        grid-template-columns: 1fr;
    }
    
    .vendor-requirements {
        grid-template-columns: 1fr;
    }
    
    .wallet-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .mobile-warning,
    .gallery-controls,
    .gallery-indicators {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-content {
        background: white;
        box-shadow: none;
    }
}

