/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 40px;
    width: 40px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list li a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 8px 0;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff4500;
    transition: width 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    font-size: 18px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff4500;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1.2s ease;
}

.hero-logo img {
    width: 100%;
    height: auto;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
    animation: fadeInUp 1.4s ease;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.past-events .section-title,
.upcoming-events .section-title {
    color: rgb(253, 49, 4);
    text-align: left;
    font-size: 56px;
    font-style: italic;
    font-weight: 900;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.7;
}

.past-events .section-subtitle,
.upcoming-events .section-subtitle {
    text-align: left;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: #111111;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

.event-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-info {
    padding: 30px;
}

.event-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff4500;
}

.upcoming-events .event-title {
    font-style: italic;
    font-weight: 900;
}

.event-date {
    font-size: 16px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.event-location {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Past Events Specific Styles */
.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.past-event-card {
    background: transparent;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.past-event-card .event-image {
    height: 300px;
    position: relative;
}

.past-event-card .event-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

.past-event-card .event-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: transparent;
}

.past-event-card .event-title {
    font-size: 28px;
    font-weight: 900;
    color: rgb(253, 49, 4);
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.2;
    font-style: italic;
}

.past-event-card .event-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    opacity: 1;
}

.past-event-card .event-location {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    opacity: 1;
}

.btn-relive {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: rgb(253, 49, 4);
    border: 2px solid rgb(253, 49, 4);
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    transform: skewX(-10deg);
    font-style: italic;
}

.btn-relive span {
    display: inline-block;
    transform: skewX(10deg);
}

.btn-relive:hover {
    background: rgb(253, 49, 4);
    color: #ffffff;
}

.event-buttons {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #ff4500;
    color: #ffffff;
}

.btn-primary:hover {
    background: #e63e00;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Buy Tickets Section */
.buy-tickets {
    background: #000000;
}

.buy-tickets .section-title {
    text-align: left;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.tickets-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ticket-row {
    display: grid;
    grid-template-columns: 2fr 4fr 2fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #222222;
    align-items: center;
}

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

.ticket-info-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.ticket-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.ticket-desc-col {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.ticket-desc-col p {
    margin: 0;
}

.ticket-action-col {
    display: flex;
    justify-content: flex-end;
}

.btn-ticket {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-ticket:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ticket i {
    font-size: 12px;
}

.badge-sold-out {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Event Details Page */
.event-details {
    padding-top: 140px;
}

.event-hero {
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.event-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff4500;
}

.event-meta {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222222;
}

.event-meta p {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-meta i {
    color: #ff4500;
}

.event-description h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ff4500;
}

.event-description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.event-description ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 30px;
}

.event-description ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid #222222;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222222;
}

.footer-logo img,
.footer-logo svg {
    height: 80px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 25px;
}

.footer-social a {
    font-size: 24px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ff4500;
}

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

.footer-apps p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.app-button {
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.app-button:hover {
    opacity: 1;
    transform: scale(1.05);
}

.app-button svg {
    display: block;
    width: 126px;
    height: 42px;
}

.app-button svg rect {
    transition: fill 0.3s ease;
}

.app-button:hover svg rect {
    fill: #1a1a1a;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff4500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 50px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 69, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #ff4500;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #ff4500;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.modal-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.ticket-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff4500;
    box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-submit {
    margin-top: 10px;
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
}

.success-message {
    text-align: center;
    padding: 30px;
}

.success-message i {
    font-size: 60px;
    color: #4caf50;
    margin-bottom: 20px;
}

.success-message p {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        padding: 40px;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-tagline {
        font-size: 18px;
    }

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

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

    .past-events-grid {
        grid-template-columns: 1fr;
    }

    .ticket-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
    }

    .ticket-action-col {
        justify-content: flex-start;
    }

    .past-events .section-title,
    .upcoming-events .section-title {
        font-size: 40px;
    }

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

    .event-meta {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modal-content {
        padding: 30px;
        width: 95%;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-subtitle {
        font-size: 14px;
    }
}

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

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

    .section {
        padding: 60px 0;
    }

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

    .event-title {
        font-size: 22px;
    }

    .past-event-card .event-title {
        font-size: 24px;
    }

    .past-events .section-title,
    .upcoming-events .section-title {
        font-size: 32px;
    }

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

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