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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    cursor: default;
}

/* Neve animata */
.snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.mountains {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40vh;
    background: linear-gradient(to top, #1a1a2e 0%, transparent 100%);
    clip-path: polygon(0 100%, 0 60%, 10% 70%, 20% 50%, 30% 65%, 40% 45%, 50% 55%, 60% 40%, 70% 60%, 80% 35%, 90% 55%, 100% 45%, 100% 100%);
    animation: mountainGlow 4s ease-in-out infinite;
}

@keyframes mountainGlow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.9;
    }
}

.logo {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: bold;
    background: linear-gradient(45deg, #ffd700, #ffffff, #c0c0c0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: shimmer 3s ease-in-out infinite;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

@keyframes shimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #ffd700;
    margin-bottom: 0.5rem;
    animation: fadeIn 2s ease-in;
}

.date {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #c0c0c0;
    margin-bottom: 2rem;
    animation: fadeIn 2.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 1.2rem 3rem;
    font-size: clamp(1rem, 2vw, 1.3rem);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffd700, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.8;
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease-in;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    animation: fadeInUp 1s ease-out;
}

.feature-card:hover {
    transform: translateY(-10px) rotate(1deg);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-text {
    color: #c0c0c0;
    line-height: 1.6;
}

/* Pricing */
.pricing {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 30px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: fadeIn 2s ease-in;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.price-item:last-child {
    border-bottom: none;
}

.price {
    color: #ffd700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
}

/* Dress Code */
.dress-code {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(192, 192, 192, 0.1) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 5px solid #ffd700;
    animation: slideIn 1.5s ease-out;
}

.dress-code-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Easter Eggs */
.hidden-star {
    position: fixed;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hidden-star:hover {
    transform: scale(1.5) rotate(180deg);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-in;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem;
    border-radius: 30px;
    border: 3px solid #ffd700;
    text-align: center;
    max-width: 500px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal h2 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.close-modal {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    padding: 3rem;
    margin: 3rem 0;
    animation: fadeIn 2s ease-in;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 100px;
    animation: fadeInUp 1s ease-out;
}

.countdown-number {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffd700;
    font-weight: bold;
    display: block;
}

.countdown-label {
    font-size: 1rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Sparkles */
.sparkle {
    position: fixed;
    pointer-events: none;
    animation: sparkleAnim 1s ease-out forwards;
}

@keyframes sparkleAnim {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: scale(2) rotate(180deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 3rem 1.5rem;
    }

    .hero {
        min-height: 100vh;
    }

    .pricing {
        padding: 2rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .form-container {
        padding: 2rem;
    }
}