:root {
    --primary-color: #000000;
    --secondary-color: #1d1d1f;
    --accent-color: #ff3b30;
    --light-color: #f5f5f7;
    --dark-color: #1d1d1f;
    --text-color: #1d1d1f;
    --text-light: #86868b;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.5px;
}

.red-text {
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 6px 16px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid var(--accent-color);
}

.btn:hover {
    background-color: #e0352b;
    transform: scale(1.05);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
}

.dark-bg {
    background-color: var(--light-color);
}

/* Intro Section */
.intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Ticketmeta Section */
.ticketmeta-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ticketmeta-text {
    flex: 1;
}

.ticketmeta-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.ticketmeta-image {
    flex: 1;
}

.ticketmeta-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Evidence Section */
.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.evidence-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.evidence-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.evidence-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.evidence-item p {
    padding: 20px;
    font-weight: 500;
    text-align: center;
    font-size: 1.05rem;
}

/* Scheme Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    background-color: var(--white);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.red-bg {
    background-color: var(--accent-color);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Warning Section */
.warning-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.warning-text {
    flex: 1;
}

.warning-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.warning-image {
    flex: 1;
}

.warning-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.footer p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .intro-content,
    .ticketmeta-content,
    .warning-content {
        flex-direction: column;
    }
    
    .intro-image,
    .ticketmeta-image,
    .warning-image {
        order: -1;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .evidence-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}