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

/* Variables */
:root {
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --gold-light: #FFF8DC;
    --black: #000000;
    --dark: #1C1C1C;
    --white: #FFFFFF;
    --gray: #B0B0B0;
}

/* Base */
body {
    font-family: 'Oswald', sans-serif;
    background: #000000;
    color: var(--white);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Luxury Background Animations */
.luxury-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Gold Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 4s linear infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 0.4s; }
.particle:nth-child(3) { left: 30%; animation-delay: 0.8s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1.2s; }
.particle:nth-child(5) { left: 50%; animation-delay: 1.6s; }
.particle:nth-child(6) { left: 60%; animation-delay: 2s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.4s; }
.particle:nth-child(8) { left: 80%; animation-delay: 2.8s; }
.particle:nth-child(9) { left: 90%; animation-delay: 3.2s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3.6s; }

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
        transform: translateY(90vh) scale(1.5);
    }
    90% {
        opacity: 0.8;
        transform: translateY(10vh) scale(1.5);
    }
    100% {
        opacity: 0;
        transform: translateY(0vh) scale(0);
    }
}

/* Geometric Diamonds */
.diamonds {
    position: absolute;
    width: 100%;
    height: 100%;
}

.diamond {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transform: rotate(45deg);
    animation: diamond-float 15s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.diamond::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    top: 10px;
    left: 10px;
}

.diamond:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.diamond:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-duration: 22s;
    animation-delay: 3s;
    width: 35px;
    height: 35px;
}

.diamond:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 6s;
    width: 60px;
    height: 60px;
}

.diamond:nth-child(4) {
    top: 35%;
    right: 10%;
    animation-duration: 20s;
    animation-delay: 9s;
    width: 40px;
    height: 40px;
}

.diamond:nth-child(5) {
    bottom: 40%;
    left: 50%;
    animation-duration: 23s;
    animation-delay: 4s;
    width: 45px;
    height: 45px;
}

@keyframes diamond-float {
    0%, 100% {
        transform: rotate(45deg) translateX(0) translateY(0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: rotate(50deg) translateX(30px) translateY(-30px) scale(1.1);
        opacity: 0.4;
    }
    50% {
        transform: rotate(40deg) translateX(-20px) translateY(20px) scale(0.95);
        opacity: 0.3;
    }
    75% {
        transform: rotate(48deg) translateX(40px) translateY(10px) scale(1.05);
        opacity: 0.45;
    }
}

/* Random sparkles from JS */
.random-sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: random-sparkle 4s linear;
    box-shadow: 0 0 15px rgba(255, 215, 0, 1);
    pointer-events: none;
}

@keyframes random-sparkle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(2);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(2);
    }
    100% {
        opacity: 0;
        transform: translateY(0vh) scale(0);
    }
}

/* Opening Screen */
.opening-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: #000000;
    position: relative;
}

.vip-card {
    background: rgba(10, 10, 10, 0.95);
    border: 3px solid var(--gold);
    border-radius: 0;
    padding: 60px 30px;
    max-width: 450px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.25),
                0 0 40px rgba(255, 215, 0, 0.15) inset;
}

.vip-stamp {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.75rem;
    letter-spacing: 3px;
    transform: rotate(12deg);
    font-weight: 900;
}

.card-content {
    text-align: center;
}

.main-title {
    margin: 40px 0 30px;
}

.title-line {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title-line.highlight {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 0;
    letter-spacing: 3px;
}

.luxury-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 35px 0;
}

.divider-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.divider-line {
    width: 80px;
    height: 0.5px;
    background: var(--gold);
    opacity: 0.5;
}

.exclusive-text {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 25px;
    font-weight: 400;
}

.birthday-number {
    display: inline-flex;
    align-items: baseline;
    gap: 15px;
}

.birthday-number .number {
    font-family: 'Bebas Neue', cursive;
    font-size: 6rem;
    color: var(--white);
    line-height: 0.8;
    font-weight: 400;
}

.birthday-number .number-text {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gray);
}

.card-bottom {
    margin-top: 60px;
    text-align: center;
}

.scroll-hint {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
}

.scroll-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    animation: bounce 2.5s infinite;
    margin-top: 15px;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Main Hero */
.main-hero {
    padding: 80px 20px 60px;
    background: #000000;
}

.hero-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.date-banner {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 50px;
    padding: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.date-day {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 400;
}

.date-month {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gray);
}

.date-year {
    font-size: 1rem;
    color: rgba(255, 215, 0, 0.6);
}

.hero-image-wrapper {
    margin: 50px 0;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: contain;
}

.image-placeholder {
    height: 400px;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.image-placeholder p {
    color: rgba(255, 215, 0, 0.3);
    font-style: italic;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 50px;
}

.info-pill {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.info-pill:active {
    border-color: var(--gold);
}

.pill-icon {
    font-size: 1.1rem;
}

.pill-text {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Experience Section */
.experience {
    padding: 80px 20px;
    background: #000000;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.section-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.heading-small {
    display: block;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 10px;
}

.heading-big {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 2.8rem;
    color: var(--white);
    letter-spacing: 4px;
    font-weight: 400;
}

.experience-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.exp-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 35px 25px;
    position: relative;
    transition: all 0.3s;
}

.exp-card:active {
    border-color: rgba(255, 215, 0, 0.5);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(255, 215, 0, 0.3);
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
}

.exp-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 400;
}

.card-time {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Location Section */
.location {
    padding: 80px 20px;
    background: #000000;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.location-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.location-badge {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 10px 25px;
    border: 1px solid var(--gold);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.location-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 2px;
}

.location-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 50px;
    font-style: italic;
    font-weight: 300;
}

.location-details {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.detail-box {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 30px 20px;
    text-align: left;
}

.detail-box h4 {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 400;
}

.detail-box p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
}

.detail-box .price {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin: 10px 0;
}

.price-info {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.4;
}

.website-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    padding: 15px 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.website-link:active {
    border-color: var(--gold);
    color: var(--gold);
}

/* Rules Section */
.rules {
    padding: 80px 20px;
    background: #000000;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.rules-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.rules-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 4px;
    font-weight: 400;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.rule {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rule:last-child {
    border-bottom: none;
}

.rule-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    color: rgba(255, 215, 0, 0.5);
    min-width: 35px;
    font-weight: 400;
}

.rule p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: #000000;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.cta-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
}

.cta-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.calendar-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.cal-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cal-btn:active {
    border-color: var(--gold);
    color: var(--gold);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 40px 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    flex-wrap: wrap;
}

.time-block {
    text-align: center;
}

.time-number {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
    font-weight: 400;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.time-label {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 300;
}

.final-note {
    color: var(--gray);
    font-style: italic;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Apple Wallet Section */
.wallet-section {
    margin: 50px auto;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.wallet-intro {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.wallet-btn {
    background: #000;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', sans-serif;
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.wallet-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

.wallet-btn:active {
    transform: translateY(0);
}

.wallet-icon {
    width: 24px;
    height: 24px;
}

.wallet-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 15px;
    font-style: italic;
}

/* Additional styles for new elements */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.booking-label {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.phone-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    padding: 15px 35px;
    border: 1px solid var(--gold);
    background: transparent;
    transition: all 0.3s;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.phone-link:active {
    background: var(--gold);
    color: var(--black);
}

.price-extra {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 5px 0;
    display: block;
}

.price-note {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breakfast-info {
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.breakfast-info h3 {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 400;
}

.breakfast-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.breakfast-note {
    color: var(--gray);
    font-size: 0.85rem;
    font-style: italic;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .vip-card {
        padding: 80px 60px;
        max-width: 550px;
    }

    .title-line {
        font-size: 3rem;
    }

    .title-line.highlight {
        font-size: 5rem;
    }

    .hero-wrapper,
    .section-wrapper,
    .location-wrapper,
    .rules-wrapper,
    .cta-wrapper {
        max-width: 800px;
    }

    .hero-image {
        max-height: 600px;
    }

    .experience-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .location-details {
        grid-template-columns: repeat(3, 1fr);
    }

    .calendar-options {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .cal-btn {
        min-width: 220px;
    }

    .countdown-timer {
        gap: 40px;
        flex-wrap: nowrap;
    }

    .time-number {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-wrapper,
    .section-wrapper,
    .location-wrapper,
    .rules-wrapper,
    .cta-wrapper {
        max-width: 1000px;
    }

    .experience-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}