@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===========================
   CSS Variables & Reset
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Discord Theme */
    --bg-primary: #1a1b1e;
    --bg-secondary: #25262b;
    --bg-tertiary: #2c2e33;
    --bg-elevated: #36373d;

    /* Accent Colors */
    --accent-primary: #5865f2;
    --accent-hover: #4752c4;
    --accent-active: #3c45a5;
    --accent-success: #3ba55d;
    --accent-warning: #faa61a;
    --accent-danger: #ed4245;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b9bbbe;
    --text-muted: #72767d;
    --text-link: #00b0f4;

    /* Border & Shadow */
    --border-color: #40444b;
    --border-subtle: #2f3136;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.15);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* ===========================
   Base Styles
   =========================== */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1.5;
}

.app-container {
    max-width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* ===========================
   Header Styles
   =========================== */

.header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    min-height: 64px;
    flex-shrink: 0;
}

.header h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.balance {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: default;
}

.balance:hover {
    background: var(--bg-elevated);
    transform: scale(1.02);
}

.balance-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.balance-amount {
    color: var(--accent-warning);
    font-size: 16px;
    font-weight: 700;
}

/* ===========================
   Bottom Navigation
   =========================== */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 12px;
    transition: all var(--transition-normal);
    position: relative;
    max-width: 120px;
}

.nav-item:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.nav-item.active {
    color: var(--accent-primary);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 0 0 2px 2px;
}

.nav-item svg {
    width: 24px;
    height: 24px;
}

.nav-item span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================
   Page System
   =========================== */

.page {
    display: none;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 80px;
}

.page.active {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Blogs Grid
   =========================== */

.blogs-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    animation: fadeIn 0.4s ease;
}

.blog-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-slow);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(88, 101, 242, 0.3);
}

.blog-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: block;
}

.blog-content {
    padding: 16px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.blog-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.blog-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-warning);
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-buy {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 14px;
    white-space: nowrap;
}

.btn-buy:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.btn-buy:active {
    transform: scale(0.98);
    background: var(--accent-active);
}

/* ===========================
   Store Grid
   =========================== */

.store-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    animation: fadeIn 0.4s ease;
}

.store-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
    transition: all var(--transition-slow);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    border-radius: 12px;
}

.store-card:hover::before {
    opacity: 1;
}

.store-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(240, 147, 251, 0.3);
}

.store-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: block;
}

.store-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.store-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    gap: 12px;
}

.store-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-warning);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===========================
   Settings Page
   =========================== */

.settings-container {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.4s ease;
}

.settings-section {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-subtle);
}

.settings-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.api-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.api-option {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-secondary);
}

.api-option:hover {
    background: var(--bg-elevated);
    transform: translateY(-2px);
}

.api-option.active {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(88, 101, 242, 0.1);
}

.api-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.discord-icon {
    color: #5865f2;
}

.api-option span {
    font-weight: 600;
    font-size: 14px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item span:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.info-item span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

.status-online {
    color: var(--accent-success);
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-success);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===========================
   Modal System
   =========================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
    animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--bg-secondary);
    border-radius: 16px;
    max-width: 90%;
    width: 420px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.modal-body {
    padding: 20px;
}

.modal-body img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.modal-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    font-weight: 600;
}

.modal-price span:first-child {
    color: var(--text-secondary);
}

.modal-price span:last-child {
    color: var(--accent-warning);
    font-size: 20px;
    font-weight: 700;
}

.modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.btn-cancel {
    flex: 1;
    padding: 12px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 14px;
}

.btn-cancel:hover {
    background: var(--bg-elevated);
}

.btn-cancel:active {
    transform: scale(0.98);
}

.btn-confirm {
    flex: 1;
    padding: 12px;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 14px;
}

.btn-confirm:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.btn-confirm:active {
    transform: scale(0.98);
    background: var(--accent-active);
}

/* ===========================
   Success Modal
   =========================== */

.modal-content.success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(59, 165, 93, 0.4);
}

@keyframes scaleIn {
    from {
        transform: scale(0) rotate(-180deg);
    }

    to {
        transform: scale(1) rotate(0deg);
    }
}

.modal-content.success h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.modal-content.success p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-primary {
    padding: 12px 32px;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 14px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* ===========================
   Scrollbar Styling
   =========================== */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-color);
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    .blogs-grid {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .store-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px;
    }

    .header {
        padding: 12px 16px;
    }

    .header h1 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .store-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .settings-container {
        padding: 16px;
    }

    .api-selector {
        flex-direction: column;
    }

    .api-option {
        width: 100%;
    }
}

/* ===========================
   Loading State
   =========================== */

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-primary);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===========================
   Utility Classes
   =========================== */

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}/* Импорт шрифта */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Глобальные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'gg sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0d0d0d;
    color: #fff;
    overflow-x: hidden;
}

.store-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    transform: rotate(90deg);
    transform-origin: center center;
}

/* Главная карточка товара */
.featured-card {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    width: 609px;
    height: 916px;
    border-radius: 30px;
    overflow: hidden;
}

.featured-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 35px;
    transform: rotate(-90deg);
}

.featured-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 873px;
    height: 873px;
    border-radius: 50%;
    background: #21232e;
    filter: blur(150px);
}

.featured-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 802px;
    height: 802px;
    object-fit: cover;
}

.featured-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 0%, #000 25.94%);
    transform: rotate(-90deg);
}

.featured-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 10;
}

.official-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0c0c0c;
    border-radius: 25px;
    padding: 12px 24px;
    width: fit-content;
    margin-bottom: 20px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
}

.official-badge span {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.featured-title {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
}

.featured-price {
    display: flex;
    align-items: center;
    gap: 12px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
}

.price-value {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
}

/* Заголовок магазина */
.store-header {
    position: absolute;
    top: 40px;
    left: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.store-header svg {
    width: 78px;
    height: 99px;
    transform: rotate(-90deg);
}

.store-header h2 {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    transform: rotate(-90deg);
}

/* Кнопки управления */
.controls-top {
    position: absolute;
    top: 40px;
    right: 50px;
    display: flex;
    gap: 20px;
}

.control-btn {
    background: #000;
    border: none;
    border-radius: 40px;
    padding: 25px 40px;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.search-btn {
    width: 102px;
    height: 102px;
    border-radius: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Сетка товаров */
.products-grid {
    position: absolute;
    top: 180px;
    right: 50px;
    display: grid;
    grid-template-columns: repeat(2, 302px);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
}

/* Карточка товара */
.product-card {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-card.small {
    height: 434px;
}

.product-card.tall {
    height: 217px;
}

.product-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(94.18% 135.34% at 98.85% 97.02%, #2b2e3a 0%, #000 100%);
    border-radius: 30px;
}

.product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transform: rotate(-90deg);
    transform-origin: left top;
}

.product-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.product-info h3 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
}

.product-price span {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

/* Модальное окно */
.purchase-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.purchase-modal.active {
    display: flex;
}

.modal-content-wrapper {
    background: #000;
    border-radius: 60px;
    width: 916px;
    max-height: 90vh;
    padding: 50px;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.modal-close {
    background: #121212;
    border: none;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #1f1f1f;
    transform: rotate(90deg);
}

.modal-body {
    background: #0e0e0e;
    border-radius: 40px;
    padding: 40px;
}

.tradr-pay-header {
    background: linear-gradient(90deg, #393939 0%, #0e0e0e 100%);
    border-radius: 40px;
    padding: 20px 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tradr-pay-header h3 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.tradr-pay-header span {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.service-badge img {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: rgba(217, 217, 217, 0.1);
    padding: 7px;
}

.service-badge span {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: #272727;
    margin: 30px 0;
}

.modal-blog-select label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.select-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.select-wrapper select {
    width: 100%;
    background: #171717;
    border: none;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    appearance: none;
    cursor: pointer;
}

.select-wrapper svg {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.limitation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.modal-summary {
    padding: 20px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.summary-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.summary-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1.2;
}

.summary-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-price span {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.modal-action {
    text-align: center;
    padding: 30px 0;
}

.modal-action p {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.slide-button {
    width: 66px;
    height: 65px;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slide-button:hover {
    transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .store-container {
        transform: none;
    }

    .featured-card,
    .store-header,
    .controls-top,
    .products-grid {
        position: relative;
        transform: none;
    }
}
/* ===================================
   АДАПТИВНЫЙ ДИЗАЙН МАГАЗИНА ИЗ FIGMA
   Полное соответствие дизайну для всех разрешений
   =================================== */

/* Импорт шрифта gg sans (fallback на Inter) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ===================================
   БАЗОВЫЕ СТИЛИ И ПЕРЕМЕННЫЕ
   =================================== */

:root {
    /* Figma цвета */
    --store-bg: #0d0d0d;
    --store-black: #000;
    --store-card-bg: #21232e;
    --store-badge-bg: #0c0c0c;
    --store-text: #fff;
    --store-text-muted: rgba(255, 255, 255, 0.6);
    --store-text-faded: rgba(255, 255, 255, 0.2);
    --store-orange: #FF9345;
    --store-divider: #272727;
    --store-button-bg: #121212;
    --store-button-hover: #1f1f1f;
    --store-gradient-start: #2b2e3a;
    --store-modal-bg: #0e0e0e;

    /* Размеры из Figma */
    --featured-width: 609px;
    --featured-height: 916px;
    --card-width: 302px;
    --card-height-small: 434px;
    --card-height-tall: 217px;
    --card-large-width: 544px;
    --card-large-height: 444px;

    /* Шрифт */
    --font-main: 'gg sans', 'Inter', -apple-system, sans-serif;
}

/* ===================================
   КОНТЕЙНЕР МАГАЗИНА
   =================================== */

.store-new-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--store-bg);
    overflow-x: hidden;
    overflow-y: auto;
    font-family: var(--font-main);
}

/* ===================================
   ГЛАВНАЯ КАРТОЧКА (FEATURED)
   =================================== */

.featured-card {
    position: absolute;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 5;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.featured-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--store-black);
    border-radius: 30px;
    z-index: 1;
}

.featured-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 873px;
    height: 873px;
    border-radius: 50%;
    background: var(--store-card-bg);
    filter: blur(150px);
    z-index: 2;
}

.featured-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    z-index: 3;
}

.featured-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--store-black) 0%, transparent 40%);
    z-index: 4;
}

.featured-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 10;
}

.official-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--store-badge-bg);
    border-radius: 25px;
    padding: 12px 24px;
    margin-bottom: 20px;
}

.official-badge svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.official-badge span {
    font-size: 24px;
    font-weight: 600;
    color: var(--store-text);
    white-space: nowrap;
}

.featured-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--store-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.featured-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-value {
    font-size: 48px;
    font-weight: 600;
    color: var(--store-text);
}

.featured-price svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* ===================================
   ЗАГОЛОВОК И НАВИГАЦИЯ
   =================================== */

.store-header-new {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.store-header-new svg {
    width: 78px;
    height: 99px;
}

.store-header-new h2 {
    font-size: 48px;
    font-weight: 600;
    color: var(--store-text);
    margin: 0;
}

.balance-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.balance-icon {
    font-size: 28px;
}

.balance-amount {
    font-size: 32px;
    font-weight: 600;
    color: var(--store-text);
}

/* ===================================
   КНОПКИ УПРАВЛЕНИЯ
   =================================== */

.controls-top {
    position: absolute;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.control-btn {
    background: var(--store-black);
    border: none;
    border-radius: 40px;
    padding: 25px 40px;
    color: var(--store-text);
    font-size: 32px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.control-btn:hover {
    background: var(--store-button-hover);
    transform: scale(1.02);
}

.control-btn:active {
    transform: scale(0.98);
}

.search-btn {
    width: 102px;
    height: 102px;
    padding: 0;
    justify-content: center;
}

.search-btn svg {
    width: 32px;
    height: 32px;
}

.control-btn svg {
    flex-shrink: 0;
}

/* ===================================
   СЕТКА ТОВАРОВ
   =================================== */

.products-grid {
    position: absolute;
    display: grid;
    gap: 30px;
    z-index: 5;
}

/* ===================================
   КАРТОЧКИ ТОВАРОВ
   =================================== */

.product-card {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.product-card:active {
    transform: scale(0.98);
}

.product-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(94.18% 135.34% at 98.85% 97.02%, var(--store-gradient-start) 0%, var(--store-black) 100%);
    border-radius: 30px;
    z-index: 1;
}

.product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    z-index: 2;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--store-text);
    z-index: 10;
    white-space: nowrap;
}

.product-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
}

.product-info h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--store-text);
    margin-bottom: 12px;
    line-height: 1.1;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price span {
    font-size: 32px;
    font-weight: 600;
    color: var(--store-text);
}

.product-price svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.product-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--store-text-muted);
    margin-top: 8px;
}

/* ===================================
   МОДАЛЬНОЕ ОКНО (НОВЫЙ ДИЗАЙН)
   =================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content-new {
    background: var(--store-black);
    border-radius: 60px;
    width: 90%;
    max-width: 916px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.modal-header-new svg {
    width: 42px;
    height: 53px;
}

.modal-close {
    background: var(--store-button-bg);
    border: none;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.modal-close:hover {
    background: var(--store-button-hover);
    transform: rotate(90deg) scale(1.1);
}

.modal-close svg {
    width: 23px;
    height: 23px;
}

.modal-body-new {
    background: var(--store-modal-bg);
    border-radius: 40px;
    padding: 40px;
}

.tradr-pay-header {
    background: linear-gradient(90deg, #393939 0%, var(--store-modal-bg) 100%);
    border-radius: 40px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tradr-pay-header h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--store-text);
    margin: 0;
}

.tradr-pay-header span {
    font-size: 24px;
    font-weight: 600;
    color: var(--store-text);
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.service-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: rgba(217, 217, 217, 0.1);
    padding: 7px;
    overflow: hidden;
}

.service-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-badge span {
    font-size: 16px;
    font-weight: 400;
    color: var(--store-text-muted);
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: var(--store-divider);
    margin: 30px 0;
}

.modal-blog-select label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--store-text);
    margin-bottom: 15px;
}

.select-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.select-wrapper select {
    width: 100%;
    background: #171717;
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 16px 50px 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--store-text);
    font-family: var(--font-main);
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-wrapper select:hover {
    border-color: var(--store-orange);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--store-orange);
    box-shadow: 0 0 0 3px rgba(255, 147, 69, 0.1);
}

.select-wrapper svg {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 17px;
    height: 9px;
}

.limitation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--store-text);
}

.modal-summary {
    padding: 20px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.summary-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--store-text);
    margin-bottom: 8px;
}

.summary-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--store-text-faded);
    line-height: 1.3;
}

.summary-price {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.summary-price span {
    font-size: 40px;
    font-weight: 600;
    color: var(--store-text);
}

.summary-price svg {
    width: 22px;
    height: 22px;
}

.modal-action {
    text-align: center;
    padding: 32px 0 0;
}

.modal-action p {
    font-size: 24px;
    font-weight: 600;
    color: var(--store-text);
    margin-bottom: 24px;
}

.slide-button {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    display: inline-block;
}

.slide-button:hover {
    transform: scale(1.08);
}

.slide-button:active {
    transform: scale(0.95);
}

.slide-button svg {
    width: 66px;
    height: 65px;
    display: block;
}

/* ===================================
   АДАПТИВНОСТЬ ДЛЯ РАЗНЫХ РАЗРЕШЕНИЙ
   =================================== */

/* Discord Activity стандартный (1280x720) */
@media (min-width: 1200px) and (min-height: 600px) {
    .featured-card {
        top: 50%;
        left: 50px;
        transform: translateY(-50%);
        width: var(--featured-width);
        height: var(--featured-height);
    }

    .store-header-new {
        top: 40px;
        left: 700px;
    }

    .controls-top {
        top: 40px;
        right: 50px;
        flex-direction: row;
    }

    .products-grid {
        top: 200px;
        right: 50px;
        grid-template-columns: repeat(2, var(--card-width));
        grid-template-rows: repeat(2, auto);
    }

    .product-card.small {
        height: var(--card-height-small);
    }

    .product-card.tall {
        height: var(--card-height-tall);
    }

    .product-card.large {
        width: var(--card-large-width);
        height: var(--card-large-height);
    }
}

/* Планшет (768px - 1200px) ГОРИЗОНТАЛЬНЫЙ */
@media (min-width: 768px) and (max-width: 1199px) and (orientation: landscape) {
    .featured-card {
        top: 50%;
        left: 30px;
        transform: translateY(-50%);
        width: 480px;
        height: 720px;
    }

    .featured-title {
        font-size: 36px;
    }

    .featured-price .price-value {
        font-size: 36px;
    }

    .store-header-new {
        top: 30px;
        left: 540px;
    }

    .store-header-new h2 {
        font-size: 36px;
    }

    .controls-top {
        top: 30px;
        right: 30px;
        flex-direction: row;
    }

    .control-btn {
        font-size: 24px;
        padding: 18px 30px;
    }

    .search-btn {
        width: 80px;
        height: 80px;
    }

    .products-grid {
        top: 150px;
        right: 30px;
        grid-template-columns: repeat(2, 240px);
        gap: 20px;
    }

    .product-card.small {
        height: 340px;
    }

    .product-card.tall {
        height: 180px;
    }

    .product-info h3 {
        font-size: 24px;
    }

    .product-price span {
        font-size: 24px;
    }
}

/* Планшет ВЕРТИКАЛЬНЫЙ (600px - 1024px) */
@media (min-width: 600px) and (max-width: 1024px) and (orientation: portrait) {
    .store-new-container {
        padding: 20px;
    }

    .featured-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 500px;
        height: 600px;
        margin: 0 auto 30px;
    }

    .featured-title {
        font-size: 32px;
    }

    .store-header-new {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
    }

    .store-header-new h2 {
        font-size: 36px;
    }

    .controls-top {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .control-btn {
        font-size: 20px;
        padding: 16px 28px;
    }

    .products-grid {
        position: relative;
        top: auto;
        right: auto;
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
        gap: 20px;
    }

    .product-card.small,
    .product-card.tall {
        height: 300px;
    }

    .product-info h3 {
        font-size: 22px;
    }
}

/* Мобильный (до 600px) */
@media (max-width: 599px) {
    .store-new-container {
        padding: 16px;
    }

    .featured-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: 500px;
        margin-bottom: 24px;
    }

    .featured-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .official-badge {
        padding: 8px 16px;
        gap: 8px;
    }

    .official-badge span {
        font-size: 16px;
    }

    .official-badge svg {
        width: 24px;
        height: 24px;
    }

    .featured-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .featured-price .price-value {
        font-size: 32px;
    }

    .featured-price svg {
        width: 24px;
        height: 24px;
    }

    .store-header-new {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
    }

    .store-header-new svg {
        width: 60px;
        height: 76px;
    }

    .store-header-new h2 {
        font-size: 32px;
    }

    .balance-display {
        font-size: 20px;
    }

    .controls-top {
        position: relative;
        top: auto;
        right: auto;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 24px;
        gap: 12px;
    }

    .control-btn {
        font-size: 18px;
        padding: 12px 20px;
        border-radius: 30px;
    }

    .search-btn {
        width: 60px;
        height: 60px;
    }

    .search-btn svg {
        width: 24px;
        height: 24px;
    }

    .products-grid {
        position: relative;
        top: auto;
        right: auto;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card.small,
    .product-card.tall {
        height: 280px;
    }

    .product-badge {
        top: 12px;
        left: 12px;
        padding: 6px 12px;
        font-size: 14px;
    }

    .product-info {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .product-info h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .product-price span {
        font-size: 24px;
    }

    .product-price svg {
        width: 20px;
        height: 20px;
    }

    /* Модальное окно на мобильном */
    .modal-content-new {
        padding: 30px 20px;
        border-radius: 40px;
        width: 95%;
    }

    .modal-header-new {
        margin-bottom: 24px;
    }

    .modal-header-new svg {
        width: 32px;
        height: 40px;
    }

    .modal-close {
        width: 40px;
        height: 40px;
    }

    .modal-close svg {
        width: 18px;
        height: 18px;
    }

    .modal-body-new {
        padding: 24px 16px;
        border-radius: 30px;
    }

    .tradr-pay-header {
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .tradr-pay-header h3 {
        font-size: 24px;
    }

    .tradr-pay-header span {
        font-size: 18px;
    }

    .summary-row {
        flex-direction: column;
        gap: 16px;
    }

    .summary-title {
        font-size: 20px;
    }

    .summary-subtitle {
        font-size: 14px;
    }

    .summary-price span {
        font-size: 32px;
    }

    .modal-action p {
        font-size: 18px;
    }

    .slide-button svg {
        width: 50px;
        height: 50px;
    }
}

/* Очень маленькие экраны (до 360px) */
@media (max-width: 359px) {
    .featured-card {
        height: 400px;
    }

    .featured-title {
        font-size: 24px;
    }

    .store-header-new h2 {
        font-size: 28px;
    }

    .control-btn {
        font-size: 16px;
        padding: 10px 16px;
    }

    .product-card.small,
    .product-card.tall {
        height: 240px;
    }

    .product-info h3 {
        font-size: 18px;
    }
}

/* Скрытие горизонтального скролла */
body:has(.store-new-container) {
    overflow-x: hidden;
}

/* Плавная прокрутка */
.store-new-container {
    scroll-behavior: smooth;
}

/* Оптимизация для производительности */
.featured-card,
.product-card,
.control-btn,
.slide-button {
    will-change: transform;
}

/* Печать */
@media print {

    .controls-top,
    .modal {
        display: none !important;
    }
}

/* ?????????????? ?????????? ????????????? ??? SVG ?????? */
.store-header-new svg, .controls-top svg {
    transform: none !important;
}

/* ????? ??? ?????? ???????? */
.link-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #0d0d0d; z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; color: #e0e3ff; font-family: 'gg sans', sans-serif; } .link-card { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 100%; max-width: 400px; } .link-top-logo { margin-bottom: 40px; } .link-logo { margin-bottom: 30px; } .link-card h1 { font-size: 24px; font-weight: 600; color: #e0e3ff; margin-bottom: 40px; line-height: 1.4; width: 100%; } .link-btn { width: 100%; padding: 18px; background-color: #5865f2; color: #e0e3ff; border: none; border-radius: 30px; font-size: 18px; font-weight: 600; cursor: pointer; transition: background-color 0.2s; } .link-btn:hover { background-color: #4752c4; }
