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

body {
    font-family: Arial, sans-serif;
    background: #191919;
    color: #fff;
    overflow-x: hidden;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: #191919;
    border-bottom: 1px solid #333;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 15%;
}

.scope-left,
.scope-right {
    font-weight: bold;
    color: #fff;
    font-size: 2.2em;
    letter-spacing: 0.02em;
    display: inline-block;
    vertical-align: middle;
}

.scope-infinity {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px -8px 2px;
}

.entertainment {
    font-size: 0.75em;
    color: #fff;
    letter-spacing: 0.15em;
    margin-top: 2px;
    font-weight: 500;
}

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

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav a:hover {
    color: #F9B233;
}

.save-spot-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 1em;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.save-spot-btn:hover {
    background: #F9B233;
    border-color: #F9B233;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #191919;
    overflow: hidden;
}

.tilted-cards {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 100px;
}

.card {
    width: 280px;
    height: 420px;
    background: #ddd;
    border-radius: 15px;
    transform-origin: center;
}

.card1 { transform: rotate(-8deg); background: url("Diljit.jpg"); background-size: cover; }
.card2 { transform: rotate(5deg); background: url("atif.jpg");background-size: cover; }
.card3 { transform: rotate(-3deg); background: url("Arjit.jpg");background-size: cover; }
.card4 { transform: rotate(7deg); background: url("honey.webp");background-size: cover; }
.card5 { transform: rotate(-5deg); background: url("king.jpeg");background-size: cover;  }

.hero-content {
    z-index: 10;
    text-align: center;
    margin-top: 100px;
}

.hero-text {
    font-family: 'Impact', 'Arial Black', Arial, sans-serif;
    font-size: 4.5em;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.bullet {
    color: #F9B233;
    font-size: 0.3em;
    vertical-align: middle;
}

.save-my-spot-btn {
    background: #F9B233;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-weight: bold;
    font-size: 1.2em;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s;
}

.save-my-spot-btn:hover {
    background: #fff;
    color: #F9B233;
}

/* Offer Section */
.offer-section {
    background: #191919;
    width: 100vw;
    padding-bottom: 70px;
    padding-top: 24px;
    text-align: center;
}

.offer-header {
    margin-top: 26px;
    margin-bottom: 40px;
}

.offer-label {
    color: #fff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.1em;
    letter-spacing: 0.07em;
    font-weight: bold;
    display: block;
    margin-bottom: 12px;
}

.offer-title {
    color: #fff;
    font-family: 'Impact', 'Arial Black', Arial, sans-serif;
    font-size: 4.2em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 26px;
    letter-spacing: 0.02em;
}

.offer-cards-row {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
    margin: auto;
    
}

.offer-card {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 18px;
    padding: 38px 26px 36px 26px;
    min-width: 250px;
    width: 250px;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Arial', sans-serif;
}

.offer-card-title {
    color: #F9B233;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.09em;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
}

.offer-card p {
    margin: 0;
    color: #fff;
    font-size: 1.08em;
    font-family: Arial, sans-serif;
    font-weight: 500;
    line-height: 1.38em;
    max-width: 300px;
}

/* Events Section */
.events-section {
    background: #191919;
    width: 100vw;
    min-height: 100vh;
    text-align: center;
    
}

.events-header {
    padding-top: 38px;
}

.events-label {
    color: #fff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.1em;
    letter-spacing: 0.07em;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    margin-top: 0;
}

.events-title {
    color: #F9B233;
    font-family: 'Impact', 'Arial Black', Arial, sans-serif;
    font-size: 4.2em;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: 0.02em;
    line-height: 1em;
}

.events-bg-wrapper {
    max-width: 100%;
    margin: auto;
    height: 100vh !important;
}

.events-bg-image {
    background: linear-gradient(135deg, #4B1A8B 0%, #7B2CBF 100%);
    border-radius: 0 0 12px 12px;
    position: relative;
    height: 90vh !important;
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 40px;
}

.events-content {
    display: flex;
    align-items: center;
    justify-content: end;
    height: 310px;
    padding-top: 32px;
}
.events-bg-image{
    background: url("https://www.filmfare.com/awards/filmfare-awards-punjabi-2025/images/banner.jpg?v=0.12");
    background-size: cover;
}
.filmfare-details {
    text-align: right;
    margin-right: 20vw;
}

.event-date {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 1.1em;
    letter-spacing: 0.04em;
}

.event-main-title {
    color: #fff;
    font-family: 'Impact', 'Arial Black', Arial, sans-serif;
    font-size: 3.5em;
    font-weight: bold;
    margin-top: 9px;
    margin-bottom: 0;
    letter-spacing: 0.06em;
}

.event-subtitle {
    color: #fff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.42em;
    font-weight: bold;
    letter-spacing: 0.02em;
    margin-bottom: 9px;
}

.event-location {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 1.13em;
    margin-bottom: 20px;
}

.get-tickets-btn {
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 13px 34px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    background: transparent;
    letter-spacing: 0.11em;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
}

.get-tickets-btn:hover {
    background: #fff;
    color: #4B248B;
}

.events-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-top: 36px;
    padding-bottom: 0;
    position: relative;
    min-height: 170px;
}

.slider-arrow {
    color: #fff;
    font-size: 2.4em;
    font-weight: bold;
    cursor: pointer;
    padding: 0 28px;
    user-select: none;
    line-height: 1em;
}

.slider-cards {
    display: flex;
    gap: 36px;
    align-items: flex-end;
    justify-content: center;
}

.slider-card {
    background: transparent;
    text-align: center;
    min-width: 220px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-card img {
    width: 196px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #d2d2d2;
}

.slider-caption {
    color: #fff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.02em;
    font-weight: bold;
    margin-bottom: 2px;
    letter-spacing: 0.01em;
}

/* Artists Section */
.artists-section {
    background: #191919;
    width: 100vw;
    padding-bottom: 48px;
    padding-top: 40px;
    text-align: center;
}

.artists-header {
    margin-bottom: 30px;
}

.artists-label {
    color: #fff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.05em;
    letter-spacing: 0.07em;
    font-weight: bold;
    display: block;
    margin-bottom: 9px;
    margin-top: 0;
}

.artists-title {
    color: #F9B233;
    font-family: 'Impact', 'Arial Black', Arial, sans-serif;
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    line-height: 1em;
}

.artists-row {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-top: 42px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.artist-card {
    border: 2px solid #fff;
    border-radius: 18px;
    overflow: hidden;
    background: #191919;
    width: 240px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #d2d2d2;
}

.artists-btn-row {
    margin-top: 18px;
}

.see-all-artists-btn {
    background: #F9B233;
    color: #fff;
    font-weight: bold;
    font-size: 1.09em;
    letter-spacing: 0.09em;
    text-decoration: none;
    padding: 13px 38px;
    border-radius: 7px;
    border: none;
    box-shadow: 0 3px 14px rgba(0,0,0,0.08);
    transition: background 0.2s;
    display: inline-block;
}

.see-all-artists-btn:hover {
    background: #fff;
    color: #F9B233;
}

/* Sponsors Section */
.sponsors-section {
    background: #191919;
    padding-bottom: 90px;
    text-align: center;
    padding-top: 62px;
}

.sponsors-header {
    margin-bottom: 28px;
}

.sponsors-label {
    color: #fff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.09em;
    letter-spacing: 0.07em;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.sponsors-title {
    color: #fff;
    font-family: 'Impact', 'Arial Black', Arial, sans-serif;
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    line-height: 1em;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 18px;
}

.sponsors-title span {
    color: #F9B233;
}

.sponsors-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
    margin-top: 48px;
    min-height: 340px;
}

.sponsor-arc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 390px;
    width: 160px;
    position: relative;
}

.sponsor-arc img {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
    margin: 0 auto;
    box-shadow: 0 2px 13px rgba(0,0,0,0.10);
    border: none;
    position: absolute;
    left: 20px;
}

/* left arc precise positions */
.sponsor-arc.left img:nth-child(1) { top: 0;  left: 14px; }
.sponsor-arc.left img:nth-child(2) { top: 40px; left: 0px;}
.sponsor-arc.left img:nth-child(3) { top: 92px; left: -8px;}
.sponsor-arc.left img:nth-child(4) { top: 158px; left: -10px;}
.sponsor-arc.left img:nth-child(5) { top: 228px; left: 2px;}
.sponsor-arc.left img:nth-child(6) { top: 305px; left: 18px;}

/* right arc precise positions */
.sponsor-arc.right img:nth-child(1) { top: 0;  left: 22px;}
.sponsor-arc.right img:nth-child(2) { top: 40px; left: 30px;}
.sponsor-arc.right img:nth-child(3) { top: 92px; left: 44px;}
.sponsor-arc.right img:nth-child(4) { top: 158px; left: 33px;}
.sponsor-arc.right img:nth-child(5) { top: 228px; left: 21px;}
.sponsor-arc.right img:nth-child(6) { top: 305px; left: 8px;}

.center-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #F9B233;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px rgba(0,0,0,0.09);
    margin: 0 60px;
    position: relative;  
}

.circle-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.circle-text {
    color: #fff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.48em;
    font-weight: bold;
    letter-spacing: 0.03em;
    text-align: center;
    margin-top: 0;
    margin-bottom: 32px;
    padding: 0 16px;
}

.collab-btn {
    background: #121212;
    color: #fff;
    font-weight: bold;
    font-size: 1.06em;
    letter-spacing: 0.09em;
    border: none;
    border-radius: 7px;
    text-decoration: none;
    padding: 13px 35px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.10);
    transition: background 0.2s;
    display: inline-block;
}

.collab-btn:hover {
    background: #fff;
    color: #F9B233;
}

/* Connect Section */
.connect-section {
    background: #191919;
    padding-top: 16px;
    padding-bottom: 28px;
    text-align: center;
    max-width: 100vw;
}

.connect-header {
    margin-bottom: 32px;
}

.connect-label {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

.connect-title {
    font-family: 'Impact', 'Arial Black', Arial, sans-serif;
    font-size: 3.0em;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.connect-title .orange {
    color: #F9B233;
}

.contact-btn {
    background: #F9B233;
    color: #fff;
    font-weight: bold;
    font-size: 1.09em;
    letter-spacing: 0.09em;
    text-decoration: none;
    padding: 12px 31px;
    border-radius: 7px;
    border: none;
    box-shadow: 0 3px 14px rgba(0,0,0,0.08);
    transition: background 0.2s;
    display: inline-block;
    margin-top: 12px;
}

.contact-btn:hover {
    background: #fff;
    color: #F9B233;
}

.youtube-panels-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    width: 84vw;
    background: #181818;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 2px 22px rgba(0,0,0,0.09);
    border-top: 2px solid rgb(199, 199, 199);
    border-left: 1px solid rgb(199, 199, 199);;
    border-right: 1px solid rgb(199, 199, 199);;
    border-bottom: 2px solid rgb(199, 199, 199);;
    overflow: hidden;
    margin-bottom: -36px;
    margin-top: 34px;
}

.youtube-panel {
    border-right: 1.5px solid rgb(199, 199, 199);;
    background: #181818;
    min-width: 300px;
    max-width: 500px;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 18px;
}

.youtube-panel:last-child {
    border-right: none;
}

.yt-panel-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 18px;
    margin-bottom: 8px;
}

.youtube-logo {
    display: flex;
    align-items: center;
    margin-left: 28px;
}

.external-arrow {
    font-size: 1.35em;
    color: #fff;
    margin-left: 8px;
    margin-right: 28px;
}

.yt-panel-content {
    text-align: left;
    padding: 18px 0 4px 36px;
    width: 100%;
}

.panel-heading {
    color: #6a6a6a;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 13px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.panel-details {
    color: #fff;
    font-size: 1.01em;
    font-family: Arial, sans-serif;
    font-weight: 500;
    line-height: 1.25em;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* Footer */
.footer-section {
    background: #191919;
    width: 100vw;
    padding-top: 48px;
   
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    margin-bottom: 48px;
}

.footer-left {
    flex: 1;
    max-width: 45%;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
}

.entertainment-footer {
    font-size: 0.75em;
    color: #fff;
    letter-spacing: 0.15em;
    margin-top: 2px;
    font-family: Arial, sans-serif;
    font-weight: 500;
}

.footer-text {
    color: #888;
    font-family: Arial, sans-serif;
    font-size: 0.82em;
    line-height: 1.3em;
    letter-spacing: 0.02em;
}

.footer-text p {
    margin: 4px 0;
}

.footer-right {
    flex: 1;
    max-width: 45%;
    text-align: right;
}

.newsletter-section h3 {
    color: #fff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}

.email-input {
    background: transparent;
    border: 1px solid #555;
    border-radius: 6px;
    padding: 10px 16px;
    color: #fff;
    font-size: 0.9em;
    font-family: Arial, sans-serif;
    width: 220px;
    outline: none;
}

.email-input::placeholder {
    color: #888;
    font-size: 0.85em;
    letter-spacing: 0.05em;
}

.subscribe-btn {
    background: #F9B233;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 0.85em;
    font-weight: bold;
    font-family: Arial, sans-serif;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s;
}

.subscribe-btn:hover {
    background: #fff;
    color: #F9B233;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 18px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    font-size: 0.75em;
    color: #888;
    font-family: Arial, sans-serif;
}

.copyright {
    font-weight: 500;
    letter-spacing: 0.03em;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #F9B233;
}

.separator {
    color: #888;
    margin: 0 4px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Header */
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav {
        gap: 20px;
        font-size: 0.9em;
    }

    /* Hero Section */
    .tilted-cards {
        padding-top: 50px;
    }

    .card {
        width: 180px;
        height: 280px;
    }

    .hero-text {
        font-size: 2.5em;
        flex-direction: column;
        gap: 10px;
    }

    .hero-content {
        margin-top: 150px;
    }

    /* Offer Section */
    .offer-title {
        font-size: 2.8em;
    }

    .offer-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .offer-card {
        width: 90%;
        max-width: 350px;
    }

    /* Events Section */
    .events-title {
        font-size: 2.8em;
    }

    .filmfare-details {
        margin-right: 5vw;
        text-align: center;
    }

    .event-main-title {
        font-size: 2.5em;
    }

    .slider-cards {
        flex-direction: column;
        gap: 20px;
        max-height: 300px;
        overflow-y: auto;
    }

    .events-slider {
        flex-direction: column;
        padding: 0 20px;
    }

    .slider-arrow {
        display: none;
    }

    /* Artists Section */
    .artists-title {
        font-size: 2.8em;
    }

    .artists-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-height: 400px;
        overflow-y: auto;
        padding: 0 20px;
    }

    .artist-card {
        width: 280px;
        height: 300px;
    }

    /* Sponsors Section */
    .sponsors-title {
        font-size: 2.5em;
        flex-direction: column;
        gap: 10px;
    }

    .sponsors-layout {
        flex-direction: column;
        gap: 30px;
    }

    .sponsor-arc {
        flex-direction: row;
        height: auto;
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .sponsor-arc img {
        position: static;
        width: 80px;
        height: 80px;
    }

    .center-circle {
        width: 250px;
        height: 250px;
        margin: 0;
    }

    .circle-text {
        font-size: 1.2em;
    }

    /* Connect Section */
    .connect-title {
        font-size: 2.5em;
    }

    .youtube-panels-row {
        flex-direction: column;
        width: 95vw;
    }

    .youtube-panel {
        border-right: none;
        border-bottom: 1.5px solid #333;
        min-width: auto;
    }

    .youtube-panel:last-child {
        border-bottom: none;
    }

    .yt-panel-content {
        padding: 18px 20px 18px 20px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-left,
    .footer-right {
        max-width: 100%;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .email-input {
        width: 200px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 2em;
    }

    .offer-title,
    .events-title,
    .artists-title {
        font-size: 2.2em;
    }

    .connect-title {
        font-size: 2em;
    }

    .card {
        width: 140px;
        height: 220px;
    }

    .artist-card {
        width: 250px;
        height: 280px;
    }

    .center-circle {
        width: 200px;
        height: 200px;
    }

    .circle-text {
        font-size: 1em;
    }
}
