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

body {
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.header {
    background-color: #38b6d4;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 65px;
    width: auto;
}

.logo-text {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
}

.hero {
    background-color: #38b6d4;
    padding: 40px 0 80px;
}

.hero-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 0 0 400px;
}

.hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-description {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.hero-description a {
    color: #fff;
    text-decoration: underline;
}

.disclaimer {
    color: #fff;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
}

.event-info {
    display: flex;
    gap: 10px;
}

.info-box {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 30px;
    position: relative;
}


.info-label {
    display: block;
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

.info-value {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.ticket-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ticket-card h2 {
    color: #999;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #e91e8c;
    color: #fff;
    width: 100%;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background-color: #c4197a;
}

.benefits-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefits-list li {
    color: #2f5c6a;
    font-size: 16px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    color: #2f5c6a;
}

.cancellation-link {
    color: #38b6d4;
    font-size: 14px;
}

.cancellation-link:hover {
    text-decoration: underline;
}

.gallery {
    background-color: #38b6d4;
    padding: 0;
    position: relative;
}

.audio-bars {
    overflow: hidden;
    line-height: 0;
}

.audio-bars img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.carousel-wrapper {
    padding: 0 20px 40px;
    position: relative;
}

.sponsors-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.sponsors-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.sponsors-header h2 {
    color: #38b6d4;
    font-size: 28px;
    font-weight: 300;
}

.subtitle {
    color: #8bc53f;
    font-size: 20px;
}

.carousel {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 7px);
    min-width: calc(33.333% - 7px);
}

.carousel-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: #fff;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.sponsors {
    background-color: #fff;
    padding: 80px 0;
}

.btn-sponsor {
    background-color: #045ff1;
    color: #fff;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-sponsor:hover {
    background-color: #5c8dff;
}

.sponsors-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.sponsors-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.sponsors-logos img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}

.refund-policy {
    background-color: #fff;
    padding: 60px 0;
}

.refund-policy h2 {
    color: #38b6d4;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
}

.refund-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.refund-item {
    flex: 1;
    min-width: 250px;
}

.refund-item h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.refund-item a {
    color: #38b6d4;
}

.refund-item a:hover {
    text-decoration: underline;
}

.refund-hero {
    min-height: calc(100vh - 120px);
}

.refund-card {
    background-color: #fff;
    padding: 40px;
    max-width: 900px;
}

.refund-card h1 {
    color: #333;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
}

.refund-section {
    margin-bottom: 25px;
}

.refund-section h2 {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.refund-section p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.refund-section a {
    color: #38b6d4;
}

.refund-section a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #555;
    padding: 15px 0;
}

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.footer-nav a {
    color: #38b6d4;
    font-size: 14px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-nav .divider {
    color: #888;
    margin: 0 10px;
}

.copyright {
    color: #999;
    font-size: 14px;
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-right {
        flex: 1;
        width: 100%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .carousel-slide {
        flex: 0 0 calc(50% - 5px);
        min-width: calc(50% - 5px);
    }

    .carousel-slide img {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 26px;
    }

    .event-info {
        flex-direction: column;
    }

    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-slide img {
        height: 200px;
    }

    .sponsors-header {
        flex-direction: column;
        text-align: center;
    }

    .btn-sponsor {
        margin: 20px auto 0;
    }

    .footer-bar {
        flex-direction: column;
        gap: 10px;
    }
}
