* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-50: #e6f0ff;
    --blue-100: #b3d1ff;
    --blue-200: #80b3ff;
    --blue-300: #4d94ff;
    --blue-400: #1a75ff;
    --blue-500: #0066e6;
    --blue-600: #0052b3;
    --blue-700: #003d80;
    --blue-800: #00294d;
    --blue-900: #001433;
    --white: #ffffff;
    --gray-100: #f0f4f8;
    --gray-200: #dde4eb;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
    min-height: 100vh;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.last-update-banner {
    width: 100%;
    text-align: center;
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
    color: var(--blue-50);
    background: rgba(0, 20, 60, 0.55);
    border-bottom: 1px solid rgba(255,255,255,0.16);
}

.header-top {
    padding: 1rem 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-top-left {
    flex: 1;
    min-width: 0;
}

.header-top .page-title-inline {
    flex: 0 0 auto;
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.header-top .header-right-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.header-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 0.75rem 2rem 1rem;
    flex-wrap: wrap;
}

.main-content-no-title {
    padding-top: 0.5rem;
}

.header-center {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.header-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    min-width: 200px;
}

.header-right .btn,
.header-right .login-form-toggle.btn {
    width: 100%;
    min-width: 0;
    text-align: center;
    box-sizing: border-box;
}

.header-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    padding: 0.5rem 0;
    color: var(--blue-100);
    font-size: 0.9rem;
}

.header-user-fio {
    font-weight: 600;
    color: var(--white);
}

.header-user-login {
    color: var(--blue-200);
    font-size: 0.85rem;
}

.login-form-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.login-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: linear-gradient(145deg, var(--blue-700), var(--blue-800));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    min-width: 260px;
    z-index: 100;
}

.login-dropdown.is-open {
    display: block;
}

.header-right-wrap {
    position: relative;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-primary {
    background: var(--blue-400);
    color: var(--white);
}

.btn-secondary {
    background: var(--blue-600);
    color: var(--white);
}

.btn-home {
    background: var(--blue-500);
    color: var(--white);
    margin-bottom: 1rem;
}

.main-content {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 2rem 4rem;
    text-align: center;
}

footer.site-footer {
    margin-top: auto;
    background: var(--blue-900);
    border-top: 1px solid rgba(255,255,255,0.12);
    color: var(--blue-100);
    font-size: 0.85rem;
}

.site-footer-inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 1.25rem 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

.site-footer-column {
    min-width: 0;
}

.site-footer-title {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--blue-50);
}

.site-footer-link {
    color: var(--blue-100);
    text-decoration: none;
}

.site-footer-link:hover {
    text-decoration: underline;
}

.site-footer-note {
    margin-top: 0.25rem;
}

.site-footer-bottom {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 4rem 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .site-footer-inner {
        padding-inline: 1.25rem;
    }

    .site-footer-bottom {
        padding-inline: 1.25rem;
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 560px));
    gap: 2rem;
    justify-content: center;
    justify-items: stretch;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .main-content {
        padding: 1.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
        justify-content: center;
    }

    .site-footer-inner {
        padding-inline: 1.5rem;
    }

    .site-footer-bottom {
        padding-inline: 1.5rem;
    }
}

.card {
    background: linear-gradient(145deg, var(--blue-700), var(--blue-800));
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.card-header {
    padding: 1.25rem 1.25rem 0.75rem;
}

.card-header .card-title {
    margin-bottom: 0;
}

.card-media {
    position: relative;
    padding-top: 56.25%;
    background: var(--blue-800);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-media .card-icon-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.card-media .video-placeholder,
.card-media .icon-placeholder,
.game-detail-icon .icon-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-800);
    color: var(--blue-200);
    font-size: 3rem;
}

.game-detail-icon {
    max-width: 220px;
    margin: 0 auto 1.25rem;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background: var(--blue-800);
    border: 1px solid rgba(255,255,255,0.12);
    overflow: hidden;
    position: relative;
}

.game-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-thumbnails {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: var(--blue-800);
    flex-wrap: wrap;
    justify-content: center;
}

.card-thumbnails img,
.card-thumbnails .thumb-placeholder {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--blue-700);
}

.card-thumbnails .thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-200);
    font-size: 1.5rem;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-text {
    font-size: 0.9rem;
    color: var(--blue-100);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-price {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-200);
}

.page-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.main-top-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.main-top-nav .btn {
    min-width: 220px;
    text-align: center;
}

.form-section {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.form-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--blue-200);
}

.register-logs {
    background: #ffffff;
    color: #000000;
    border-radius: 12px;
    padding: 1rem;
    margin: 0 auto 2rem;
    max-width: 1200px;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.12);
}

.register-logs h2 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: #000000;
}

.register-logs-pre {
    background: #ffffff;
    color: #000000;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 260px;
    overflow: auto;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.15);
    font-family: Consolas, 'Courier New', monospace;
    font-size: 0.85rem;
}

.register-code-window {
    background: #ffffff;
    color: #000000;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.15);
    text-align: center;
}

.register-code-window-title {
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #000000;
}

.register-code-window-code {
    font-family: Consolas, 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--blue-100);
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea,
.form-group input[type="file"] {
    width: 100%;
    padding: 0.6rem;
    border-radius: 8px;
    border: 1px solid var(--blue-600);
    background: var(--blue-900);
    color: var(--white);
    font-size: 0.95rem;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group .form-hint {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

.info-block {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.info-block dt {
    font-weight: 600;
    color: var(--blue-200);
    margin-bottom: 0.25rem;
}

.info-block dd {
    margin-bottom: 1rem;
    color: var(--blue-100);
}

.info-block dd:last-child {
    margin-bottom: 0;
}

.game-detail-media {
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--blue-800);
}

.game-detail-media video {
    width: 100%;
    display: block;
}

.game-detail-images {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem 0;
}

.game-detail-images img.gallery-thumb {
    max-width: 200px;
    border-radius: 8px;
    border: 2px solid var(--blue-600);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.game-detail-images img.gallery-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.gallery-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.gallery-fullscreen.gallery-open {
    opacity: 1;
    visibility: visible;
}

.gallery-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 3rem 80px;
}

.gallery-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.gallery-close:hover {
    background: rgba(255,255,255,0.3);
}

.gallery-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.gallery-arrow::after {
    content: '';
    width: 32px;
    height: 32px;
    border-top: 3px solid rgba(255,255,255,0.9);
    border-left: 3px solid rgba(255,255,255,0.9);
}

.gallery-arrow-left {
    left: 0;
}

.gallery-arrow-left::after {
    transform: rotate(-45deg);
    margin-left: 20px;
}

.gallery-arrow-right {
    right: 0;
}

.gallery-arrow-right::after {
    transform: rotate(135deg);
    margin-right: 20px;
}

.gallery-arrow:hover {
    background: rgba(255,255,255,0.08);
}

.gallery-arrow:active {
    background: rgba(255,255,255,0.15);
}

.gallery-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1rem;
    background: rgba(0,0,0,0.5);
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .gallery-content {
        padding: 3rem 56px;
    }

    .gallery-arrow {
        width: 56px;
    }

    .gallery-arrow::after {
        width: 24px;
        height: 24px;
    }

    .gallery-arrow-left::after {
        margin-left: 14px;
    }

    .gallery-arrow-right::after {
        margin-right: 14px;
    }
}

.game-detail-body {
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.game-detail-body .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-200);
    margin: 1rem 0;
}

.empty-state {
    color: var(--blue-200);
    padding: 3rem;
    font-size: 1.1rem;
}

.link-info {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--blue-200);
    text-decoration: none;
    font-weight: 500;
}

.link-info:hover {
    text-decoration: underline;
}

.form-error {
    color: #f88;
    margin-bottom: 1rem;
}

.register-success {
    color: var(--blue-100);
    margin-bottom: 1rem;
}

.captcha-task {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blue-200);
}

.captcha-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.captcha-btn {
    min-width: 4rem;
}

.cabinet-fio {
    margin-bottom: 2rem;
}

.cabinet-section-title {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    color: var(--blue-200);
}

.cabinet-purchases {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.cabinet-purchase-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.cabinet-purchase-card {
    flex: 1;
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.cabinet-purchase-media {
    width: 120px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--blue-800);
}

.cabinet-purchase-media video,
.cabinet-purchase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cabinet-purchase-media .video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--blue-200);
}

.cabinet-purchase-body {
    min-width: 0;
}

.cabinet-purchase-body .card-title {
    margin-bottom: 0.25rem;
}

.cabinet-purchase-body .card-text {
    -webkit-line-clamp: 2;
}

.cabinet-download-wrap {
    flex-shrink: 0;
}

.game-min-requirements {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.game-min-requirements h3 {
    font-size: 1.1rem;
    color: var(--blue-200);
    margin-bottom: 0.5rem;
}

.game-min-requirements p {
    color: var(--blue-100);
    line-height: 1.6;
    font-size: 0.95rem;
}

.game-rating-section {
    max-width: 1400px;
    margin: 2rem auto;
    text-align: left;
}

.game-rating-others-top {
    max-width: 1400px;
    margin: 0 auto 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}

.game-rating-others-top h2 {
    font-size: 1.1rem;
    color: var(--blue-200);
    margin-bottom: 0.5rem;
    text-align: center;
}

.game-rating-section h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--blue-200);
    text-align: center;
}

.rating-avg {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stars-display {
    display: flex;
    gap: 4px;
    align-items: center;
}

.star-img {
    width: 24px;
    height: 24px;
}

.star-img.star-filled {
    filter: none;
}

.star-img.star-empty {
    filter: grayscale(1) brightness(0.6);
    opacity: 0.4;
}

.rating-avg-text {
    font-size: 0.95rem;
    color: var(--blue-100);
}

.rating-none,
.rating-hint {
    color: var(--blue-100);
    font-size: 0.95rem;
    text-align: center;
    opacity: 0.7;
}

.rating-form-wrap {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.rating-form-wrap h3 {
    font-size: 1rem;
    color: var(--blue-100);
    margin-bottom: 0.75rem;
}

.rating-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.rating-stars-input {
    display: flex;
    gap: 6px;
    align-items: center;
}

.star-input {
    width: 32px;
    height: 32px;
    cursor: pointer;
    filter: grayscale(1) brightness(0.6);
    opacity: 0.4;
    transition: filter 0.15s, opacity 0.15s, transform 0.15s;
}

.star-input:hover {
    transform: scale(1.15);
}

.star-input.star-active {
    filter: none;
    opacity: 1;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

.game-reviews-section {
    max-width: 1400px;
    margin: 2rem auto;
    text-align: left;
}

.game-reviews-section h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--blue-200);
    text-align: center;
}

.review-form-wrap {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.review-form-wrap h3 {
    font-size: 1rem;
    color: var(--blue-100);
    margin-bottom: 0.75rem;
}

.review-form .form-group {
    margin-bottom: 0.75rem;
}

.review-form textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.6rem;
    border-radius: 8px;
    border: 1px solid var(--blue-600);
    background: var(--blue-900);
    color: var(--white);
    font-size: 0.95rem;
    resize: vertical;
    font-family: inherit;
}

.reviews-none {
    text-align: center;
    color: var(--blue-100);
    opacity: 0.7;
    font-size: 0.95rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-author {
    font-weight: 600;
    color: var(--blue-200);
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.review-text {
    color: var(--blue-100);
    line-height: 1.5;
    font-size: 0.95rem;
}

.form-group select {
    width: 100%;
    padding: 0.6rem;
    border-radius: 8px;
    border: 1px solid var(--blue-600);
    background: var(--blue-900);
    color: var(--white);
    font-size: 0.95rem;
}

.oauth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0;
    color: var(--blue-200);
    font-size: 0.85rem;
}

.oauth-divider::before,
.oauth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.15);
}

.oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.btn-oauth {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    width: min(100%, 280px);
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    border: 1px solid #d2d9e0;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.btn-oauth:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-oauth svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-oauth span {
    flex: 1;
    text-align: center;
    padding-right: 18px;
}

.btn-oauth-google {
    background: #ffffff;
    color: #3c4043;
    border-color: #dadce0;
}

.btn-oauth-google:hover {
    background: #f7f8f8;
    border-color: #c7ccd1;
}

.btn-oauth-vk {
    background: #ffffff;
    color: #0077ff;
    border-color: #c9d9ee;
}

.btn-oauth-vk:hover {
    background: #f4f9ff;
    border-color: #9dbbe0;
}

.btn-oauth-yandex {
    background: #ffffff;
    color: #fc3f1d;
    border-color: #f0c7be;
}

.btn-oauth-yandex:hover {
    background: #fff6f4;
    border-color: #e9a699;
}

.oauth-section {
    margin-top: 1.25rem;
}

.oauth-section-top {
    margin-bottom: 1.25rem;
}

.login-dropdown .oauth-divider {
    margin: 0.75rem 0;
}

.login-dropdown .btn-oauth {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    min-height: 40px;
    width: 100%;
    max-width: 240px;
}

.login-dropdown .btn-oauth svg {
    width: 18px;
    height: 18px;
}
