:root {
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3370FF;
    --primary-bg: #E6F0FF;
    --secondary-color: #00B42A;
    --accent-color: #FF6B00;
    --bg-color: #F5F7FA;
    --bg-gradient: linear-gradient(135deg, #E6F0FF 0%, #F0F5FF 100%);
    --card-bg: rgba(255, 255, 255, 0.85);
    --glass-bg: rgba(255, 255, 255, 0.6);
    --text-color: #1A1A1A;
    --text-light: #4A5568;
    --text-muted: #8E8E8E;
    --border-color: rgba(0, 102, 255, 0.1);
    --border-light: rgba(0, 102, 255, 0.08);
    --success-color: #00B42A;
    --warning-color: #FF9500;
    --error-color: #FF3B30;
    --info-color: #0066FF;
    --shadow-sm: 0 2px 8px rgba(0, 102, 255, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 102, 255, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 102, 255, 0.12);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08);
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --border-radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    background-image: var(--bg-gradient);
    min-height: 100vh;
}

a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.nav-menu { display: flex; list-style: none; gap: 8px; }

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: var(--border-radius-sm);
    position: relative;
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
    background: var(--primary-bg);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 24px;
    border: none;
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-gradient:hover {
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    transform: translateY(-2px);
}

.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* Cards */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-glass);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-body { padding: 24px; }

/* Banner */
.banner {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 50%, #003399 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
}

/* Search Box */
.search-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-full);
    padding: 8px;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 15px;
    outline: none;
    color: white;
}

.search-box input::placeholder { color: rgba(255, 255, 255, 0.7); }

.search-box .btn {
    background: white;
    color: var(--primary-color);
    padding: 12px 28px;
}

/* Section */
.section { padding: 60px 0; }

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

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
}

/* Grid */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Companion Card */
.companion-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.companion-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.companion-cover {
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    position: relative;
}

.companion-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    position: absolute;
    bottom: -40px;
    left: 20px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    overflow: hidden;
}

.companion-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.companion-info { padding: 50px 20px 20px; }

.companion-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.companion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.tag {
    padding: 4px 10px;
    background: var(--primary-bg);
    color: var(--primary-color);
    border-radius: var(--border-radius-full);
    font-size: 12px;
    font-weight: 500;
}

.companion-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    margin-top: 12px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
}

.companion-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--error-color);
}

.companion-price span { font-size: 12px; font-weight: 400; }

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--border-radius-full);
    font-size: 12px;
    font-weight: 500;
}

.badge-primary { background: var(--primary-bg); color: var(--primary-color); }
.badge-success { background: rgba(0, 180, 42, 0.1); color: var(--success-color); }
.badge-warning { background: rgba(255, 149, 0, 0.1); color: var(--warning-color); }
.badge-error { background: rgba(255, 59, 48, 0.1); color: var(--error-color); }

/* Game Category */
.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.game-card:hover, .game-card.active {
    border-color: var(--primary-color);
    background: var(--primary-bg);
}

.game-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.game-name { font-weight: 600; margin-bottom: 4px; }
.game-count { font-size: 12px; color: var(--text-muted); }

/* Form */
.form-container {
    max-width: 480px;
    margin: 60px auto;
    padding: 0 20px;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
}

.form-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-title p { color: var(--text-muted); }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-actions { margin-top: 24px; }

.form-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
}

/* Alert */
.alert {
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(0, 180, 42, 0.1);
    border: 1px solid rgba(0, 180, 42, 0.2);
    color: var(--success-color);
}

.alert-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.2);
    color: var(--error-color);
}

.alert-warning {
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.2);
    color: var(--warning-color);
}

.alert-info {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--info-color);
}

/* Table */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.table th {
    background: var(--primary-bg);
    font-weight: 600;
    color: var(--text-color);
}

.table tbody tr:hover { background: rgba(0, 102, 255, 0.02); }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination a, .pagination span {
    padding: 8px 14px;
    border-radius: var(--border-radius-sm);
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 14px;
    transition: var(--transition);
}

.pagination a:hover, .pagination .active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.announcement-icon {
    background: var(--error-color);
    color: white;
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.announcement-text {
    flex: 1;
    overflow: hidden;
}

.announcement-text a {
    color: var(--text-color);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}

/* Price Table */
.price-table {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.price-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 30px;
    text-align: center;
}

.price-header h3 { font-size: 24px; margin-bottom: 8px; }
.price-value { font-size: 48px; font-weight: 700; }
.price-value span { font-size: 16px; font-weight: 400; }
.price-features { padding: 30px; }
.price-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}
.price-feature:last-child { border-bottom: none; }
.price-feature i { color: var(--success-color); }

/* Footer */
.footer {
    background: var(--text-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand { color: white; }
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.6); }
.footer-links a:hover { color: white; }
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Admin Layout */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
    width: 260px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-light);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
}

.admin-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-nav { padding: 16px 0; }

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.admin-nav-item:hover { background: var(--primary-bg); color: var(--primary-color); }
.admin-nav-item.active { background: var(--primary-bg); color: var(--primary-color); border-right: 3px solid var(--primary-color); }

.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
    background: var(--bg-color);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-title { font-size: 24px; font-weight: 700; color: var(--text-color); }

/* Statistics Cards */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--border-light);
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-card-value { font-size: 28px; font-weight: 700; color: var(--text-color); }
.stat-card-label { font-size: 13px; color: var(--text-muted); }

/* User Center */
.user-layout { display: flex; gap: 30px; padding: 40px 0; }

.user-sidebar {
    width: 240px;
    flex-shrink: 0;
}

.user-sidebar .card { position: sticky; top: 100px; }

.user-menu { list-style: none; }

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-light);
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.user-menu-item:last-child { border-bottom: none; }
.user-menu-item:hover, .user-menu-item.active { background: var(--primary-bg); color: var(--primary-color); }

.user-content { flex: 1; }

/* Wallet Card */
.wallet-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    padding: 30px;
    color: white;
    margin-bottom: 30px;
}

.wallet-balance { font-size: 40px; font-weight: 700; margin-bottom: 8px; }
.wallet-actions { display: flex; gap: 12px; margin-top: 20px; }
.wallet-actions .btn { background: white; color: var(--primary-color); }

/* Filter Bar */
.filter-bar {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--border-light);
}

.filter-item { display: flex; align-items: center; gap: 8px; }
.filter-item label { font-weight: 500; color: var(--text-light); white-space: nowrap; }
.filter-item select, .filter-item input {
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: white;
}

/* Order Card */
.order-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.order-info { display: flex; gap: 30px; }
.order-info-item label { font-size: 12px; color: var(--text-muted); display: block; }
.order-info-item span { font-weight: 600; }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i { font-size: 64px; margin-bottom: 20px; opacity: 0.5; }
.empty-state h3 { margin-bottom: 8px; color: var(--text-light); }

/* Tabs */
.tabs { display: flex; gap: 4px; background: var(--bg-color); padding: 4px; border-radius: var(--border-radius-sm); margin-bottom: 20px; }
.tab { padding: 10px 20px; border-radius: var(--border-radius-sm); font-weight: 500; cursor: pointer; transition: var(--transition); color: var(--text-muted); }
.tab:hover { color: var(--text-color); }
.tab.active { background: white; color: var(--primary-color); box-shadow: var(--shadow-sm); }

/* Messages */
.message-list { list-style: none; }
.message-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}
.message-item:hover { background: rgba(0, 102, 255, 0.02); }
.message-item.unread { border-left: 3px solid var(--primary-color); background: var(--primary-bg); }
.message-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; color: var(--primary-color); }
.message-content { flex: 1; }
.message-title { font-weight: 600; margin-bottom: 4px; display: flex; justify-content: space-between; }
.message-time { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.message-preview { color: var(--text-muted); font-size: 13px; }

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .game-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .game-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-menu { display: none; }
    .user-layout { flex-direction: column; }
    .user-sidebar { width: 100%; }
    .admin-sidebar { width: 80px; }
    .admin-content { margin-left: 80px; }
    .admin-logo span { display: none; }
    .admin-nav-item span { display: none; }
    .statistics-grid { grid-template-columns: repeat(2, 1fr); }
    .banner h1 { font-size: 32px; }
}

@media (max-width: 480px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .game-grid { grid-template-columns: repeat(2, 1fr); }
    .statistics-grid { grid-template-columns: 1fr; }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.5s ease forwards; }

.companion-card, .game-card, .card { opacity: 0; animation: fadeIn 0.5s ease forwards; }
.companion-card:nth-child(1), .game-card:nth-child(1) { animation-delay: 0.1s; }
.companion-card:nth-child(2), .game-card:nth-child(2) { animation-delay: 0.15s; }
.companion-card:nth-child(3), .game-card:nth-child(3) { animation-delay: 0.2s; }
.companion-card:nth-child(4), .game-card:nth-child(4) { animation-delay: 0.25s; }
.companion-card:nth-child(5), .game-card:nth-child(5) { animation-delay: 0.3s; }
.companion-card:nth-child(6), .game-card:nth-child(6) { animation-delay: 0.35s; }
.companion-card:nth-child(7), .game-card:nth-child(7) { animation-delay: 0.4s; }
.companion-card:nth-child(8), .game-card:nth-child(8) { animation-delay: 0.45s; }
