:root {
    --primary-color: #ffb7c5;
    --accent-color: #e05a76;
    --text-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --dark-bg-start: #2b2029;
    --dark-bg-end: #110e14;
}

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

body {
    min-height: 100vh;
    font-family: 'VT323', monospace;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    background-color: var(--dark-bg-end);
    background-image:
        linear-gradient(rgba(255, 183, 197, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 183, 197, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--dark-bg-start) 0%, var(--dark-bg-end) 90%);
    background-size: 50px 50px, 50px 50px, 100% 100%;
}

/* контейнер */
.container {
    position: relative;
    z-index: 10;
    background: rgba(30, 25, 30, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 183, 197, 0.1);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 700px;
    width: 90%;
    animation: fadeIn 1.2s ease-out;
}

/* заголовки */
h1 {
    font-size: 3.5rem;
    text-shadow: 4px 4px 0px var(--accent-color);
}

.japanese-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 6px;
}

/* сетка */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
    border-left: 3px solid var(--accent-color);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-3px);
}

/* картинки */
.images {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.images img {
    width: 50%;
    border-radius: 8px;
}

/* 🌸 САКУРА */
.sakura-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.sakura {
    position: absolute;
    background-color: #ffb7c5;
    border-radius: 100% 0 100% 0;
    opacity: 0.6;
    animation: fall linear infinite;
}

.sakura:nth-child(1) { left: 10%; width: 10px; height: 10px; animation-duration: 10s; }
.sakura:nth-child(2) { left: 20%; width: 15px; height: 15px; animation-duration: 14s; }
.sakura:nth-child(3) { left: 70%; width: 10px; height: 10px; animation-duration: 11s; }
.sakura:nth-child(4) { left: 40%; width: 12px; height: 12px; animation-duration: 16s; }
.sakura:nth-child(5) { left: 85%; width: 14px; height: 14px; animation-duration: 12s; }
.sakura:nth-child(6) { left: 50%; width: 9px; height: 9px; animation-duration: 13s; }

@keyframes fall {
    0% { top: -10%; transform: rotate(0deg); }
    100% { top: 110%; transform: rotate(360deg) translateX(50px); }
}

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