/* ===== VARIABLES ===== */
:root {
    --primary-color: #2D6A4F;
    --primary-light: #40916C;
    --primary-dark: #1B4332;
    --accent-beige: #C9A96E;
    --accent-beige-light: #D4BA82;
    --secondary-color: #2c2c2c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.btn,
.nav a,
.ticket-header h3,
.ticket-price,
.ticket-features li,
.section-title,
.coming-soon-badge,
.hero-title,
.hero-subtitle,
.hero-address,
.footer-section h4,
.modal-content h3,
#totalPrice {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.logo a {
    display: inline-block;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

.nav a:hover::after {
    width: 100%;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: -20px;
    background: url('photo8.png') center/cover no-repeat;
    filter: brightness(0.4);
    z-index: 0;
    transition: transform 0.1s linear;
}

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

.hero-content-full {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 40px 0;
}

.hero-left-edge {
    text-align: left;
    color: var(--white);
    max-width: 500px;
}

.hero-right-edge {
    flex: 0 0 380px;
}

/* Hero animations */
.hero-left-edge {
    animation: fadeInUp 0.8s ease-out;
}

.hero-left-edge .hero-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-left-edge .hero-prize-info {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-right-edge {
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.hero-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-metro-inline {
    font-size: 36px;
    opacity: 0.8;
}

.hero-prize-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.prize-circle {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    flex-shrink: 0;
}

.prize-text p {
    font-size: 20px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.prize-text p:last-child {
    opacity: 0.8;
    font-size: 18px;
}

/* Hero Card */
.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 35px;
    color: var(--text-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.card-steps {
    margin-bottom: 25px;
}

.card-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.card-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #e8e4df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--text-light);
}

.step-icon.tg {
    background: linear-gradient(135deg, #0088cc, #6c3fb5);
    color: var(--white);
}

.step-icon.tg svg {
    width: 18px;
    height: 18px;
}

.step-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-light);
}

.step-text strong {
    color: var(--text-color);
}

.step-text a {
    color: var(--text-color);
    font-weight: 700;
    display: block;
}

.step-text a:hover {
    color: var(--primary-color);
}

.step-text small {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}

/* Card Social Section */
.card-social-section {
    margin-bottom: 25px;
    text-align: center;
}

.card-social-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.card-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.card-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e8e4df;
    transition: var(--transition);
}

.card-social-link.telegram:hover {
    background: #0088cc;
    color: white;
}

.card-social-link.vk:hover {
    background: #0077FF;
    color: white;
}

.card-social-link.max:hover {
    background: var(--accent-beige);
    color: white;
}

.card-social-link svg {
    transition: var(--transition);
}

/* Participate Button */
.btn-participate {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-participate:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Зелёные кнопки на белом фоне */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Бежевые кнопки на тёмном фоне */
.btn-beige {
    background: var(--accent-beige);
    color: var(--white);
}

.btn-beige:hover {
    background: var(--accent-beige-light);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-text {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
    padding-bottom: 20px;
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.gallery-item {
    flex: 0 0 400px;
    height: 300px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.placeholder-content {
    text-align: center;
    color: var(--text-light);
}

.placeholder-content span {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
}

.placeholder-content small {
    display: block;
    font-size: 14px;
}

/* ===== PARTICIPATE SECTION ===== */
.participate {
    padding: 100px 0;
    background: var(--white);
}

.tickets-tagline {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    font-style: italic;
}

/* ===== TICKETS SECTION ===== */
.tickets {
    padding: 100px 0;
    background: var(--white);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ticket-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ticket-card .btn {
    margin-top: auto;
}

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

.ticket-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #e8f5e9 0%, var(--white) 100%);
}

.ticket-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.ticket-header h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.ticket-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ticket-deposit {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.ticket-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.ticket-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.ticket-features li:last-child {
    border-bottom: none;
}

/* ===== SOCIAL SECTION ===== */
.social {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--white);
    text-align: center;
}

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

.social-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.telegram:hover {
    color: var(--primary-color);
}

.social-link.vk:hover {
    color: var(--primary-light);
}

.social-link.max:hover {
    color: var(--accent-beige);
}

.social-link svg {
    transition: var(--transition);
}

/* ===== LOCATION SECTION ===== */
.location {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.location-address {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.location-address small {
    display: block;
    margin-top: 10px;
    font-size: 16px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.location-info {
    margin-top: 30px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-section p,
.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-content h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

#ticketInfo {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
}

#ticketForm input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

#ticketForm input:focus {
    outline: none;
    border-color: var(--primary-color);
}

#totalPrice {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
    text-align: center;
}

#ticketForm .btn {
    width: 100%;
}

/* ===== RAFFLE MODAL ===== */
.modal-raffle {
    text-align: center;
}

.raffle-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.5;
}

.raffle-steps {
    text-align: left;
    margin-bottom: 25px;
}

.raffle-step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.raffle-step-num {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.raffle-step p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.raffle-check {
    margin-bottom: 20px;
}

.raffle-check label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}

.raffle-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

#raffleForm input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

#raffleForm input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 36px;
    }

    .tickets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 20px 0 40px;
    }

    .hero-content-full {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }

    .hero-left-edge {
        max-width: 100%;
        text-align: left;
    }

    .hero-right-edge {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .hero-metro-inline {
        font-size: 20px;
    }

    .hero-prize-info {
        gap: 15px;
    }

    .prize-circle {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .prize-text p {
        font-size: 16px;
    }

    .prize-text p:last-child {
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

    .about,
    .gallery,
    .tickets,
    .social,
    .location {
        padding: 60px 0;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex: 0 0 280px;
        height: 200px;
    }

    .social-links {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* ===== RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-group {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-location {
        font-size: 16px;
    }

    .coming-soon-badge {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery-item {
        flex: 0 0 240px;
        height: 180px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ticket card hover */
.ticket-card:hover {
    transform: translateY(-8px);
}
/* ===== MOBILE FIXES - OVERRIDE STYLES ===== */

/* ===== RESPONSIVE - MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
    /* Уменьшаем логотип */
    .logo img {
        height: 35px;
    }

    .header-content {
        padding: 12px 0;
    }

    /* Hero section адаптация */
    .hero {
        min-height: auto;
        padding: 80px 0 30px;
        margin-top: 60px;
    }

    .hero-container-full {
        padding: 0 15px;
    }

    .hero-content-full {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }

    .hero-left-edge {
        max-width: 100%;
        text-align: center;
        order: 2;
    }

    .hero-right-edge {
        flex: none;
        width: 100%;
        max-width: 100%;
        order: 1;
    }

    /* Уменьшаем заголовок */
    .hero-title {
        font-size: 24px;
        letter-spacing: 2px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hero-metro-inline {
        font-size: 16px;
    }

    /* Уменьшаем блок с призом */
    .hero-prize-info {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .prize-circle {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .prize-text p {
        font-size: 14px;
    }

    .prize-text p:last-child {
        font-size: 12px;
    }

    /* Уменьшаем hero-card */
    .hero-card {
        padding: 20px;
        border-radius: 16px;
    }

    .card-title {
        font-size: 14px;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .card-steps {
        margin-bottom: 15px;
    }

    .card-step {
        gap: 10px;
        margin-bottom: 12px;
    }

    .step-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .step-text {
        font-size: 13px;
        line-height: 1.4;
    }

    .card-social-section {
        margin-bottom: 15px;
    }

    .card-social-label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .card-social-icons {
        gap: 15px;
    }

    .card-social-link svg {
        width: 24px;
        height: 24px;
    }

    /* Уменьшаем кнопки */
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Заголовки секций */
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    /* Секции */
    .about,
    .gallery,
    .participate,
    .social,
    .location {
        padding: 40px 0;
    }

    /* Уменьшаем текст о ресторане в 2 раза */
    .about-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
        padding: 0 10px;
    }

    /* Галерея - уменьшаем и добавляем прокрутку */
    .gallery-scroll {
        padding-bottom: 10px;
    }

    .gallery-track {
        gap: 10px;
    }

    .gallery-item {
        flex: 0 0 260px;
        height: 180px;
    }

    /* Билеты */
    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ticket-card {
        padding: 20px;
    }

    .ticket-header h3 {
        font-size: 18px;
    }

    .ticket-price {
        font-size: 28px;
    }

    .ticket-features li {
        font-size: 14px;
    }

    /* Соцсети - горизонтально с иконками */
    .social-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .social-link {
        flex-direction: column;
        gap: 8px;
    }

    .social-link svg {
        width: 32px;
        height: 32px;
    }

    .social-link span {
        font-size: 12px;
    }

    .social-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Локация */
    .location-address {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .location-address small {
        font-size: 12px;
    }

    .map-container {
        margin-bottom: 20px;
    }

    .map-container iframe {
        height: 250px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }

    /* Модальные окна */
    .modal-content {
        padding: 25px 15px;
        margin: 20px;
    }

    .modal-content h3 {
        font-size: 18px;
    }

    #ticketForm input,
    #raffleForm input {
        padding: 10px 12px;
        font-size: 14px;
    }

    /* Теглайн */
    .tickets-tagline {
        font-size: 18px;
    }
}

/* ===== RESPONSIVE - SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    /* Еще меньше логотип */
    .logo img {
        height: 30px;
    }

    .hero {
        padding: 70px 0 25px;
    }

    .hero-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .hero-metro-inline {
        font-size: 14px;
    }

    .prize-circle {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .prize-text p {
        font-size: 13px;
    }

    .hero-card {
        padding: 15px;
    }

    .card-title {
        font-size: 13px;
    }

    .card-step {
        margin-bottom: 10px;
    }

    .step-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .step-text {
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
    }

    .about-text {
        font-size: 13px;
        padding: 0 5px;
    }

    .gallery-item {
        flex: 0 0 220px;
        height: 150px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link svg {
        width: 28px;
        height: 28px;
    }

    .social-link span {
        font-size: 11px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .ticket-header h3 {
        font-size: 16px;
    }

    .ticket-price {
        font-size: 24px;
    }

    .location-address {
        font-size: 13px;
    }

    .map-container iframe {
        height: 200px;
    }
}
