/* Файл: css/style.css */
:root {
    --primary-color: #e53935;
    --primary-dark: #c62828;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #424242;
    --white: #ffffff;
    --black: #212121;
    --font-main: 'Inter', 'Helvetica Neue', sans-serif;
    --font-accent: 'Montserrat', 'Arial', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(229, 57, 53, 0.2);
}

.text-center {
    text-align: center;
}

/* HEADER STYLES */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    text-decoration: none;
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--black);
    cursor: pointer;
}

/* FOOTER STYLES */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-about {
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-links li i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10极客时间;
}

.legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* ======================= */
/* СТИЛИ ДЛЯ ГЛАВНОЙ СТРАНИЦЫ */
/* ======================= */
.page-index .hero {
    background: linear-gradient(135deg, #f9f9f9 0%, #eef2f5 100%);
    padding: 100px 0;
}

.page-index .hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.page-index .hero-text {
    flex: 1;
}

.page-index .hero-title {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}

.page-index .hero-title span {
    color: var(--primary-color);
}

.page-index .hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.page-index .crypto-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(229, 57, 53, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.page-index .crypto-badge i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.page-index .hero-slogan {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 30px;
}

.page-index .hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.page-index .hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-index .info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index .info-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.page-index .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.page-index .info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.page-index .info-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.page-index .info-text {
    color: var(--dark-gray);
    line-height: 1.8;
}

.page-index .testimonials-container {
    background-color: #f9f9f9;
    border-radius: 20px;
    padding: 60px;
}

.page-index .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index .testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.page-index .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-accent);
    font-size: 5rem;
    color: rgba(229, 57, 53, 0.1);
    line-height: 1;
}

.page-index .testimonial-content {
    position: relative;
    font-style: italic;
    margin-bottom: 25px;
    padding-top: 30px;
    color: var(--dark-gray);
    line-height: 1.8;
}

.page-index .testimonial-author {
    display: flex;
    align-items: center;
}

.page-index .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-index .author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--black);
}

.page-index .author-info p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.page-index .social-stats {
    display: flex;
    gap: 15px;
}

.page-index .social-stats span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.page-index .social-stats i {
    margin-right: 5px;
    color: var(--primary-color);
}

.page-index .application {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.page-index .application-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-index .application-form {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.page-index .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.page-index .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.page-index .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--black);
}

.page-index .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.page-index .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2);
}

.page-index .platform-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.page-index .platform-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.page-index .platform-options input {
    margin-right: 8px;
}

.page-index .form-check {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.page-index .form-check-input {
    margin-top: 5px;
    margin-right: 10px;
}

.page-index .form-check-label {
    line-height: 1.5;
}

.page-index .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index .form-check-label a:hover {
    text-decoration: underline;
}

.page-index .submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ======================= */
/* СТИЛИ ДЛЯ СТРАНИЦЫ "О НАС" */
/* ======================= */
.page-about .about-section {
    padding: 120px 0 80px;
}

.page-about .about-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.page-about .about-block {
    display: flex;
    align-items: center;
    gap: 60px;
}

.page-about .about-block:nth-child(even) {
    flex-direction: row-reverse;
}

.page-about .about-text {
    flex: 1;
}

.page-about .about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.page-about .about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-about .about-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-about .about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.page-about .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-about .stat-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.page-about .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-about .stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .page-about .about-block {
        flex-direction: column;
    }
    
    .page-about .about-block:nth-child(even) {
        flex-direction: column;
    }
}

/* ======================= */
/* СТИЛИ ЛИЧНОГО КАБИНЕТА */
/* ======================= */
.page-account .account-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
}

.page-account .account-container {
    display: flex;
    gap: 40px;
}

.page-account .account-sidebar {
    width: 280px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px 0;
}

.page-account .account-content {
    flex: 1;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.page-account .account-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.page-account .account-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-right: 20px;
}

.page-account .account-info h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--black);
}

.page-account .account-info p {
    color: #666;
}

.page-account .account-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.page-account .stat-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.page-account .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.page-account .stat-label {
    color: #666;
    font-size: 0.95rem;
}

.page-account .account-menu {
    list-style: none;
}

.page-account .account-menu li {
    margin-bottom: 5px;
}

.page-account .account-menu a {
    display: block;
    padding: 15px 30px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.page-account .account-menu a:hover, 
.page-account .account-menu a.active {
    background: rgba(229, 57, 53, 0.1);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.page-account .account-menu a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.page-account .account-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--black);
    position: relative;
    padding-bottom: 15px;
}

.page-account .account-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.page-account .account-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-account .overview-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
}

.page-account .overview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--black);
}

.page-account .crypto-list {
    list-style: none;
}

.page-account .crypto-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.page-account .crypto-item:last-child {
    border-bottom: none;
}

.page-account .crypto-icon {
    width: 40px;
    height: 40px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.page-account .crypto-info {
    flex: 1;
}

.page-account .crypto-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.page-account .crypto-amount {
    font-size: 0.9rem;
    color: #666;
}

.page-account .crypto-value {
    font-weight: 700;
}

.page-account .recent-transactions h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--black);
}

.page-account .transactions-table {
    width: 100%;
    border-collapse: collapse;
}

.page-account .transactions-table th {
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid #eee;
    font-weight: 600;
    color: #666;
}

.page-account .transactions-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.page-account .transaction-positive {
    color: #4caf50;
}

.page-account .transaction-negative {
    color: #f44336;
}

@media (max-width: 992px) {
    .page-account .account-container {
        flex-direction: column;
    }
    
    .page-account .account-sidebar {
        width: 100%;
    }
}

/* ======================= */
/* СТИЛИ БЛОГА */
/* ======================= */
.page-blog .blog-section {
    padding: 120px 0 80px;
    background-color: #f9f9f9;
}

.page-blog .blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.page-blog .blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10极客时间30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.page-blog .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.page-blog .blog-image {
    height: 220px;
    overflow: hidden;
}

.page-blog .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-blog .blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.page-blog .blog-content {
    padding: 25px;
}

.page-blog .blog-category {
    display: inline-block;
    background: rgba(229, 57, 53, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-blog .blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--black);
}

.page-blog .blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.page-blog .blog-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 20px;
}

.page-blog .blog-author {
    display: flex;
    align-items: center;
}

.page-blog .author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.page-blog .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-blog .page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: #666;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.page-blog .page-item.active, 
.page-blog .page-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.page-blog .categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.page-blog .category-btn {
    padding: 8px 20px;
    background: rgba(229, 57, 53, 0.1);
    color: #666;
    border-radius: 30px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.page-blog .category-btn.active, 
.page-blog .category-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .page-blog .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================= */
/* СТИЛИ КОМАНДЫ */
/* ======================= */
.page-team .team-section {
    padding: 120px 0 80px;
    background-color: #f9f9f9;
}

.page-team .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.page-team .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.page-team .team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.page-team .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.page-team .member-photo {
    height: 280px;
    overflow: hidden;
}

.page-team .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-team .team-member:hover .member-photo img {
    transform: scale(1.05);
}

.page-team .member-info {
    padding: 25px;
}

.page-team .member-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--black);
}

.page-team .member-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.page-team .member-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-team .member-social {
    display: flex;
    gap: 15px;
}

.page-team .member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(229, 57, 53, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.page-team .member-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.page-team .team-values {
    padding: 50px 0;
}

.page-team .values-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--black);
    position: relative;
}

.page-team .values-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.page-team .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-team .value-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.page-team .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.page-team .value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.page-team .value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.page-team .value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-team .team-grid {
        gap: 30px;
    }
    
    .page-team .member-photo {
        height: 240px;
    }
}

/* Адаптивность (общая для всех страниц) */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 99;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-index .hero-content {
        flex-direction: column;
    }
    
    .page-index .hero-text {
        order: 2;
    }
    
    .page-index .hero-image {
        order: 1;
        margin-bottom: 40px;
    }
    
    .page-index .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
/* Audio Player Styles */
.audio-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 57, 53, 0.5);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.player-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.player-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.track-info {
    flex: 1;
    color: white;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    width: 100px;
}

#volume-slider {
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}
/* Добавить в существующие стили */
.game-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.game-area {
    text-align: center;
    margin: 20px 0;
}

#click-card {
    width: 300px;
    height: 180px;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

#click-card:active {
    transform: scale(0.95);
}

.skins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skin-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.skin-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.skin-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.skin-card p {
    font-weight: bold;
    margin-bottom: 10px;
}

.buy-skin-btn, .select-skin-btn {
    width: 100%;
    padding: 8px;
    font-size: 0.9rem;
}