/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #8B5CF6;
    --fuchsia: #EC4899;
    --yellow: #F59E0B;
    --orange: #F97316;
    --white: #FFFFFF;
    --dark: #333333;
    --gradient-primary: linear-gradient(135deg, var(--purple), var(--fuchsia));
    --gradient-secondary: linear-gradient(135deg, var(--yellow), var(--orange));
    --gradient-dark: linear-gradient(135deg, var(--dark), #1a1a1a);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(51, 51, 51, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--purple);
}

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.logo-image:hover {
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.8));
    transform: scale(1.05);
}

.logo-text-yellow {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--yellow);
    margin-left: 1rem;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    transition: all 0.3s ease;
}

.logo-text-yellow:hover {
    color: var(--orange);
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.8);
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
    z-index: 2;
}


.logo-pulse {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
    left: -1px;
    top: -5px;
    transform: translate(-50%, -50%);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

/* Demo Hero Section */
.demo-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    background: var(--gradient-secondary);
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.5s both;
}

.hero-logo-image {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.9));
    transform: scale(1.1);
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: titleReveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 0.9; }
}

/* Packages Section */
.packages {
    padding: 6rem 2rem;
    background: var(--dark);
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.package-card:nth-child(1) { animation-delay: 0.2s; }
.package-card:nth-child(2) { animation-delay: 0.4s; }
.package-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: left 0.3s ease;
}

.package-card:hover::before {
    left: 0;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.package-card.featured {
    border-color: var(--yellow);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-secondary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.package-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    min-height: 80px;
}

.package-price .currency,
.package-price .amount,
.package-price .period {
    display: inline-block;
}

.price-original {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    text-decoration: line-through;
    color: #888;
    font-size: 0.9em;
    text-align: center;
    order: 1;
}

.price-original.show {
    opacity: 1;
    transform: scale(1);
}

.price-discounted {
    transition: all 0.5s ease;
    order: 2;
}

.price-discounted.with-discount {
    color: #10B981;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: priceGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.price-discounted.with-discount::before {
    content: '🔥';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: fireFloat 1s ease-in-out infinite alternate;
}

.price-discounted.with-discount::after {
    content: '50% OFF';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes priceGlow {
    0% {
        text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 30px rgba(16, 185, 129, 0.6);
        transform: scale(1.05);
    }
}

@keyframes celebration {
    0% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.15) rotate(3deg);
    }
    30% {
        transform: scale(1.1) rotate(-2deg);
    }
    45% {
        transform: scale(1.2) rotate(2deg);
    }
    60% {
        transform: scale(1.1) rotate(-1deg);
    }
    75% {
        transform: scale(1.15) rotate(1deg);
    }
    90% {
        transform: scale(1.05) rotate(0deg);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes packageGlow {
    0% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
    }
    50% {
        box-shadow: 0 0 50px rgba(16, 185, 129, 0.8), 0 0 70px rgba(16, 185, 129, 0.4);
    }
    100% {
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
    }
}

@keyframes fireFloat {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    100% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes badgePulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }
}

@keyframes sparkleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

@keyframes celebrationEmojiFloat {
    0% {
        transform: translateY(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        transform: translateY(-20px) scale(1) rotate(10deg);
        opacity: 1;
    }
    80% {
        transform: translateY(-80px) scale(1) rotate(-10deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-120px) scale(0) rotate(0deg);
        opacity: 0;
    }
}

.currency {
    font-size: 1.2rem;
    color: var(--purple);
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
}

.period {
    font-size: 1rem;
    opacity: 0.7;
}

.package-features {
    margin-bottom: 2rem;
}

.package-features h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--purple);
    font-weight: 700;
}

.package-features ul {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 1.2rem;
    min-width: 1.5rem;
}

.feature-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.package-cta {
    text-align: center;
}

.btn-package {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

.btn-featured {
    background: var(--gradient-secondary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-featured:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

/* Comparison Section */
.comparison {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-container h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--gradient-primary);
    padding: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 500;
}

.package-column {
    text-align: center;
    font-size: 1.2rem;
}

/* Demo CTA Section */
.demo-cta {
    padding: 6rem 2rem;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.demo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Promo Code Section */
.promo-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--purple), var(--fuchsia));
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.promo-content {
    text-align: center;
    color: var(--white);
}

.promo-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
}

.promo-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.promo-input-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.promo-input {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 300px;
}

.promo-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.promo-input:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
    transform: scale(1.02);
}

.promo-btn {
    padding: 1rem 2rem;
    background: var(--yellow);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-btn:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}

.promo-status {
    margin-top: 1rem;
    font-weight: 600;
    min-height: 1.5rem;
}

.promo-status.success {
    color: #10B981;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
    }
}

.promo-active {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 15px;
    border: 2px solid #10B981;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    animation: promoActiveGlow 2s ease-in-out infinite alternate;
}

.promo-active-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: white;
    font-weight: bold;
}

.promo-active-icon {
    font-size: 1.5rem;
    animation: bounce 1s ease-in-out infinite;
}

.promo-active-text {
    font-size: 1rem;
    text-align: center;
}

@keyframes promoActiveGlow {
    0% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
        transform: scale(1.02);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-status.error {
    color: #EF4444;
}

/* Original Price Styling */
.original-price {
    margin-top: 0.5rem;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9em;
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--dark), #1a1a1a);
    border: 2px solid var(--purple);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--purple);
}

.modal-header h3 {
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--fuchsia);
}

.modal-body {
    color: var(--white);
}

.package-summary {
    background: rgba(139, 92, 246, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.package-summary h4 {
    color: var(--yellow);
    margin: 0 0 1rem 0;
    font-family: 'Orbitron', sans-serif;
}

.package-summary p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.card-element {
    padding: 1rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.card-element:focus-within {
    border-color: var(--yellow);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.card-errors {
    color: #EF4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

.btn-pay {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}

.btn-pay:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading Animation for Payment */
.payment-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--yellow);
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Stripe Modal Styles */
.stripe-payment-info {
    margin: 2rem 0;
    text-align: center;
}

.stripe-payment-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.stripe-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stripe-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.stripe-features .feature-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.stripe-features .feature-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.stripe-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-stripe-pay {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6772E5, #5469D4);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(103, 114, 229, 0.4);
}

.btn-stripe-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 114, 229, 0.6);
    background: linear-gradient(135deg, #5469D4, #4A5FD1);
}

.btn-stripe-cancel {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-stripe-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Stripe Loading and Success States */
.stripe-loading {
    text-align: center;
    padding: 2rem 0;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(139, 92, 246, 0.2);
    border-top: 4px solid var(--purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stripe-loading p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.loading-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.stripe-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease-in-out;
}

.stripe-success h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stripe-success p {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.subscription-details {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.subscription-details p {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-active {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-stripe-close {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-stripe-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .packages-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stripe-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-stripe-pay,
    .btn-stripe-cancel {
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .logo-text-yellow {
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .hero-logo-image {
        height: 60px;
    }
    
    /* Packages */
    .packages-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-card.featured {
        transform: none;
        order: -1;
    }
    
    .package-card.featured:hover {
        transform: none;
    }
    
    /* Comparison Table */
    .comparison-table {
        overflow-x: auto;
        font-size: 0.8rem;
    }
    
    .table-header,
    .table-row {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .feature-name {
        font-size: 0.7rem;
        min-width: 120px;
    }
    
    /* CTA Section */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    /* Promo Section */
    .promo-container {
        padding: 2rem 1rem;
    }
    
    .promo-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .promo-input {
        width: 100%;
        padding: 1rem;
    }
    
    .promo-content h3 {
        font-size: 1.5rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        margin: 2rem auto;
        padding: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .form-group input {
        padding: 0.8rem;
    }
    
    /* Stripe Modal */
    .stripe-features {
        gap: 0.8rem;
    }
    
    .stripe-features .feature-item {
        padding: 0.6rem;
    }
    
    .stripe-features .feature-text {
        font-size: 0.9rem;
    }
    
    .btn-stripe-pay,
    .btn-stripe-cancel {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Stripe Loading and Success States */
    .stripe-loading, .stripe-success {
        padding: 1.5rem 0;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .stripe-success h4 {
        font-size: 1.3rem;
    }
    
    .subscription-details {
        padding: 1rem;
    }
    
    .btn-stripe-close {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 0.5rem 0.8rem;
    }
    
    .logo-image {
        height: 25px;
    }
    
    .logo-text-yellow {
        font-size: 0.8rem;
        margin-left: 0.3rem;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-logo-image {
        height: 50px;
    }
    
    /* Packages */
    .package-card {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .package-header h2 {
        font-size: 1.2rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    /* Comparison Table */
    .comparison-table {
        font-size: 0.7rem;
    }
    
    .table-header,
    .table-row {
        font-size: 0.7rem;
        padding: 0.3rem;
    }
    
    .feature-name {
        font-size: 0.6rem;
        min-width: 100px;
    }
    
    /* Promo Section */
    .promo-content h3 {
        font-size: 1.2rem;
    }
    
    .promo-input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Modal */
    .modal-content {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .form-group input {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .btn-pay {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Stripe Modal */
    .stripe-payment-info p {
        font-size: 1rem;
    }
    
    .stripe-features .feature-text {
        font-size: 0.8rem;
    }
    
    .btn-stripe-pay,
    .btn-stripe-cancel {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Stripe Loading and Success States */
    .stripe-payment-info p {
        font-size: 1rem;
    }
    
    .stripe-features .feature-text {
        font-size: 0.8rem;
    }
    
    .btn-stripe-pay,
    .btn-stripe-cancel {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .stripe-loading, .stripe-success {
        padding: 1rem 0;
    }
    
    .success-icon {
        font-size: 2.5rem;
    }
    
    .stripe-success h4 {
        font-size: 1.1rem;
    }
    
    .subscription-details {
        padding: 0.8rem;
    }
    
    .btn-stripe-close {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .package-card {
        padding: 0.8rem;
    }
    
    .amount {
        font-size: 1.8rem;
    }
    
    .comparison-table {
        font-size: 0.6rem;
    }
    
    .table-header,
    .table-row {
        font-size: 0.6rem;
        padding: 0.2rem;
    }
    
    .feature-name {
        font-size: 0.5rem;
        min-width: 80px;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .packages-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .modal-content {
        max-height: 80vh;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .packages-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .modal-content {
        width: 80%;
    }
}

/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--purple);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Animation for package cards on scroll */
.package-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.package-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for comparison table */
.table-row:hover .package-column {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Special styling for checkmarks and X marks */
.package-column:contains("✅") {
    color: #10B981;
}

.package-column:contains("❌") {
    color: #EF4444;
} 

/* Event Fee Styling */
.event-fee {
    margin-top: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 20px;
    display: inline-block;
}

.fee-text {
    font-size: 0.8rem;
    color: var(--yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    .btn-package,
    .btn-primary,
    .btn-secondary,
    .promo-btn {
        min-height: 44px; /* Apple's recommended minimum touch target */
        padding: 12px 20px;
    }
    
    .nav-link {
        padding: 15px 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .package-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .modal-content {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        font-size: 16px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .package-card {
        border: 2px solid var(--white);
    }
    
    .btn-package,
    .btn-primary,
    .btn-secondary {
        border: 2px solid var(--white);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 

/* Celebration Effects Styles */
.celebration-effects {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin: 20px 0;
}

.confetti-container,
.fireworks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Confetti Animation */
.confetti {
    position: absolute;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(200px) rotate(720deg);
        opacity: 0;
    }
}

/* Fireworks Animation */
.firework {
    position: absolute;
    animation: fireworkExplode 1.5s ease-out forwards;
}

@keyframes fireworkExplode {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.firework-particle {
    position: absolute;
    animation: particleExplode 1s ease-out forwards;
}

@keyframes particleExplode {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0);
        opacity: 0;
    }
}

/* Floating Emojis Animation */
.floating-emoji {
    position: absolute;
    animation: floatEmoji 3s ease-in-out infinite;
}

@keyframes floatEmoji {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) rotate(0deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
        opacity: 0.8;
    }
}

/* Celebration Bounce Animation */
@keyframes celebrationBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* Enhanced Success Modal */
.stripe-success {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
    animation: celebrationBounce 0.6s ease-in-out;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: celebrationBounce 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.stripe-success h4 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stripe-success p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #E5E7EB;
}

.subscription-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    backdrop-filter: blur(10px);
}

.status-active {
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    color: #1F2937;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.4);
}

.btn-stripe-close {
    background: linear-gradient(135deg, #FFFFFF, #F3F4F6);
    color: #1F2937;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-stripe-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #F9FAFB, #E5E7EB);
}

.btn-stripe-close:active {
    transform: translateY(-1px);
}

/* Responsive Celebration Effects */
@media (max-width: 768px) {
    .celebration-effects {
        height: 150px;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .stripe-success h4 {
        font-size: 1.5rem;
    }
    
    .stripe-success p {
        font-size: 1rem;
    }
    
    .btn-stripe-close {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .celebration-effects {
        height: 120px;
    }
    
    .success-icon {
        font-size: 2.5rem;
    }
    
    .stripe-success h4 {
        font-size: 1.3rem;
    }
    
    .subscription-details {
        padding: 1rem;
    }
} 

/* Payment Timeout Styles */
.stripe-timeout {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.timeout-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.stripe-timeout h4 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stripe-timeout p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #FEF3C7;
}

.stripe-timeout ul {
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.stripe-timeout li {
    color: #FEF3C7;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.timeout-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-stripe-retry {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-stripe-retry:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-stripe-retry:active {
    transform: translateY(-1px);
}

/* Enhanced Loading State */
.stripe-loading {
    text-align: center;
    padding: 2rem;
}

.stripe-loading p {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #E5E7EB;
    font-weight: 600;
}

.loading-subtitle {
    font-size: 1rem !important;
    color: #9CA3AF !important;
    font-weight: 400 !important;
    font-style: italic;
}

/* Responsive Timeout */
@media (max-width: 768px) {
    .timeout-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-stripe-retry,
    .btn-stripe-close {
        width: 100%;
        max-width: 300px;
    }
    
    .stripe-timeout h4 {
        font-size: 1.5rem;
    }
    
    .stripe-timeout p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stripe-timeout {
        padding: 1.5rem;
    }
    
    .timeout-icon {
        font-size: 3rem;
    }
    
    .stripe-timeout h4 {
        font-size: 1.3rem;
    }
    
    .stripe-timeout ul {
        padding-left: 1.5rem;
    }
} 

/* Authentication Modal Styles */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.auth-modal .modal-content {
    background: var(--gradient-dark);
    padding: 0;
    border: 2px solid var(--purple);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    animation: slideInDown 0.4s ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.auth-modal .modal-header {
    background: var(--gradient-primary);
    padding: 1rem 1.5rem;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.auth-modal .modal-header h3 {
    color: var(--white);
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.auth-modal .modal-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-modal .modal-close:hover {
    color: var(--yellow);
    transform: translateY(-50%) scale(1.1);
}

.auth-modal .modal-body {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.auth-modal .package-summary {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.auth-modal .package-summary h4 {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: 'Orbitron', monospace;
}

.auth-modal .package-summary p {
    margin: 0.2rem 0;
    color: var(--white);
    font-size: 0.9rem;
}

.auth-form {
    margin-bottom: 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group small {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-top: 0.3rem;
    font-style: italic;
}

.password-strength {
    margin-top: 0.3rem;
}

.strength-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-fill.weak {
    width: 25%;
    background: #EF4444;
}

.strength-fill.fair {
    width: 50%;
    background: #F59E0B;
}

.strength-fill.good {
    width: 75%;
    background: #10B981;
}

.strength-fill.strong {
    width: 100%;
    background: #059669;
}

.strength-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
    flex-shrink: 0;
}

.form-actions button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.form-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.form-actions .btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

.form-actions .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-loading {
    text-align: center;
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-loading .loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-top: 3px solid var(--purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 0.8rem;
}

.auth-loading p {
    color: var(--white);
    font-size: 1rem;
    margin: 0.3rem 0;
}

.auth-loading .loading-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Form validation styles */
.form-group.error input {
    border-color: #EF4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.form-group.error small {
    color: #EF4444;
}

.form-group.success input {
    border-color: #10B981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.form-group.success small {
    color: #10B981;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-modal {
        padding: 0.5rem;
    }
    
    .auth-modal .modal-content {
        max-height: 90vh;
        width: 100%;
        margin: 0;
    }
    
    .auth-modal .modal-header {
        padding: 0.8rem 1.2rem;
    }
    
    .auth-modal .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .auth-modal .modal-body {
        padding: 1.2rem;
    }
    
    .auth-modal .package-summary {
        padding: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .auth-modal .package-summary h4 {
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-group input {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group small {
        font-size: 0.7rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 1.2rem;
    }
    
    .form-actions button {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .password-strength {
        margin-top: 0.2rem;
    }
    
    .strength-text {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .auth-modal .modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .auth-modal .modal-header {
        padding: 0.7rem 1rem;
    }
    
    .auth-modal .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .auth-modal .modal-body {
        padding: 1rem;
    }
    
    .auth-modal .package-summary {
        padding: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .auth-modal .package-summary h4 {
        font-size: 0.95rem;
    }
    
    .auth-modal .package-summary p {
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 0.7rem;
    }
    
    .form-group input {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .form-group small {
        font-size: 0.65rem;
        margin-top: 0.2rem;
    }
    
    .form-actions {
        margin-top: 1rem;
    }
    
    .form-actions button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Animation for modal entrance */
@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 