/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 1.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--ivory);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--gold);
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--ivory);
}

/* О компании */
.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--anthracite);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-gray);
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.about-image:hover {
    transform: rotate(2deg);
}

.about-image img {
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Карточки игр */
.game-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover::before {
    opacity: 1;
}

.game-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.game-content {
    padding: 1.5rem;
}

.game-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--anthracite);
}

.game-content p {
    color: var(--medium-gray);
}

.game-platforms {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.platform {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
    color: var(--anthracite);
}

.platform:hover {
    background: var(--gold);
    color: var(--ivory);
}

.game-description {
    display: -webkit-box;
    line-clamp: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em;
}

/* Карточки услуг */
.service-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    height: 200px;
    background: linear-gradient(135deg, var(--anthracite), #333);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gold);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--anthracite);
}

.service-content p {
    color: var(--medium-gray);
}

/* Колонки подвала */
.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    color: var(--anthracite);
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #aaa;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-5px);
    color: var(--ivory);
}

.social-links a i {
    transition: var(--transition);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.social-links a:hover i {
    transform: translate(-50%, -50%);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-5px);
    color: var(--ivory);
}