/* ===========================================
   EXCLUSIVE ARTIST PAGE STYLES
   =========================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background: #000;
    color: white;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================================
   NAVBAR STYLES (SAME AS INDEX)
   =========================================== */

.navbar {
    position: fixed;
    top: 20px;
    left: 60px;
    right: 60px;
    width: calc(100% - 120px);
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 8px 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links.left {
    justify-content: flex-start;
}

.nav-links.right {
    justify-content: flex-end;
}

.logo {
    flex-shrink: 0;
    margin: 0 auto;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-text {
    display: block;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
}

.logo-main {
    font-size: 14px;
    font-weight: 900;
    color: white;
}

.logo-sub {
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.logo-tagline {
    font-size: 8px;
    font-weight: 400;
    color: #ccc;
    text-transform: none;
    letter-spacing: 0.5px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff69b4;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #ff69b4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 105, 180, 0.1);
    color: #ff69b4;
    padding-left: 25px;
}

/* Hide hamburger menu on desktop */
.mobile-menu-toggle {
    display: none;
}

/* ===========================================
   PAGE HEADER STYLES
   =========================================== */

.page-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: white;
}

.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.page-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   EXCLUSIVE ARTIST CONTENT
   =========================================== */

.events-content {
    background: #000;
    padding: 80px 0;
    color: white;
}

.section-title {
    color: white;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin: 0;
    letter-spacing: 3px;
    font-family: 'Oswald', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Featured Event Cards */
.featured-event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 40px;
    display: flex;
    min-height: 400px;
}

.featured-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.event-poster {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-event-card:hover .event-poster img {
    transform: scale(1.05);
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(255, 105, 180, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.poster-content {
    text-align: center;
    color: white;
}

.poster-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.poster-artist {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff69b4;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.poster-dates {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.date-item {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    background: rgba(255, 105, 180, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.poster-tickets {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.poster-tickets:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

.event-details {
    flex: 0 0 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.details-content {
    max-width: 100%;
}

.event-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.event-main-artist {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff69b4;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-cities {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.calendar-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.date-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-details-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.view-details-btn:hover {
    background: white;
    color: #ff1493;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ===========================================
   CTA SECTION STYLES
   =========================================== */

.cta-section {
    background: linear-gradient(135deg, #000, #1a1a1a);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-description {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #ff1493;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ===========================================
   FOOTER STYLES (SAME AS INDEX)
   =========================================== */

.footer-section {
    background: linear-gradient(135deg, #000, #1a1a1a);
    padding: 60px 0 30px;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 40px;
}

.brand-banner {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.brand-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff69b4;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: rgba(255, 105, 180, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 30px 0;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================================
   MOBILE RESPONSIVENESS
   =========================================== */

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 25px;
    height: 20px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
}

.mobile-logo .logo-text {
    margin-left: 0;
}

.mobile-logo .logo-main {
    font-size: 12px;
}

.mobile-logo .logo-sub {
    font-size: 10px;
}

.mobile-menu-close {
    cursor: pointer;
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #ff69b4;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ff69b4;
    padding-left: 10px;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-nav-link.dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.mobile-nav-link.dropdown-toggle::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-nav-link.dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #ccc;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
    color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
}

.mobile-menu-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: rgba(255, 105, 180, 0.2);
    transform: translateY(-3px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .navbar {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 15px 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 0;
        border: none;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .logo-text {
        font-size: 10px;
    }
    
    .logo-main {
        font-size: 12px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .logo-tagline {
        font-size: 6px;
    }
    
    .page-title {
        font-size: 3.5rem;
        letter-spacing: 3px;
        margin-bottom: 25px;
    }
    
    .page-subtitle {
        font-size: 1.4rem;
        padding: 0 20px;
        letter-spacing: 1.5px;
        line-height: 1.4;
    }
    
    .events-content {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .featured-event-card {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .event-poster {
        flex: none;
        height: 300px;
        width: 100%;
    }
    
    .event-poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .event-details {
        flex: none;
        padding: 25px;
    }
    
    .poster-overlay {
        padding: 20px;
    }
    
    .poster-title {
        font-size: 1.5rem;
    }
    
    .poster-artist {
        font-size: 1rem;
    }
    
    .poster-dates {
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .date-item {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .poster-tickets {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    .event-main-title {
        font-size: 1.8rem;
    }
    
    .event-main-artist {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 3rem;
        letter-spacing: 2.5px;
        margin-bottom: 20px;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .event-main-title {
        font-size: 1.5rem;
    }
    
    .event-main-artist {
        font-size: 1rem;
    }
    
    .event-details {
        padding: 20px;
    }
    
    .event-poster {
        height: 280px;
    }
    
    .poster-title {
        font-size: 1.3rem;
    }
    
    .poster-artist {
        font-size: 0.9rem;
    }
    
    .date-item {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .poster-tickets {
        padding: 8px 20px;
        font-size: 11px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .brand-banner {
        font-size: 2rem;
    }
}

@media screen and (max-width: 360px) {
    .page-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .page-subtitle {
        font-size: 1rem;
        letter-spacing: 0.8px;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .event-main-title {
        font-size: 1.3rem;
    }
    
    .mobile-menu-content {
        width: 95%;
        padding: 25px;
    }
    
    .brand-banner {
        font-size: 1.8rem;
    }
    
    .event-poster {
        height: 250px;
    }
    
    .poster-title {
        font-size: 1.2rem;
    }
    
    .poster-artist {
        font-size: 0.8rem;
    }
    
    .date-item {
        font-size: 0.6rem;
        padding: 2px 8px;
    }
    
    .poster-tickets {
        padding: 6px 15px;
        font-size: 10px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Developer Credit Styles */
.developer-credit {
    margin-top: 10px !important;
    font-size: 12px !important;
    color: #999 !important;
}

.developer-link {
    color: #ff69b4 !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: #ff1493 !important;
    text-decoration: underline;
}
