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

        :root {
            --primary: #7aadd4;
            --primary-light: #a8cde5;
            --primary-dark: #5a8fb8;
            --bg: #faf7f2;
            --bg-card: #ffffff;
            --text: #3a4a5c;
            --text-light: #6b7d8e;
            --accent-warm: #f0e6d6;
            --accent-cream: #fdf5eb;
            --shadow-soft: 0 4px 20px rgba(90, 143, 184, 0.10);
            --shadow-hover: 0 8px 32px rgba(90, 143, 184, 0.18);
            --radius: 20px;
            --radius-sm: 14px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--bg);
            color: var(--text);
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow-x: hidden;
        }

        /* --- Background decoration --- */
        body::before {
            content: '';
            position: fixed;
            top: -120px;
            right: -120px;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(122,173,212,0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        body::after {
            content: '';
            position: fixed;
            bottom: -80px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(240,230,214,0.5) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .page-wrapper {
            width: 100%;
            max-width: 440px;
            padding: 24px 20px 40px;
            position: relative;
            z-index: 1;
        }

        /* --- Header --- */
        .header {
            text-align: center;
            margin-bottom: 32px;
            animation: fadeSlideUp 0.6s ease-out;
        }

        .logo-container {
            width: 130px;
            height: 130px;
            margin: 0 auto 16px;
            position: relative;
        }

        .logo-container::before {
            content: '';
            position: absolute;
            inset: -8px;
            background: linear-gradient(135deg, var(--primary-light), var(--accent-warm));
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse 4s ease-in-out infinite;
        }

        .logo-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
            background: var(--bg-card);
            padding: 10px;
            position: relative;
            z-index: 1;
            box-shadow: var(--shadow-soft);
        }

        .studio-name {
            font-family: 'Comfortaa', cursive;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 6px;
            letter-spacing: -0.02em;
        }

        .studio-type {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        .slogan {
            margin-top: 12px;
            font-size: 0.85rem;
            color: var(--text-light);
            background: var(--accent-cream);
            display: inline-block;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 500;
            line-height: 1.4;
        }

        /* --- Section --- */
        .section {
            margin-bottom: 24px;
        }

        .section-label {
            font-family: 'Comfortaa', cursive;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 12px;
            padding-left: 4px;
        }

        /* --- Link Cards --- */
        .link-card {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 16px 20px;
            margin-bottom: 12px;
            text-decoration: none;
            color: var(--text);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .link-card::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            border-right: 2px solid var(--primary-light);
            border-top: 2px solid var(--primary-light);
            transform: translateY(-50%) rotate(45deg);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .link-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .link-card:hover::after {
            transform: translateY(-50%) rotate(45deg) translate(3px, -3px);
            border-color: var(--primary);
        }

        .link-card:active {
            transform: translateY(0);
            box-shadow: var(--shadow-soft);
        }

        .link-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .link-card:hover .link-icon {
            transform: scale(1.05);
        }

        .link-icon svg,
        .link-icon img {
            width: 48px;
            height: 48px;
        }
        .link-icon.icon-map img{
            width: 42px;
            height: 42px;
        }

        .link-info {
            flex: 1;
            min-width: 0;
        }

        .link-title {
            font-weight: 700;
            font-size: 0.95rem;
            line-height: 1.3;
            margin-bottom: 2px;
        }

        .link-subtitle {
            font-size: 0.8rem;
            color: var(--text-light);
            font-weight: 500;
        }

        /* --- Icon Colors --- */
        .icon-phone { background: linear-gradient(135deg, #e8f4ec, #d0ebd8); }
        .icon-phone svg { color: #4caf72; }

        .icon-telegram { background: linear-gradient(135deg, #e3f0fa, #c9e2f5); }
        .icon-telegram svg { color: #2a9ed8; }

        .icon-max { background: linear-gradient(135deg, #e8eaf6, #d1d4f0); }
        .icon-max svg { color: #5c6bc0; }

        .icon-vk { background: linear-gradient(135deg, #e6effa, #ccddf5); }
        .icon-vk svg { color: #4a76a8; }

        .icon-instagram { background: linear-gradient(135deg, #fce4ec, #f8d0da); }
        .icon-instagram svg { color: #d63a72; }

        .icon-website { background: linear-gradient(135deg, #e0f2f6, #c5e6ef); }
        .icon-website svg { color: var(--primary-dark); }

        /* .icon-map { background: linear-gradient(135deg, #fef3e2, #fde5c0); } */
        /* .icon-map svg { color: #f5a623; } */

        /* --- Staggered animations --- */
        .link-card {
            opacity: 0;
            animation: fadeSlideUp 0.5s ease-out forwards;
        }

        .section:nth-child(2) .link-card:nth-child(2) { animation-delay: 0.08s; }
        .section:nth-child(2) .link-card:nth-child(3) { animation-delay: 0.16s; }
        .section:nth-child(2) .link-card:nth-child(4) { animation-delay: 0.24s; }

        .section:nth-child(3) .link-card:nth-child(2) { animation-delay: 0.32s; }
        .section:nth-child(3) .link-card:nth-child(3) { animation-delay: 0.40s; }

        .section:nth-child(4) .link-card:nth-child(2) { animation-delay: 0.48s; }

        /* --- Footer --- */
        .footer {
            text-align: center;
            margin-top: 16px;
            padding-top: 20px;
            border-top: 1px solid rgba(122,173,212,0.15);
            animation: fadeSlideUp 0.5s ease-out 0.56s forwards;
            opacity: 0;
        }

        .footer-text {
            font-size: 0.75rem;
            color: var(--text-light);
            opacity: 0.7;
            font-weight: 500;
        }

        .footer-brand {
            font-family: 'Comfortaa', cursive;
            font-weight: 700;
            color: var(--primary);
        }

        /* --- Decorative dots --- */
        .dots {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin: 20px 0 8px;
            opacity: 0;
            animation: fadeSlideUp 0.5s ease-out 0.52s forwards;
        }

        .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary-light);
            opacity: 0.5;
        }

        .dot:nth-child(2) { opacity: 0.3; width: 5px; height: 5px; }
        .dot:nth-child(3) { opacity: 0.15; width: 4px; height: 4px; }

        /* --- Animations --- */
        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(16px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.06); opacity: 0.18; }
        }

        /* --- Responsive --- */
        @media (max-width: 380px) {
            .page-wrapper { padding: 20px 16px 32px; }
            .studio-name { font-size: 1.3rem; }
            .logo-container { width: 110px; height: 110px; }
            .link-card { padding: 14px 16px; }
            .link-icon { width: 42px; height: 42px; }
            .link-icon svg,
            .link-icon img { width: 22px; height: 22px; }
        }

        @media (min-width: 441px) {
            .page-wrapper { padding: 40px 24px 60px; }
        }

        /* --- Touch feedback --- */
        @media (hover: none) {
            .link-card:active {
                transform: scale(0.98);
                background: #f8fbfd;
            }
        }
