        :root {
            --bg1: #1a0e00;
            --bg2: #301a00;
            --accent: #f5a623;
            --glow: rgba(245,166,35,0.5);
            --text: #ffffff;
            --particle: rgba(245,166,35,0.3);
        }
        body { background: var(--bg1); color: var(--text); }

        .hero { min-height: auto; padding: 20px 20px; }

        .hero-card {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            background: transparent;
            border: none;
            box-shadow: none;
            animation: cardFloat 6s ease-in-out infinite;
            margin: 6px 0 12px;
        }

        @keyframes cardFloat {
            0%,100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .hero-card img {
            max-height: 360px;
            max-width: 92vw;
            width: auto;
            height: auto;
            border-radius: 24px;
            border: 4px solid var(--accent);
            box-shadow: 0 0 40px var(--glow), 0 0 80px rgba(0,0,0,0.3);
        }

        .hero-card .hero-title {
            margin-top: 10px;
        }

        .hero-title {
            font-size: clamp(2.4rem, 9vw, 4rem);
            background: linear-gradient(135deg, #f5a623, #fde8a0, #ffffff, #f5a623);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientText 24s ease infinite;
        }

        @keyframes gradientText {
            0%,100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .zodiac-row {
            display: flex;
            justify-content: center;
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .zodiac-card {
            background: rgba(255,255,255,0.08);
            border-radius: 28px;
            padding: 28px 20px;
            text-align: center;
            border: 1px solid rgba(245,166,35,0.2);
            transition: all 0.5s cubic-bezier(0.25,0.8,0.25,1);
            cursor: pointer;
            text-decoration: none;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 320px;
        }

        @media (hover: hover) {
            .zodiac-card:hover {
                transform: translateY(-12px) scale(1.05);
                box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 40px var(--glow);
                border-color: var(--accent);
                background: rgba(255,255,255,0.15);
            }
        }

        .zodiac-avatar {
            width: 288px;
            height: 288px;
            border-radius: 22%;
            object-fit: cover;
            margin-bottom: 16px;
            border: 3px solid rgba(245,166,35,0.3);
            box-shadow: 0 0 20px rgba(245,166,35,0.2);
            transition: all 0.4s;
        }

        @media (hover: hover) {
            .zodiac-card:hover .zodiac-avatar {
                border-color: var(--accent);
                box-shadow: 0 0 35px var(--glow);
                transform: scale(1.05);
            }
        }

        .zodiac-card .name {
            font-size: 1.4rem;
            font-weight: 700;
        }

        .zodiac-card .dates {
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 600;
            margin-top: 4px;
        }

        .zodiac-card .desc {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            margin-top: 6px;
        }

        .main-cta {
            text-align: center;
            padding: 80px 20px;
        }

        .main-cta .cta-btn {
            font-size: 1.5rem;
            padding: 24px 70px;
        }

        .section-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            /* идёт сразу после hero — большой верхний отступ не нужен */
            padding: 24px 20px 0;
        }

        .section-intro h2 {
            font-size: clamp(1.7rem, 6.5vw, 2.5rem);
            font-weight: 900;
            color: #fff;
            margin-bottom: 15px;
        }

        .section-intro p {
            font-size: clamp(1.02rem, 4vw, 1.15rem);
            color: rgba(255,255,255,0.7);
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            padding: 0 20px 60px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-num {
            font-size: clamp(2.2rem, 9vw, 3rem);
            font-weight: 900;
            color: var(--accent);
            text-shadow: 0 0 20px var(--glow);
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255,255,255,0.7);
            margin-top: 5px;
        }

        @media (max-width: 768px) {
            .hero-card img { max-height: min(240px, 56vw); max-width: 92vw; }
            /* Карточки знаков — во всю ширину, маленькие боковые поля */
            .zodiac-row { flex-direction: column; align-items: stretch; gap: 16px; padding: 0 10px; }
            .zodiac-card { width: 100%; max-width: none; }
            /* Изображения знаков на мобильных — крупнее на 25% */
            .zodiac-avatar { width: min(360px, 87.5vw); height: min(360px, 87.5vw); }
            .stats { gap: 30px; }
            .section-intro { padding: 20px 12px 0; }
        }

        @media (max-width: 430px) {
            .zodiac-row { padding: 0 8px; }
            .zodiac-card { padding: 24px 16px; }
        }

        .nav {
            background: transparent;
            border-bottom: none;
        }

        .nav-logo {
            color: #f5a623;
        }

        .nav-links a {
            color: #ffe0a0;
            border-color: rgba(245,166,35,0.3);
            overflow: visible;
        }

        .nav-links a::before {
            display: none;
        }

        .nav-links a:hover {
            background: rgba(245,166,35,0.2);
            color: #ffffff;
            border-color: rgba(245,166,35,0.6);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(245,166,35,0.3);
        }

        .footer {
            color: rgba(255,255,255,0.5);
            border-top: 1px solid rgba(245,166,35,0.15);
        }

        .footer a {
            color: #f5a623;
        }
