* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
}

body {
    background: #f5f0e8;
    color: #5d4037;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/minori2023.jpg') no-repeat center center/cover;
    opacity: 0.15;
    z-index: -1;
}

.container {
    max-width: 600px;
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(93, 64, 55, 0.1);
    animation: fadeIn 1s ease-in-out;
    border: 1px solid rgba(188, 170, 164, 0.3);
}

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



.content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #8d6e63;
    position: relative;
    display: inline-block;
}

.content h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #bcaaa4;
}

.content p {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #7d5a50;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.launch-message {
    margin: 40px 0;
    animation: fadeIn 1s ease-in-out 0.3s both;
}

.launch-message p {
    font-size: 1.2rem;
    font-style: italic;
    color: #8d6e63;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.launch-message p::before,
.launch-message p::after {
    content: '\201C';
    font-size: 1.5rem;
    position: absolute;
    color: #bcaaa4;
    font-family: 'Playfair Display', serif;
}

.launch-message p::before {
    left: 0;
    top: -5px;
}

.launch-message p::after {
    content: '\201D';
    right: 0;
    bottom: -5px;
}

.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(188, 170, 164, 0.2);
    border-radius: 50%;
    color: #8d6e63;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid rgba(188, 170, 164, 0.3);
}

.social-icon:hover {
    background: #8d6e63;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(93, 64, 55, 0.15);
}

@media (max-width: 768px) {
    .container {
        width: 85%;
        padding: 30px 20px;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        margin: 5px;
        min-width: 55px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
        padding: 8px 0;
    }
    
    .form {
        flex-direction: column;
    }
    
    .form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .form button {
        margin-left: 0;
    }
}

.decorative-line {
    width: 50px;
    height: 1px;
    background-color: #bcaaa4;
    margin: 15px auto;
}

.signature {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #a1887f;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

/* Animasi Simpel Amat */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.container {
    position: relative;
}

.container::before,
.container::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(188, 170, 164, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.container::before {
    top: -30px;
    left: -30px;
}

.container::after {
    bottom: -30px;
    right: -30px;
}
