:root {
    --primary-color: #6c5ce7;
    --secondary-color: #4a90e2;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --accent-color: #ff7675;
    --success-color: #00b894;
    --domain-color: #8a2be2;
    --light-purple: #a29bfe;
    --light-blue: #74b9ff;
    --card-bg: rgba(255, 255, 255, 0.85);
    --hover-color: #f8f9fa;
    --card-hover: rgba(255, 255, 255, 0.98);
    --border-color: rgba(74, 144, 226, 0.2);
}

@font-face {
    font-family: 'YS';
    src: url('ys.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'YS', 'Segoe UI', 'Helvetica Neue', sans-serif;
}

body {
    min-height: 100vh;
    background: url('https://api.xn--kiv.fun/AcgnPic') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #6c5ce7, #4a90e2, #6c5ce7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientAnimation 4s ease infinite;
}

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

.header {
    padding-top: 65px;
    text-align: center;
    margin-bottom: 4rem;
}

.header h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}