:root {
    --primary: #f97316;
    --primary-glow: rgba(249, 115, 22, 0.5);
    --primary-dark: #ea580c;
    --secondary: #3b82f6;
    --secondary-glow: rgba(59, 130, 246, 0.5);
    --accent: #d946ef;
    --bg-dark: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.5);
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-highlight: rgba(255, 255, 255, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Orbs */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: float 20s infinite alternate ease-in-out;
}

body::before {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
}

body::after {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* Glassmorphism Header */
.glass-header {
    background: rgba(7, 9, 19, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 65px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.1) rotate(-3deg);
}

.header-text h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #f8fafc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.event-date {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--glass-highlight);
    border-bottom-color: rgba(255,255,255,0.05);
    border-right-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin: 0 auto 60px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: block;
    width: fit-content;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1300px;
    margin: 0 auto;
    min-height: 85vh;
}

@keyframes float-wrapper {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-image-wrapper {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
    animation: float-wrapper 5s ease-in-out infinite;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    z-index: -1;
    opacity: 0.5;
}

.hero-image {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid var(--glass-highlight);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-image:hover {
    transform: translateY(-15px) rotateX(2deg) rotateY(-2deg) scale(1.02);
    box-shadow: 0 40px 80px rgba(255, 107, 0, 0.2);
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.primary-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.primary-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
    opacity: 0;
}

.primary-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.primary-btn:hover::after {
    opacity: 1;
    left: 100%;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 35, 55, 0.6), rgba(15, 20, 35, 0.4));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-top-color: var(--glass-highlight);
    border-left-color: var(--glass-highlight);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(40, 45, 65, 0.8), rgba(20, 25, 45, 0.6));
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--secondary-glow);
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border-radius: 20px;
    border: 1px solid var(--glass-highlight);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
    padding-top: 20px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(20, 25, 45, 0.6), rgba(10, 15, 30, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.2);
}

.pricing-card.popular {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(217, 70, 239, 0.15));
    border: 1px solid rgba(217, 70, 239, 0.3);
    transform: scale(1.05);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--accent));
    animation: rotate 4s linear infinite;
    z-index: -1;
    opacity: 0.3;
}

.pricing-card.popular::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    background: #0f172a;
    border-radius: 28px;
    z-index: -1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 60px var(--secondary-glow);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    padding: 10px 25px 8px;
    border-radius: 0 0 20px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px var(--secondary-glow);
}

.pricing-header h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 800;
}

.ideal-for {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
    min-height: 48px;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(139, 92, 246, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-btn {
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    border: 1px solid var(--glass-highlight);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    backdrop-filter: blur(5px);
}

.pricing-card.popular .payment-btn,
.payment-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
}

/* Events Section */
.events-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.events-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--glass-border);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.event-item:hover {
    background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    transform: translateX(15px);
    border-left-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.event-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
}

.event-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.status-badge {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-badge.free {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.payment-btn.small {
    width: auto;
    padding: 12px 25px;
    font-size: 0.95rem;
    border-radius: 30px;
}

.events-flyer {
    flex: 1;
    position: relative;
}

.events-flyer::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
    z-index: -1;
    opacity: 0.3;
    filter: blur(50px);
}

.event-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-highlight);
    transition: transform 0.5s ease;
}

.event-img:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 40px 80px rgba(139, 92, 246, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, transparent, rgba(7, 9, 19, 1));
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
    margin-top: 80px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.footer h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0; width: 40px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.hotlines strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Scroll Animations dynamically added by JS */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero, .events-layout {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
    }

    .hero-text h2 {
        font-size: 3.2rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }
}


/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}


.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, rgba(20, 25, 45, 0.9), rgba(10, 15, 30, 0.95));
    border: 1px solid var(--glass-highlight);
    padding: 40px;
    border-radius: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 30px rgba(255, 107, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

/* Custom Scrollbar for Modal to match theme */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.close-modal {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.modal-price {
    font-size: 3rem;
    color: var(--primary);
    margin: 10px 0 30px;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 0 20px var(--primary-glow);
}

.modal-item {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.card-details {
    margin-bottom: 25px;
}

.mock-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s;
}

.mock-input:focus {
    outline: none;
    border-color: var(--primary);
}

.card-extra {
    display: flex;
    gap: 15px;
}

.pay-confirm-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 10px 25px var(--primary-glow);
}

.pay-confirm-btn:hover {
    box-shadow: 0 15px 35px var(--primary-glow);
    transform: translateY(-3px);
}

.payment-success-msg {
    text-align: center;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.4s;
}

.payment-success-msg.hidden {
    opacity: 0;
    pointer-events: none;
}

.success-icon {
    font-size: 4rem;
    color: #34d399;
    margin-bottom: 20px;
    border: 4px solid #34d399;
    border-radius: 50%;
    width: 90px; height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.3);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}


/* Extended Mobile Optimizations */
@media (max-width: 480px) {
    .section-padding { padding: 60px 0; }
    
    .section-title { font-size: 1.8rem; margin: 0 auto 40px; }
    
    .hero { padding: 40px 10px; min-height: auto; }
    .hero-text h2 { font-size: 2rem; margin-bottom: 15px; letter-spacing: -1px; }
    .hero-text p { font-size: 1rem; margin-bottom: 25px; }
    
    .primary-btn { padding: 15px 30px; font-size: 1rem; width: 100%; text-align: center; }
    
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-card { padding: 30px 20px; }
    .feature-icon { width: 50px; height: 50px; font-size: 1.8rem; }
    
    .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
    .pricing-card { padding: 30px 20px; }
    .pricing-header h3 { font-size: 1.8rem; }
    .popular-badge { padding: 6px 15px 5px; font-size: 0.75rem; letter-spacing: 1px; }
    
    .events-list { gap: 15px; }
    .event-item { padding: 15px; }
    .event-info h3 { font-size: 1.1rem; }
    .payment-btn.small { padding: 10px 15px; font-size: 0.85rem; width: 100%; margin-top: 10px; }
    
    .footer { padding: 50px 0 20px; margin-top: 50px; }
    .footer-content { gap: 30px; flex-direction: column; text-align: center; }
    .footer h3::after { left: 50%; transform: translateX(-50%); }
    
    .header-text h1 { font-size: 1.2rem; }
    .subtitle { font-size: 0.7rem; }
    .logo { height: 45px; }
    .event-date { font-size: 0.8rem; padding: 6px 12px; }
    
    .modal-content { padding: 25px 20px; }
    .modal-price { font-size: 2rem; margin-bottom: 20px; }
    .modal-header h3 { font-size: 1.2rem; }
    
    body::before, body::after { filter: blur(70px); width: 300px; height: 300px; }
}
