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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles - Matching Hyundai.ru */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.hyundai-logo {
    height: 28px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-link {
    padding: 12px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #002c5f;
}

.nav-link.active {
    color: #002c5f;
    font-weight: 500;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: #002c5f;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #ffffff;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.page-title {
    font-size: 48px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 20px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.brand-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.brand-logo-link:hover {
    opacity: 0.8;
}

.brand-logo {
    height: 32px;
    width: auto;
    display: block;
    max-width: 200px;
    flex-shrink: 0;
}

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

.popmart-logo-img {
    height: 32px;
}

.brand-separator {
    font-size: 20px;
    color: #666666;
    font-weight: 300;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f0f4ff;
    color: #002c5f;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Banner Section */
.banner-section {
    background-color: #fafafa;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
}

.banner-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
}

.banner-image {
    border-radius: 0;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
}

.banner-image:not(:last-child) {
    border-right: 1px solid #e5e5e5;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.banner-image:hover .banner-img {
    transform: scale(1.05);
    opacity: 0.95;
}

/* Info Section */
.info-section {
    background-color: #ffffff;
    border-radius: 0;
    padding: 60px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.info-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.card-title {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.card-text {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

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

.prize-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #002c5f;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.prize-card:hover {
    border-color: #002c5f;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 44, 95, 0.12);
}

.prize-card:hover::before {
    transform: scaleX(1);
}

.prize-icon {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1;
}

.prize-name {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
}

/* Action Section */
.action-section {
    background-color: #fafafa;
    border-radius: 0;
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.action-card {
    max-width: 800px;
    margin: 0 auto;
}

.action-title {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.action-text {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background-color: #002c5f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
}

.btn-primary:hover {
    background-color: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 44, 95, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    border-top: none;
    margin-top: auto;
    padding: 40px 0;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-text {
    font-size: 13px;
    color: #999999;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container,
    .main-content,
    .info-card,
    .action-card,
    .footer-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 968px) {
    .banner-images {
        grid-template-columns: 1fr;
    }

    .banner-image:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }

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

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

    .card-title,
    .action-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 40px 20px;
    }

    .header-container {
        padding: 0 20px;
        height: 70px;
    }

    .hyundai-logo {
        height: 24px;
    }

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

    .page-subtitle {
        font-size: 18px;
    }

    .card-title,
    .action-title {
        font-size: 24px;
    }

    .card-text,
    .action-text {
        font-size: 16px;
    }

    .info-section {
        padding: 40px 0;
    }

    .info-card {
        padding: 0 20px;
    }

    .action-section {
        padding: 60px 20px;
    }

    .prize-card {
        padding: 30px 20px;
    }

    .prize-icon {
        font-size: 48px;
    }

    .main-nav {
        gap: 0;
    }

    .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }

    .btn-primary {
        padding: 14px 40px;
        font-size: 15px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 16px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .brand-logo {
        height: 24px;
        max-width: 120px;
    }

    .brand-separator {
        font-size: 16px;
        margin: 0 4px;
    }

    .card-title,
    .action-title {
        font-size: 22px;
    }

    .btn-primary {
        width: 100%;
        min-width: auto;
    }

    .header-container {
        padding: 0 16px;
    }

    .main-content {
        padding: 30px 16px;
    }

    .info-card,
    .action-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}
