* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 800px;
}

.profile-card, .anime-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #ff6b6b;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

h1 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 32px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio, .anime-description {
    color: #b0b0b0;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    margin: 40px 0;
}

h2 {
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    font-size: 26px;
    position: relative;
    padding-bottom: 10px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.social-link i {
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

/* Цвета для соцсетей */
.vk { border-left: 4px solid #4c75a3; }
.telegram { border-left: 4px solid #2aabee; }
.discord { border-left: 4px solid #5865F2; }
.shikimori { border-left: 4px solid #ff6b6b; }
.youtube { border-left: 4px solid #ff0000; }
.anime { border-left: 4px solid #9b59b6; }

.club-info {
    background: rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #ff6b6b;
}

.club-info h3 {
    color: #ff6b6b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #888;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Стили для страницы онлайн просмотра */
.back-button {
    margin-bottom: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-back:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-back i {
    margin-right: 8px;
}

.anime-header {
    text-align: center;
    margin-bottom: 40px;
}

.anime-header h1 i {
    color: #ff6b6b;
    margin-right: 10px;
}

/* Стили для блока с ответственными */
.club-managers {
    background: rgba(78, 205, 196, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid #4ecdc4;
}

.managers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.manager-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.manager-card:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.2);
}

.manager-avatar {
    font-size: 60px;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.manager-card h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 20px;
}

.manager-role {
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.manager-desc {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.5;
}

.shikimori-info {
    background: rgba(155, 89, 182, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid #9b59b6;
}

.platform-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #9b59b6;
}

.platform-logo i {
    font-size: 28px;
    margin-right: 15px;
}

.platform-logo h2 {
    margin: 0;
    color: #9b59b6;
    text-align: left;
}

.platform-logo h2:after {
    display: none;
}

.anime-list-link {
    margin: 25px 0;
}

.shikimori-link {
    display: inline-flex;
    align-items: center;
    padding: 18px 30px;
    background: linear-gradient(to right, #9b59b6, #8e44ad);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.3);
    border: none;
}

.shikimori-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(155, 89, 182, 0.4);
}

.shikimori-link i {
    margin-right: 15px;
    font-size: 24px;
}

.note {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    color: #ffc107;
}

/* Стили для площадок просмотра */
.streaming-platforms {
    margin-bottom: 40px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff6b6b;
}

.platform-icon {
    font-size: 40px;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.platform-card h3 {
    margin-bottom: 10px;
    color: #fff;
}

.platform-card p {
    color: #b0b0b0;
    font-size: 14px;
}

/* Стили для рекомендаций */
.recommendations {
    margin-top: 40px;
}

.anime-list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.anime-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #ff6b6b;
}

.anime-item h3 {
    color: #fff;
    margin-bottom: 8px;
}

.anime-item p {
    color: #b0b0b0;
    margin-bottom: 10px;
    font-size: 14px;
}

.anime-tag {
    display: inline-block;
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-top: 5px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .profile-card, .anime-card {
        padding: 25px;
    }
    
    .avatar {
        width: 140px;
        height: 140px;
    }
    
    h1 {
        font-size: 26px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    .social-link {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .managers-grid, .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .shikimori-link {
        padding: 15px 20px;
        font-size: 18px;
    }
    }
