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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

:root {
    /* Green & Orange Comedy Club Color Palette (matching logo) */
    --primary-green: #22C55E;
    --secondary-green: #16A34A;
    --accent-orange: #F59E0B;
    --secondary-orange: #EA580C;
    --bright-lime: #84CC16;
    --success-green: #10B981;
    --error-red: #EF4444;
    
    /* Neutral Colors */
    --dark-gray: #1D1D1F;
    --medium-gray: #86868B;
    --light-gray: #F5F5F7;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Professional Gradients */
    --gradient-primary: linear-gradient(135deg, #22C55E 0%, #F59E0B 100%);
    --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
    --gradient-accent: linear-gradient(135deg, #84CC16 0%, #F59E0B 100%);
    --gradient-neutral: linear-gradient(135deg, #F5F5F7 0%, #FFFFFF 100%);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 18px;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 22px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.2);
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    border-radius: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
}

.btn-secondary:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--accent-orange);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F5F5F7 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Account for fixed navbar */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--dark-gray);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: 2rem;
    color: var(--bright-lime);
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.countdown-container {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.15);
}

.countdown-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.highlight {
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bright-lime);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* Founders Section within About */
.founders-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.story-text {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border-left: 4px solid var(--accent-orange);
}

.story-text h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
}

.founders-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.founder-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-orange);
}

.founder-card h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.founder-card p {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Event Banner */
.event-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-orange) 100%);
    padding: 0.8rem 0;
    position: relative;
    overflow: hidden;
    z-index: 999;
    margin-top: 100px;
}

.banner-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.banner-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.banner-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.banner-subtitle {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
}

.banner-arrow {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.banner-link:hover .banner-arrow {
    transform: translateX(5px);
}

.banner-link:hover .banner-image {
    animation-duration: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* What We Do Section */
.what-we-do {
    margin-top: 3rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.what-we-do h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.what-we-do p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(132, 204, 22, 0.2);
}

.feature-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
}

.social-link:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

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

/* Phone number styling */
.footer-section a[href^="tel:"] {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-section a[href^="tel:"]:hover {
    color: var(--white);
    text-decoration: underline;
}

.map-detail-item a[href^="tel:"] {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.map-detail-item a[href^="tel:"]:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--light-gray);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 50px; /* Increased top padding for mobile navbar */
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founders-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founders-images {
        flex-direction: row;
        justify-content: center;
    }
    
    .founder-card {
        flex: 1;
        max-width: 200px;
    }
    
    .founder-img {
        width: 100px;
        height: 100px;
    }
    
    .what-we-do {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    /* Event Banner Responsive */
    .event-banner {
        padding: 0.6rem 0;
        margin-top: 90px;
    }
    
    .banner-content {
        gap: 0.8rem;
        padding: 0 0.8rem;
    }
    
    .banner-image {
        width: 40px;
        height: 40px;
    }
    
    .banner-title {
        font-size: 1rem;
    }
    
    .banner-subtitle {
        font-size: 0.8rem;
    }
    
    .banner-arrow {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-timer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .countdown-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 200px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
}

/* Page-specific styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

/* Event Stats */
.event-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Event Categories */
.event-categories {
    padding: 60px 0;
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-green);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.category-card h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.category-card p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.category-count {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Past Events */
.past-events {
    padding: 60px 0;
    background: var(--bg-light);
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Upcoming Events */
.upcoming-events {
    padding: 80px 0;
    background: var(--bg-light);
}

.featured-event {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-heavy);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.featured-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.event-badge.featured {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.event-date-large {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 120px;
}

.event-date-large .month {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.event-date-large .year {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 0.9;
}

.event-details-large h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.event-description-large {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.event-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.highlight-item i {
    color: var(--accent-orange);
}

.event-info-large {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

.info-item i {
    color: var(--primary-green);
    width: 16px;
}

.event-actions-large {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.featured-event-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-event-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--white);
    text-align: center;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Other Events Grid */
.other-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.event-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.event-image-modern {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.event-badge-modern {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.event-badge-modern.premium {
    background: var(--gradient-secondary);
}

.event-badge-modern.special {
    background: var(--gradient-accent);
}

.event-badge-modern.competition {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.event-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-content-modern {
    padding: 1.5rem;
}

.event-date-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.event-date-modern .month {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-date-modern .year {
    background: var(--bg-light);
    color: var(--dark-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-content-modern h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.event-content-modern p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.event-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-light);
    color: var(--medium-gray);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Responsive Design for Events */
@media (max-width: 768px) {
    .event-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .featured-event {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .event-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-actions-large {
        flex-direction: column;
    }
    
    .other-events-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
    transform: translateY(-1px);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-wrapper {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.15);
}

.map-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.map-detail-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.map-detail-item h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-detail-item p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 1rem;
}

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-actions .btn {
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .map-info {
        grid-template-columns: 1fr;
    }
    
    .map-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Event Signup Styles */
.event-announcement {
    padding: 60px 0;
    background: var(--white);
}

.announcement-card {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.2);
    margin-bottom: 3rem;
}

.event-date-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
}

.event-date-badge .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.event-date-badge .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-badge .year {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.event-details h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.event-info {
    margin-bottom: 1.5rem;
}

.event-info p {
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-info i {
    opacity: 0.8;
}

.event-description p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.signup-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.signup-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.signup-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.signup-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.signup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.signup-card h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.signup-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.signup-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.signup-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

.signup-card ul li i {
    color: var(--success-green);
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.modal-header h3 {
    color: var(--dark-gray);
    margin: 0;
    font-size: 1.8rem;
}

.close {
    color: var(--medium-gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--accent-orange);
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.success-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-content i {
    font-size: 4rem;
    color: var(--success-green);
    margin-bottom: 1rem;
}

.success-content h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.success-content p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .announcement-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .event-date-badge {
        min-width: 100px;
    }
    
    .signup-options {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .success-content {
        padding: 2rem;
    }
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 200px;
    }
}

/* Tickets Page Styles */
.tickets-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.ticket-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.ticket-card.featured {
    border: 2px solid var(--accent-orange);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.ticket-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.ticket-price {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ticket-image {
    height: 200px;
    overflow: hidden;
}

.ticket-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ticket-card:hover .ticket-img {
    transform: scale(1.05);
}

.ticket-details {
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ticket-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.ticket-info i {
    color: var(--accent-orange);
    width: 16px;
}

.ticket-description {
    padding: 0 2rem 1.5rem;
}

.ticket-description p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.ticket-actions {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 1rem;
}

.ticket-actions .btn-primary,
.ticket-actions .btn-secondary {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

.booking-info {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.booking-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.booking-info p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-actions {
    margin-top: 2rem;
}

.btn-primary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid var(--light-gray);
    padding-top: 2rem;
    text-align: center;
    color: var(--medium-gray);
}

/* Seat Map Styles */
.seat-map-container {
    margin-bottom: 4rem;
}

.seat-map-placeholder {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

.placeholder-content i {
    font-size: 4rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.placeholder-content h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.placeholder-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.placeholder-actions .btn-primary,
.placeholder-actions .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

/* Grab Your Seat Section */
.grab-seat-section {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
    text-align: center;
    scroll-margin-top: 100px; /* Account for fixed header */
    border: 3px solid var(--accent-orange);
    position: relative;
}

.grab-seat-section::before {
    content: "🎫 MAIN EVENT";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Main Event Title Styling */
.main-event-title {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.grab-seat-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grab-seat-section > p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

/* Seat Map Embed */
.seat-map-embed {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    min-height: 500px;
    position: relative;
}

.seat-map-embed iframe {
    border: none;
    border-radius: var(--border-radius);
}

/* Tugoz Widget Container */
#c106015 {
    min-height: 500px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

/* Tugoz Widget Content */
#c106015 * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Prevent internal scrolling in Tugoz widget */
#c106015 iframe {
    overflow: hidden !important;
    scrolling: no !important;
}

/* Simple Tugoz widget styling - exactly like Masala Comedy Club */
.main-content {
    padding: 2rem 0;
}

#c106015 {
    width: 100%;
}

.seat-map-fallback {
    background: var(--bg-light);
    border: 2px dashed var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    text-align: center;
}

.fallback-content i {
    font-size: 4rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.fallback-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.fallback-content p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.fallback-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Purchase Links */
.purchase-links {
    margin: 3rem 0;
}

.purchase-links h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.purchase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.purchase-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.purchase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.purchase-card.featured {
    border: 2px solid var(--accent-orange);
    background: linear-gradient(135deg, var(--white) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.purchase-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.purchase-icon i {
    font-size: 2rem;
    color: var(--white);
}

.purchase-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.purchase-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.purchase-card p:not(.price) {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.purchase-card .btn-primary,
.purchase-card .btn-secondary {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .seat-map-placeholder {
        padding: 3rem 1.5rem;
    }
    
    .placeholder-content i {
        font-size: 3rem;
    }
    
    .placeholder-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .grab-seat-section {
        padding: 2rem 1.5rem;
    }
    
    .grab-seat-section h2 {
        font-size: 2rem;
    }
    
    .seat-map-embed {
        min-height: auto;
        height: auto;
    }
    
    #c106015 {
        min-height: auto;
        height: auto;
        overflow: visible;
    }
    
    .seat-map-embed iframe {
        height: auto;
        min-height: 300px;
        max-height: 600px;
    }
    
    .main-event-title {
        font-size: 2rem;
    }
    
    .purchase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .purchase-card {
        padding: 1.5rem;
    }
    
    .purchase-icon {
        width: 60px;
        height: 60px;
    }
    
    .purchase-icon i {
        font-size: 1.5rem;
    }
    
    .placeholder-actions .btn-primary,
    .placeholder-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
