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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f5f5f5;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(194, 84, 25, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(221, 110, 66, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    perspective: 1000px;
    padding: 2rem;
}

.content {
    background: rgba(20, 20, 20, 0.85);
    border: 2px solid #c25419;
    border-radius: 20px;
    padding: 4rem 3rem;
    max-width: 600px;
    text-align: center;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(194, 84, 25, 0.05),
        0 0 100px rgba(194, 84, 25, 0.1);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: #dd6e42;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 20px rgba(194, 84, 25, 0.4);
}

.divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #c25419 20%, 
        #dd6e42 50%, 
        #c25419 80%, 
        transparent 100%);
    margin: 2rem auto;
    position: relative;
}

.divider::before,
.divider::after {
    content: '🍂';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

.divider::before {
    left: -2rem;
}

.divider::after {
    right: -2rem;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #f5f5f5;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.date {
    font-size: 2rem;
    color: #dd6e42;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.details {
    font-size: 1.1rem;
    color: #c8c8c8;
    font-style: italic;
    margin-top: 2rem;
}

.leaf-decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    filter: blur(1px);
}

.leaf-decoration::before {
    content: '🍂';
}

.top-left {
    top: -1rem;
    left: -1rem;
    transform: rotate(-15deg);
    animation: float 6s ease-in-out infinite;
}

.top-right {
    top: -1rem;
    right: -1rem;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite 1s;
}

.bottom-left {
    bottom: -1rem;
    left: -1rem;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite 2s;
}

.bottom-right {
    bottom: -1rem;
    right: -1rem;
    transform: rotate(-15deg);
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.fade-in {
    animation: fadeIn 1.5s ease-out;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .names {
        font-size: 3rem;
    }
    
    .content {
        padding: 3rem 2rem;
    }
    
    .date {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .names {
        font-size: 2.5rem;
    }
    
    .content {
        padding: 2rem 1.5rem;
    }
}
