.early-bird-section {
    background: var(--beige-light);
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
}

.early-bird-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(74, 48, 33, 0.08);
    overflow: visible;
    margin: 1rem auto 0 auto;
    max-width: 500px;
}

/* Ticket punch-out effects */
.early-bird-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 40px;
    background: var(--beige-light);
    border-radius: 0 50px 50px 0;
}

.early-bird-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 40px;
    background: var(--beige-light);
    border-radius: 50px 0 0 50px;
}

.early-bird-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold);
    color: var(--cocoa-brown);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    z-index: 10;
}

.early-bird-content {
    text-align: center;
    padding: 0 1rem;
}

.early-bird-header {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--cocoa-brown);
    opacity: 0.7;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.main-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--tropical-green);
    line-height: 1;
}

.old-price {
    font-size: 1.5rem;
    color: var(--cocoa-brown);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-note {
    color: var(--cocoa-brown);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.early-bird-cta {
    background: var(--gold);
    color: var(--cocoa-brown);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.early-bird-cta:hover {
    background: var(--tropical-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 90, 57, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .early-bird-section {
        padding: 2rem 1rem;
    }

    .early-bird-card {
        margin: 0.5rem auto 0 auto;
        padding: 2rem 1rem 1rem 1rem;
    }

    .main-price {
        font-size: 3rem;
    }

    .old-price {
        font-size: 1.2rem;
    }

    .early-bird-content {
        padding: 0 0.5rem;
    }

    .early-bird-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}