/* Общие стили */
:root {
    --primary-color: #1DB954; /* Зеленый цвет как у Spotify */
    --secondary-color: #191414; /* Темный фон */
    --accent-color: #ffffff;
    --text-color: #e0e0e0;
    --text-secondary: #b3b3b3;
    --card-bg: #282828;
    --hover-color: #535353;
}

body {
    background-color: var(--secondary-color);
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.headerLogoTitle {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.headerLogo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.headerLogo:hover {
    transform: scale(1.05);
}

.headerTitle {
    margin-left: 15px;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), #25aae1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.headerSubtitle {
    margin-left: auto;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* MAIN */
main {
    flex: 1;
    padding: 30px;
    max-width: 1200px;
    margin: 20px auto;
    box-sizing: border-box;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.simpleText {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 15px;
}

.simpleHead {
    color: var(--accent-color);
    font-family: 'Montserrat', Arial, sans-serif;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

ul, ol {
    padding-left: 20px;
}

li {
    color: var(--text-color);
    margin-bottom: 8px;
    position: relative;
}


a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #25aae1;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

.footerText {
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'Montserrat', Arial, sans-serif;
}

hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 20px 0;
}
.partner-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.partner-link:hover {
    background-color: #1ed760;
    text-decoration: none;
    transform: scale(1.05);
}