body{
    background-color: black;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    color: white;
}
.hero-overlay h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero-overlay p {
    font-size: 1.5rem;
    margin-top: 10px;
}
.buttons {
    margin-top: 20px;
}
.btn {
    padding: 12px 24px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    color: white;
}
.orange { background-color: #f97316; width: 250px;}
.orange:hover { background-color: #ea580c; }
.teal { background-color: #14b8a6; width: 250px;}
teal:hover { background-color: #0d9488; }


.featured-imagery {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    background: black;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}
.image-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.speakers-section {
    text-align: center;
    padding: 80px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
    opacity: 0;
    transition: opacity 1.5s ease;
}

.video-background video.loaded {
    opacity: 1;
}

.speakers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85));
    z-index: -1;
}

.speakers-title {
    position: relative;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}
.speakers-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.speaker {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(4, 14, 23, 0.8);
    padding: 20px;
    border-radius: 10px;

}
.speaker img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}
.speaker-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.speaker-info p {
    font-size: 1.2rem;
    color: #bbb;
}
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: -1;
}

.cta-section {
    background: black;
    color: white;
    text-align: center;
    padding: 60px 20px;
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.cta-btn {
    padding: 14px 24px;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
}
.tickets-btn {
    background-color: #f97316;
    color: white;
    font-weight: bold;
}
.tickets-btn:hover {
    background-color: #ea580c;
    transform: scale(1.05);
}
.sponsor-btn {
    background-color: #14b8a6;
    color: white;
    font-weight: bold;
}
.sponsor-btn:hover {
    background-color: #0d9488;
    transform: scale(1.05);
}



.benefits-section {
    background: linear-gradient(180deg, black, rgba(15, 15, 15, 0.95));
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}
.benefits-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #f97316, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.benefits-section p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 25px;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #14b8a6);
    opacity: 0.8;
}
.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2);
}
.benefit h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit h3 span {
    font-size: 2rem;
    margin-right: 10px;
    background: linear-gradient(45deg, #f97316, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.benefit p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }
    .benefit {
        flex-direction: column;
        align-items: center;
    }
    .benefit h3 {
        white-space: normal;
        text-align: center;
    }
}

.testimonials {
    margin-top: 40px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}
.testimonials blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #ddd;
}
.testimonials cite {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: #aaa;
}

/* Tickets Section */
.tickets-section {
    background: linear-gradient(180deg, black, rgba(15, 15, 15, 0.95));
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.tickets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(249, 115, 22, 0.15)"/></svg>'),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><circle cx="100" cy="100" r="2" fill="rgba(20, 184, 166, 0.1)"/></svg>');
    pointer-events: none;
    z-index: 0;
    animation: floatBackground 120s linear infinite;
}

@keyframes floatBackground {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 1000% 1000%;
    }
}

.tickets-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, black 90%);
    pointer-events: none;
    z-index: 1;
}

.tickets-section h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #f97316, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 2;
    text-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.tickets-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.timer-container {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 15px;
    padding: 25px;
    max-width: 800px;
    margin: 0 auto 60px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.timer-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    animation: pulseGlow 8s infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.9);
    }
}

.timer-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #f97316;
    position: relative;
    display: inline-block;
}

.timer-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f97316, transparent);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 20px;
    min-width: 100px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}

.time-unit span:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.time-unit .label {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tickets-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ticket-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.6s ease;
}

.ticket-card:hover::before {
    transform: translateY(100%);
}

.ticket-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
    border-color: rgba(249, 115, 22, 0.3);
}

.ticket-card.featured {
    border: 1px solid rgba(249, 115, 22, 0.3);
    transform: scale(1.05);
    z-index: 3;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.4);
}

.ticket-card.featured::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #f97316, #14b8a6, #f97316);
    z-index: -1;
    border-radius: 20px;
    opacity: 0.3;
    filter: blur(15px);
    animation: gradientBorder 10s linear infinite;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.ticket-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.featured-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(90deg, #f97316, #ea580c);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
    z-index: 5;
}

.ticket-header {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.ticket-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
}

.ticket-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    display: inline-block;
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #14b8a6;
    text-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
}

.ticket-card:hover .price {
    transform: scale(1.1);
}

.ticket-content {
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ticket-content ul {
    text-align: left;
    margin-bottom: 30px;
    list-style-type: none;
    padding: 0;
    flex-grow: 1;
}

.ticket-content ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ddd;
    position: relative;
    padding-left: 30px;
}

.ticket-content ul.animate-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #14b8a6;
    font-weight: bold;
    transform: scale(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.ticket-card:hover .ticket-content ul.animate-check li::before {
    transform: scale(1.2);
    transition-delay: calc(0.05s * var(--li-index, 0));
}

.ticket-content ul li:nth-child(1) { --li-index: 1; }
.ticket-content ul li:nth-child(2) { --li-index: 2; }
.ticket-content ul li:nth-child(3) { --li-index: 3; }
.ticket-content ul li:nth-child(4) { --li-index: 4; }
.ticket-content ul li:nth-child(5) { --li-index: 5; }
.ticket-content ul li:nth-child(6) { --li-index: 6; }

.ticket-btn {
    background: linear-gradient(90deg, #f97316, #f97316);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    z-index: 2;
}

.ticket-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ea580c, #f97316);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.ticket-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4);
}

.ticket-btn:hover::before {
    opacity: 1;
}

.ticket-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.ticket-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkles::before,
.sparkles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0) 20%),
        radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0) 20%),
        radial-gradient(circle at 40% 80%, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0) 20%),
        radial-gradient(circle at 70% 60%, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0) 20%);
}

.sparkles::before {
    filter: blur(20px);
    animation: sparkleMovement 20s ease-in-out infinite alternate;
}

.sparkles::after {
    filter: blur(30px);
    animation: sparkleMovement 30s ease-in-out infinite alternate-reverse;
}

@keyframes sparkleMovement {
    0% {
        transform: translateX(-5%) translateY(-2%);
    }
    50% {
        transform: translateX(3%) translateY(5%);
    }
    100% {
        transform: translateX(5%) translateY(-3%);
    }
}

.sparkle-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 10px 2px currentColor;
    animation: sparkle-fade 20s ease-in-out infinite;
}

@keyframes sparkle-fade {
    0%, 100% {
        opacity: 0;
        transform: scale(0.2);
    }
    50% {
        opacity: 0.8;
        transform: scale(1);
    }
}

.highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    pointer-events: none;
    z-index: 10;
}

/* Sponsorship Section Styles */
.sponsorship-section {
    background-color: #050505;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sponsorship-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0) 25%),
        radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0) 25%),
        radial-gradient(circle at 10% 80%, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0) 25%),
        radial-gradient(circle at 90% 90%, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0) 25%);
    opacity: 0.8;
    z-index: 0;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.95));
    z-index: 1;
}

.sponsorship-section .section-header-wrapper,
.sponsorship-section .sponsorship-intro,
.sponsorship-section .sponsorship-container,
.sponsorship-section .sponsors-logos,
.sponsorship-section .sponsorship-cta {
    position: relative;
    z-index: 2;
}

.section-header-wrapper {
    margin-bottom: 50px;
    text-align: center;
}

.sponsorship-section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: white;
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.section-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 25px;
}

.diamond {
    width: 10px;
    height: 10px;
    background-color: #f97316;
    transform: rotate(45deg);
    margin: 0 10px;
}

.line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.3), rgba(249, 115, 22, 1), rgba(249, 115, 22, 0.3));
}

.section-description {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #e0e0e0;
    line-height: 1.6;
}

.sponsorship-intro {
    max-width: 800px;
    margin: 0 auto 70px;
}

.intro-highlight {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.2);
    position: relative;
}

.intro-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0), rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0));
    border-radius: 16px;
    z-index: -1;
    animation: border-animation 6s linear infinite;
}

@keyframes border-animation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.intro-highlight .highlight-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
    color: #f97316;
}

.intro-highlight .highlight-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.8));
    animation: pulse-glow 3s ease-in-out infinite;
    margin:0 auto;
}

@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.8));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.9));
        transform: scale(1.08);
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.8));
        transform: scale(1);
    }
}

.intro-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f97316;
}

.intro-highlight p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.sponsorship-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 70px;
    perspective: 1000px;
}

.sponsorship-card {
    background: rgba(15, 15, 15, 0.8);
    border-radius: 16px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transform-style: preserve-3d;
    z-index: 1;
}

.sponsorship-card.premium {
    backdrop-filter: blur(10px);
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.8), rgba(10, 10, 10, 0.95));
}

.sponsorship-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(249, 115, 22, 0.1);
    z-index: 2;
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.02) 15%,
        rgba(255,255,255,0.05) 30%,
        rgba(255,255,255,0.02) 45%,
        rgba(255,255,255,0) 100%
    );
    transform: translateY(100%);
    transition: transform 0.7s ease-out;
    pointer-events: none;
}

.sponsorship-card:hover .card-shine {
    transform: translateY(-100%);
}

.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.sponsorship-card:hover .card-glow {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 10px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sponsorship-card:hover .card-badge {
    transform: translateY(0);
}

.card-header {
    padding: 30px 25px 20px;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.8));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.card-header h3 {
    font-size: 1.6rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    margin-right: 12px;
    font-size: 1.4rem;
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-content {
    padding: 35px 25px;
    position: relative;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background-color: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    border: 2px solid #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(8px);
    opacity: 1;
}

.feature-list li:hover:before {
    transform: scale(1.1);
    background-color: rgba(249, 115, 22, 0.3);
}

.feature-list.special li {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    padding-left: 0;
}

.feature-list.special li:before {
    display: none;
}

.sponsor-level {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
}

.sponsor-level.gold {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
}

.sponsor-level.silver {
    background: linear-gradient(45deg, #C0C0C0, #E0E0E0);
    color: #000;
}

.sponsor-level.community {
    background: linear-gradient(45deg, #14b8a6, #0d9488);
    color: white;
}

.sponsor-desc {
    margin-top: 5px;
    font-size: 0.95rem;
    color: #bbb;
}

.sponsors-logos {
    max-width: 900px;
    margin: 0 auto 70px;
}

.sponsors-logos h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.logo-placeholder {
    width: 180px;
    height: 80px;
    background: rgba(30, 30, 30, 0.5);
    border: 1px dashed rgba(249, 115, 22, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(249, 115, 22, 0.8);
    font-weight: bold;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.3);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.sponsorship-cta {
    margin-top: 60px;
    position: relative;
}

.sponsorship-cta p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 30px;
}

.sponsor-btn {
    display: inline-block;
    background: linear-gradient(45deg, #f97316, #ea580c);
    color: white;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.sponsor-btn:hover {
    transform: translateY(-7px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
}

.sponsor-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.sponsor-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
}

.btn-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.8), transparent 70%);
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.sponsor-btn:hover .btn-glow {
    opacity: 0.4;
}

@media (max-width: 1100px) {
    .sponsorship-container {
        gap: 25px;
    }
    
    .sponsorship-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .sponsorship-section {
        padding: 70px 15px;
    }
    
    .sponsorship-section h2 {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .sponsorship-container {
        flex-direction: column;
        align-items: center;
    }
    
    .sponsorship-card {
        width: 100%;
        max-width: 400px;
    }
    
    .intro-highlight h3 {
        font-size: 1.6rem;
    }
    
    .logos-container {
        gap: 15px;
    }
    
    .logo-placeholder {
        width: 140px;
        height: 70px;
    }
}


/* Styles for FAQ Section */
.faq-section {
    padding: 5rem 0;
    position: relative;
    background-color: #080808;
    overflow: hidden;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-column {
    flex: 1 1 400px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-category-title {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.category-icon {
    color: #8a65ff;
    margin-right: 10px;
    font-size: 1.5rem;
}

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

.faq-item {
    background: rgba(25, 25, 35, 0.7);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 100, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 101, 255, 0.15);
}

.faq-question {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    max-width: 90%;
}

.toggle-icon {
    color: #8a65ff;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: rgba(20, 20, 30, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p, .faq-answer ul {
    padding: 1.2rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-details-list li, .faq-benefits-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-details-list li::before, .faq-benefits-list li::before {
    content: "•";
    color: #8a65ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.benefits-column {
    flex: 1 1 45%;
}

.faq-answer h5 {
    color: #a58bff;
    margin: 1.2rem 0 0.5rem 1.2rem;
    font-size: 1.1rem;
}

.faq-cta {
    margin-top: 3rem;
    text-align: center;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.faq-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8a65ff 0%, #6044c2 100%);
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 101, 255, 0.3);
}

.faq-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 101, 255, 0.4);
}

.btn-arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.faq-btn:hover .btn-arrow {
    transform: translateX(5px);
}



.faq-section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: white;
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease infinite;
}

.sponsorship-card .card-header h3 .icon {
    margin-right: 10px;
    color: #f97316;
    font-size: 22px;
}

.sponsorship-card .sponsor-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
    filter: drop-shadow(0 0 3px rgba(249, 115, 22, 0.7));
    transition: all 0.3s ease;
}

.sponsorship-card:hover .sponsor-icon {
    filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.9));
    transform: scale(1.1);
}

.sponsorship-card .card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 10px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sponsorship-card:hover .card-badge {
    transform: translateY(0);
}


/* Footer Styles */
.site-footer {
    background: linear-gradient(to bottom, rgba(10, 10, 20, 0.8), rgba(5, 5, 15, 0.95));
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;

}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 0 10px 20px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #f97316;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f97316;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e2e2e2;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #f97316;
    transform: translateX(5px);
}

.footer-icon {
    margin-right: 10px;
    color: #f97316;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(30, 30, 40, 0.8);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.social-icon:hover {
    background: #f97316;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.footer-cta {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(30, 30, 40, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }

    /* Responsive styles for tickets section */
    .tickets-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .ticket-card {
        margin-bottom: 20px;
    }
    
    .ticket-card.featured {
        transform: scale(1);
        margin-top: 0;
        margin-bottom: 20px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 10px;
    }
    
    .time-unit span:first-child {
        font-size: 1.8rem;
    }
    
    .time-unit .label {
        font-size: 0.7rem;
    }
    
    .tickets-section h2 {
        font-size: 2.5rem;
    }
    
    .tickets-section p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .timer-text {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tickets-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ticket-card.featured {
        grid-column: span 2;
        margin-top: 20px;
    }
}