/* Dark Theme Variables */
:root {
    --bg-primary: #1e1e1e;
    --bg-secondary: #2a2a2a;
    --bg-tertiary: #353535;
    --text-primary: rgba(255, 255, 255, 0.95);
    --text-secondary: rgba(255, 255, 255, 0.75);
    --accent-green: #00C851;
    --accent-yellow: #FFB300;
    --accent-orange: #FF8C00;
    --border-color: rgba(255, 255, 255, 0.12);
    --card-bg: rgba(45, 45, 45, 0.9);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.35);
    --blur-backdrop: blur(20px);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background-color: transparent;
    padding: 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.brand {
    text-align: center;
}

.brand h1 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.brand-sub {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text-secondary);
    display: block;
    margin-top: -5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh; /* Full height since no separate header */
    min-height: 500px;
    max-height: 700px;
    background-image: url('https://dwqg227kyjjc1.cloudfront.net/images/raffles/688522fca4a3b.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0;
}

/* Price Badge positioned in content area */
.hero-price-badge {
    background: #000000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
}

/* Main content at bottom */
.hero-bottom-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 0.9) 100%
    );
    text-align: left;
}

.hero-title {
    margin-bottom: 1rem;
}

.hero-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: white;
}

.hero-lottery-info {
    margin-bottom: 1.5rem;
}

.hero-lottery-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-tickets-section {
    margin: 0;
    text-align: center;
}

.hero-tickets-section .btn-my-tickets {
    background-color: rgba(45, 45, 45, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Content */
.content {
    flex: 1;
    padding: 3rem 0;
    background-color: var(--bg-primary);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Logo - Positioned absolute in top-left */
.hero-logo {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 3;
}

.header-logo {
    height: 40px;
    width: auto;
}

/* My Tickets Button - Full Width */
.hero-tickets-full {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.btn-my-tickets-full-width {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: rgba(45, 45, 45, 0.85);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.btn-my-tickets-full-width:hover {
    background-color: rgba(60, 60, 60, 0.9);
    color: var(--text-primary);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Promotion Container */
.promotion-container {
    background: var(--card-bg);
    backdrop-filter: var(--blur-backdrop);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Quantity Container */
.quantity-container {
    background: var(--card-bg);
    backdrop-filter: var(--blur-backdrop);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Promotion Section */
.promotion-section {
    margin-bottom: 0;
}

.promotion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.promotion-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-weight: bold;
    font-size: 1.4rem;
}

.promotion-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.btn-promotion {
    background: linear-gradient(135deg, var(--accent-green), #00A847);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 18px;
    font-weight: 700;
    font-size: 1.2rem;
    width: 100%;
    height: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-promotion:hover {
    background: linear-gradient(135deg, #00A847, #008A38);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Quantity Section */
.quantity-section {
    margin-bottom: 0;
}

.quantity-section h3 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.quantity-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.btn-quantity {
    background: rgba(60, 60, 60, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 12px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-quantity:hover {
    background: rgba(80, 80, 80, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Quantity and Participate Row */
.quantity-participate-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 0;
    width: 100%;
}

/* Manual Quantity */
.manual-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
    background: rgba(50, 50, 50, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 80, 80, 0.6);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-minus, .btn-plus, #quantityInput {
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 0;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-minus:hover, .btn-plus:hover {
    background: rgba(255, 255, 255, 0.1);
}

#quantityInput {
    cursor: text;
    text-align: center;
    outline: none;
    font-weight: 600;
    border: none;
    background: transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1;
    padding: 0;
    margin: 0;
    vertical-align: middle;
}

.participate-section {
    flex: 0 0 auto;
}

.btn-participate {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: #000;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    width: auto;
    height: 35px;
    min-width: 160px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-participate:hover {
    background: linear-gradient(135deg, #FFB300, #FF8F00);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.regulations-section {
    margin-top: 1.5rem;
}

.btn-regulations {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(80, 80, 80, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-regulations:hover {
    background: rgba(55, 55, 55, 0.3);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(100, 100, 100, 0.8);
}

.regulations-content {
    background: var(--card-bg);
    backdrop-filter: var(--blur-backdrop);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-top: 1rem;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.regulations-text {
    padding: 2rem;
}

.regulations-text h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.regulations-text h5 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--accent-yellow);
    font-weight: 600;
}

.regulations-text p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

.regulations-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.regulations-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.regulations-text ul li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}



/* Footer */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.brand-highlight {
    background-color: var(--accent-yellow);
    color: #000;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: bold;
}

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

.social-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--text-primary);
}

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

.brand-footer {
    text-align: center;
}

.brand-footer h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 1px;
}

.brand-footer span {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text-secondary);
    display: block;
    margin-top: -3px;
}

/* Checkout Modal Styles */
.checkout-modal {
    background-color: #2a2a2a !important;
    border: none !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
}

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #3a3a3a;
}

.btn-back,
.btn-close-checkout {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

/* Payment Page Styles */
.payment-header {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.payment-logo {
    height: 40px;
    width: auto;
}

.btn-back-payment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-back-payment:hover {
    background-color: var(--card-bg);
    color: var(--text-primary);
    text-decoration: none;
}

.payment-content {
    flex: 1;
    padding: 2rem 0;
    background-color: var(--bg-primary);
}

.payment-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.payment-status {
    text-align: center;
    margin-bottom: 2rem;
}

.status-pending,
.status-approved,
.status-other {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.status-pending {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-approved {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-other {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1), rgba(108, 117, 125, 0.05));
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.payment-status i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.status-pending i { color: #ffc107; }
.status-approved i { color: #28a745; }
.status-other i { color: #6c757d; }

.payment-status h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-status p {
    color: var(--text-secondary);
    margin: 0;
}

.payment-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.payment-details h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 600;
}

.pix-payment {
    text-align: center;
}

.pix-payment h3,
.pix-payment h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.qr-code-section,
.pix-code-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.qr-code-container {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0;
    display: inline-block;
}

.qr-code {
    max-width: 200px;
    height: auto;
}

.pix-code-container {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.pix-code-input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: monospace;
    font-size: 0.9rem;
}

.btn-copy-pix {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-yellow), #e6ac00);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy-pix:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.pix-instructions {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.payment-instructions {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.payment-instructions ol {
    margin: 0;
    padding-left: 1.2rem;
}

.payment-instructions li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.payment-timer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.countdown-timer {
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
    margin: 0.5rem 0;
    font-family: monospace;
}

.timer-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

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

.btn-check-status,
.btn-back-home {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-check-status {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    cursor: pointer;
}

.btn-check-status:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-back-home {
    background: rgba(108, 117, 125, 0.2);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-back-home:hover {
    background: rgba(108, 117, 125, 0.3);
    color: var(--text-primary);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Mobile responsiveness for payment page */
@media (max-width: 768px) {
    .payment-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .pix-code-container {
        flex-direction: column;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .countdown-timer {
        font-size: 1.5rem;
    }
}

.btn-back:hover,
.btn-close-checkout:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.checkout-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.checkout-body {
    padding: 1.5rem;
}

.form-field {
    margin-bottom: 1.8rem !important;
}

.field-label {
    display: block !important;
    font-size: 0.95rem !important;
    color: #cccccc !important;
    margin-bottom: 0.6rem !important;
    font-weight: 400 !important;
}



.checkout-input {
    width: 100% !important;
    padding: 1rem !important;
    background-color: #3d3d3d !important;
    border: 1px solid #555 !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    box-sizing: border-box !important;
}

.checkout-input:focus {
    outline: none;
    border-color: #5a9fd4;
    box-shadow: 0 0 0 2px rgba(90, 159, 212, 0.2);
}

.checkout-summary {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.summary-label {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.summary-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.checkout-footer {
    display: flex;
    gap: 0.8rem;
    padding: 1.5rem;
    border-top: 1px solid #3a3a3a;
}

.btn-cancel {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background-color: #4a4a4a;
    color: var(--text-primary);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cancel:hover {
    background-color: #5a5a5a;
}

.btn-confirm {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-confirm:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .quantity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .brand h1 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-price-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero-bottom-content {
        padding: 1.5rem;
    }
    
    .hero-title h2 {
        font-size: 1.3rem;
    }
    
    .hero-tickets-section .btn-my-tickets {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .quantity-grid {
        grid-template-columns: 1fr;
    }
    
    .manual-quantity {
        gap: 0.5rem;
    }
    
    .btn-minus,
    .btn-plus {
        width: 40px;
        height: 40px;
    }
    
    #quantityInput {
        width: 60px;
    }
    
    .hero-price-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        gap: 0.4rem;
    }
    
    .hero-bottom-content {
        padding: 1rem;
    }
    
    .hero-title h2 {
        font-size: 1.2rem;
    }
    
    .hero-section {
        min-height: 400px;
        height: 60vh;
    }
}

/* Animation for chevron rotation */
.chevron-rotated {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}
