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

body {
    min-height: 100vh;
    background: #0A0F1F;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.7) 90%);
    pointer-events: none;
    z-index: 10;
}

/* Звезды */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: rotateStars 60s linear infinite;
}

.stars {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    object-fit: cover;
}

@keyframes rotateStars {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(360deg) scale(1); }
}

/* Основной контейнер */
.container {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 20px;
}

/* Рука */
.hand-wrapper {
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.hand-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 140, 66, 0.5));
    animation: softPulse 5s infinite ease-in-out;
    transition: all 0.3s ease;
}

.hand-svg:hover {
    filter: drop-shadow(0 0 30px rgba(255, 140, 66, 0.9));
    transform: scale(1.02);
    animation: none;
}

@keyframes softPulse {
    0% { filter: drop-shadow(0 0 8px rgba(255, 140, 66, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 140, 66, 0.6)); }
    100% { filter: drop-shadow(0 0 8px rgba(255, 140, 66, 0.3)); }
}

/* Логотип */
.logo-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 10px auto 20px;
    padding: 0 15px;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Подпись */
.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.3);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 140, 66, 0.3);
    margin-top: 10px;
    display: inline-block;
}

/* МОБИЛЬНАЯ ОПТИМИЗАЦИЯ */
@media (max-width: 768px) {
    .hand-wrapper {
        width: min(400px, 80vw);
        height: min(400px, 80vw);
        margin-bottom: 10px;
    }

    .logo-wrapper {
        max-width: min(600px, 90vw);
    }

    .subtitle {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .hand-wrapper {
        width: min(300px, 70vw);
        height: min(300px, 70vw);
    }

    .subtitle {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem;
        letter-spacing: 1px;
    }

    .container {
        padding: 10px;
    }
}

@media (max-height: 700px) and (orientation: landscape) {
    .hand-wrapper {
        width: 250px;
        height: 250px;
    }

    .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .subtitle {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .hand-wrapper {
        width: 700px;
        height: 700px;
    }

    .subtitle {
        font-size: 1.4rem;
    }
}