/* ============================
   LUXURY TICKET LANDING
   Minimalist & Premium
============================== */

:root {
    --black: #000000;
    --dark: #0c0c0c;
    --surface: #111111;
    --gold: #c9a84c;
    --gold-dim: #8a6f2e;
    --gold-glow: rgba(201, 168, 76, 0.3);
    --white: #ffffff;
    --gray: #888888;
    --light: #cccccc;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden; /* No scroll */
    font-family: 'Outfit', sans-serif;
    background-color: var(--black);
    color: var(--white);
}

/* Background with subtle gradient and texture */
.page-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    padding: 2rem;
    text-align: center;
}

/* Decorative background elements */
.glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    width: 100%;
}

.logo-container {
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s var(--ease);
}

.logo-img {
    height: 80px;
    width: auto;
}

.main-text {
    font-size: 1.35rem;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    animation: fadeIn 1.2s var(--ease) 0.3s both;
}

/* Label above button */
.btn-label {
    font-size: 0.95rem;
    color: var(--light);
    margin-bottom: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Premium Buttons */
.btn-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    animation: fadeInUp 1s var(--ease) 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: none;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
    color: var(--black);
    animation: heartbeat 2s ease-in-out infinite; /* Added heartbeat animation */
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    animation-play-state: paused; /* Pause animation on hover */
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn i {
    font-size: 1.1rem;
}

/* Footer */
.footer-simple {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 10;
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

#confetti-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    pointer-events: none;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.05);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(1);
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .logo-img {
        height: 60px;
    }
    .main-text {
        font-size: 1.1rem;
    }
    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}
