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

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ff9933 0%, #ffcc00 50%, #ff9933 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeIn 1.5s ease-in;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 900;
    color: #8B0000;
    text-shadow: 
        3px 3px 0px #6B0000,
        5px 5px 10px rgba(0,0,0,0.3),
        0 0 30px rgba(255,215,0,0.5);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.tagline {
    font-size: 24px;
    color: #2d5016;
    font-weight: 600;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.launch-text {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(180deg, #8B0000 0%, #CD5C5C 100%);
    padding: 25px 60px;
    border-radius: 50px;
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.3),
        inset 0 -3px 10px rgba(0,0,0,0.2),
        inset 0 3px 10px rgba(255,255,255,0.3);
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.launch-text::before,
.launch-text::after {
    content: '✦';
    position: absolute;
    font-size: 28px;
    color: #FFD700;
    top: 50%;
    transform: translateY(-50%);
    animation: sparkle 2s infinite;
}

.launch-text::before {
    left: 15px;
}

.launch-text::after {
    right: 15px;
}

.decoration {
    position: relative;
    margin-top: 50px;
}

.wheat {
    position: absolute;
    width: 80px;
    height: 120px;
    background: linear-gradient(to top, #DAA520, #FFD700);
    clip-path: polygon(
        50% 0%, 
        60% 20%, 70% 20%, 65% 30%, 
        75% 30%, 70% 40%, 80% 40%, 75% 50%,
        85% 50%, 80% 60%, 90% 60%, 85% 70%,
        70% 100%, 50% 100%, 30% 100%,
        15% 70%, 10% 60%, 20% 60%, 15% 50%,
        25% 50%, 20% 40%, 30% 40%, 25% 30%,
        35% 30%, 30% 20%, 40% 20%
    );
    animation: sway 3s ease-in-out infinite;
}

.wheat.left {
    left: -150px;
    top: -60px;
}

.wheat.right {
    right: -150px;
    top: -60px;
    animation-delay: 1.5s;
}

.background-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.15;
}

.temple {
    position: absolute;
    left: 10%;
    top: 30%;
    width: 150px;
    height: 200px;
    background: linear-gradient(to bottom, #8B4513, #654321);
    clip-path: polygon(
        50% 0%, 0% 30%, 10% 30%, 10% 100%, 
        90% 100%, 90% 30%, 100% 30%
    );
}

.lighthouse {
    position: absolute;
    right: 10%;
    top: 30%;
    width: 80px;
    height: 200px;
    background: linear-gradient(to bottom, #DC143C, #8B0000);
}

.lighthouse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
    background: #FFD700;
    border-radius: 50%;
}

.rice-bowl {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    background: #8B4513;
    border-radius: 0 0 60px 60px;
}

.rice-bowl::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 10%;
    width: 80%;
    height: 30px;
    background: #FFD700;
    border-radius: 50%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 70px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .launch-text {
        font-size: 24px;
        padding: 20px 40px;
    }
    
    .wheat {
        width: 50px;
        height: 80px;
    }
    
    .wheat.left {
        left: -80px;
    }
    
    .wheat.right {
        right: -80px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 50px;
    }
    
    .tagline {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .launch-text {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .wheat {
        display: none;
    }
}
