@font-face {
    font-family: 'Geogrotesque';
    src: url('../fonts/GeogrotesqueCyr-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Geogrotesque';
    src: url('../fonts/GeogrotesqueCyr-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Geogrotesque';
    src: url('../fonts/GeogrotesqueCyr-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: default !important;
}

input[type="text"], textarea {
    cursor: text !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

body {
    font-family: 'Geogrotesque', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px),
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.015) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.012) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    filter: blur(0.5px);
}

*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* CS2 Navigation */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 179, 71, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffb347;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.nav-buttons {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Geogrotesque', sans-serif;
    letter-spacing: 0.08em;
    position: relative;
    transition: color 0.2s ease;
}

.nav-btn:hover {
    color: #fff;
}

.nav-btn.active {
    color: #ffb347;
}

.nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffb347;
}

/* Page System */
#page-container {
    margin-top: 70px;
    position: relative;
    min-height: calc(100vh - 70px);
    overflow: hidden;
}

#page-container::-webkit-scrollbar,
.page-content::-webkit-scrollbar {
    display: none;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: calc(100vh - 70px);
    opacity: 0;
    transform: scale(1.3);
    pointer-events: none;
    transition: none;
}

.page.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.2s ease-out, transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: auto;
    position: relative;
}

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.95) 100%);
    border-bottom: 1px solid rgba(255, 179, 71, 0.2);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 179, 71, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: #ffb347;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 179, 71, 0.5);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

.tournament-leader {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 179, 71, 0.05);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 4px;
    display: inline-block;
    min-width: 400px;
}

.tournament-leader h3 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.leader-team {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffb347;
    margin-bottom: 0.5rem;
}

.leader-stats {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    text-align: center;
}

/* Tables */
.table-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.players-table {
    width: 100%;
    border-collapse: collapse;
}

.players-table thead {
    background: rgba(255, 179, 71, 0.1);
}

.players-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    color: #ffb347;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255, 179, 71, 0.2);
}

.players-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.players-table tbody tr {
    transition: background 0.2s ease;
}

.players-table tbody tr:hover {
    background: rgba(255, 179, 71, 0.05);
}

/* Accordion */
.days-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.day-title {
    padding: 1.5rem 2rem;
    background: rgba(255, 179, 71, 0.05);
    color: #ffb347;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s ease;
}

.day-title:hover {
    background: rgba(255, 179, 71, 0.1);
}

.day-title::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.day-title.active::after {
    transform: rotate(180deg);
}

.matches-container {
    display: none;
    padding: 2rem;
}

.matches-container.active {
    display: block;
}

.match-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.match-row:hover {
    background: rgba(255, 179, 71, 0.05);
    border-color: rgba(255, 179, 71, 0.3);
}

.match-team {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.match-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffb347;
}

.match-map {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Betting */
.bet-section {
    background: rgba(255, 179, 71, 0.03);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 4px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.bet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 179, 71, 0.2);
}

.bet-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffb347;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bet-pool {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.bet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bet-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
}

.bet-team {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffb347;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.bet-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.bet-btn,
.bet-clear {
    background: #ffb347;
    border: none;
    color: #000;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    font-family: 'Geogrotesque', sans-serif;
    letter-spacing: 0.08em;
    transition: all 0.2s ease;
    width: 100%;
}

.bet-btn:hover,
.bet-clear:hover {
    background: #ffc870;
    transform: translateY(-2px);
}

.bet-clear {
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

/* Inventory */
.collection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffb347;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 179, 71, 0.2);
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    padding: 1rem;
}

.inventory-item {
    position: relative;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid #3a3a3a;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    user-select: none;
}

.inventory-item:hover {
    background: rgba(40, 40, 40, 0.9);
    border-color: #4a4a4a;
}

.inventory-item.active::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 10;
}

.inventory-item.active::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 9;
}

.item-box {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.item-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.item-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-info {
    text-align: center;
    width: 100%;
}

.item-rarity {
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.item-rarity.rarity-rare {
    color: #4b69ff;
}

.item-rarity.rarity-standard {
    color: #888;
}

.item-name {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
}

.item-status {
    display: none;
}

/* Item Tooltip */
.item-tooltip {
    position: fixed;
    background: rgba(20, 20, 20, 0.98);
    border: 2px solid #3a3a3a;
    padding: 1.5rem;
    min-width: 300px;
    max-width: 350px;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.inventory-item:hover .item-tooltip {
    opacity: 1;
    transition-delay: 0.5s;
}

.tooltip-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #3a3a3a;
}

.tooltip-rarity {
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tooltip-rarity.rarity-rare {
    color: #4b69ff;
}

.tooltip-rarity.rarity-standard {
    color: #888;
}

.tooltip-class {
    color: #ffb347;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tooltip-name {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tooltip-description {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.tooltip-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #3a3a3a;
}

.tooltip-detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.tooltip-detail-label {
    color: #888;
}

.tooltip-detail-value {
    color: #fff;
    font-weight: 600;
}

.tooltip-detail-value.rarity-rare {
    color: #4b69ff;
}

.tooltip-detail-value.rarity-standard {
    color: #888;
}

.tooltip-status {
    color: #ffb347;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    background: rgba(255, 179, 71, 0.1);
    border: 1px solid rgba(255, 179, 71, 0.3);
    text-align: center;
    margin-top: 1rem;
}

.tooltip-status.equipped {
    display: block;
}

.tooltip-status.not-equipped {
    display: none;
}

.tooltip-action {
    color: #888;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Context Menu */
.cs2-context-menu {
    position: fixed;
    background: rgba(30, 30, 30, 0.98);
    border: 2px solid #3a3a3a;
    min-width: 250px;
    z-index: 99999;
    padding: 0.5rem 0;
}

.cs2-context-item {
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs2-context-item:hover {
    background: rgba(255, 179, 71, 0.1);
    color: #ffb347;
}

/* Inspect Mode */
.inspect-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.inspect-overlay.active {
    opacity: 1;
}

.inspect-container {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inspect-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(255, 179, 71, 0.3));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.inspect-info {
    position: absolute;
    bottom: 5%;
    left: 5%;
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid #3a3a3a;
    padding: 2rem;
    min-width: 350px;
}

.inspect-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.inspect-class {
    color: #ffb347;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.inspect-rarity {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.inspect-rarity.rarity-rare {
    color: #4b69ff;
}

.inspect-rarity.rarity-standard {
    color: #888;
}

.inspect-close {
    position: absolute;
    top: 3%;
    right: 3%;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: color 0.2s ease;
}

.inspect-close:hover {
    color: #fff;
}

.inspect-hint {
    position: absolute;
    bottom: 3%;
    right: 3%;
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Schedule */
.schedule-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.schedule-day {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 4px;
    padding: 1.5rem;
}

.schedule-day-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffb347;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.schedule-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.schedule-team {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.schedule-vs {
    font-size: 1rem;
    font-weight: 700;
    color: #ffb347;
    padding: 0.5rem 1rem;
    background: rgba(255, 179, 71, 0.1);
    border-radius: 2px;
}

/* Battle Pass */
.bp-header {
    background: rgba(255, 179, 71, 0.05);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.bp-quest-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(100,100,100,0.15) 2px, rgba(100,100,100,0.15) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(100,100,100,0.15) 2px, rgba(100,100,100,0.15) 4px),
        radial-gradient(circle at 50% 50%, rgba(80,80,80,0.2) 0%, transparent 70%),
        rgba(20, 20, 20, 0.85);
    border: 2px solid rgba(255, 179, 71, 0.3);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.bp-quest-btn:hover {
    border-color: rgba(255, 179, 71, 0.5);
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(100,100,100,0.15) 2px, rgba(100,100,100,0.15) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(100,100,100,0.15) 2px, rgba(100,100,100,0.15) 4px),
        radial-gradient(circle at 50% 50%, rgba(80,80,80,0.2) 0%, transparent 70%),
        rgba(30, 30, 30, 0.9);
}

.quest-icon {
    width: 32px;
    height: 32px;
}

.bp-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffb347;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bp-level {
    max-width: 600px;
    margin: 0 auto;
}

.bp-level-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-align: center;
}

.bp-xp {
    margin-bottom: 0.5rem;
}

.bp-xp-bar {
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #3a3a3a;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.bp-xp-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffb347 0%, #ff8c00 100%);
    transition: width 0.5s ease;
    width: 0%;
}

.bp-xp-text {
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.bp-rewards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.bp-quests {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: -420px;
    padding-bottom: 4rem;
    transform: translateY(100vh);
    transition: transform 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.bp-quests.active {
    transform: translateY(0);
}

.quest-item {
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(100,100,100,0.1) 2px, rgba(100,100,100,0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(100,100,100,0.1) 2px, rgba(100,100,100,0.1) 4px),
        rgba(15, 20, 35, 0.9);
    border: 2px solid rgba(255, 179, 71, 0.3);
    border-radius: 4px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quest-item.completed {
    border-color: #4CAF50;
    opacity: 0.7;
}

.quest-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quest-progress {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffb347;
}

.quest-reward {
    font-size: 1rem;
    font-weight: 600;
    color: #4CAF50;
}

.bp-reward {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid #3a3a3a;
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.bp-reward:hover {
    border-color: #4a4a4a;
    background: rgba(255, 255, 255, 0.04);
    z-index: 100000;
}

.bp-reward-level {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bp-reward-item {
    padding: 2rem 1rem;
    border-radius: 4px;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(100,100,100,0.15) 2px, rgba(100,100,100,0.15) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(100,100,100,0.15) 2px, rgba(100,100,100,0.15) 4px),
        radial-gradient(circle at 30% 30%, rgba(80,80,80,0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(60,60,60,0.15) 0%, transparent 60%),
        rgba(20, 20, 20, 0.85);
}

.bp-reward-item.unlocked {
    border: 2px solid #ffb347;
    background: rgba(255, 179, 71, 0.05);
}

.bp-reward-item.unlocked {
    filter: drop-shadow(0 8px 30px rgba(255, 179, 71, 0.25)) drop-shadow(0 0 15px rgba(255, 179, 71, 0.15));
    animation: shadowWave 2s ease-in-out infinite;
}

@keyframes shadowWave {
    0% {
        filter: drop-shadow(0 8px 30px rgba(255, 179, 71, 0.25)) drop-shadow(0 0 15px rgba(255, 179, 71, 0.15));
    }
    50% {
        filter: drop-shadow(0 -8px 30px rgba(255, 179, 71, 0.4)) drop-shadow(0 0 20px rgba(255, 179, 71, 0.3));
    }
    100% {
        filter: drop-shadow(0 8px 30px rgba(255, 179, 71, 0.25)) drop-shadow(0 0 15px rgba(255, 179, 71, 0.15));
    }
}

.bp-reward-item.locked {
    border: 2px solid #3a3a3a;
    opacity: 0.5;
}

.bp-reward-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bp-reward-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.bp-reward-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.bp-reward-name span {
    display: inline-block;
    animation: scrollText 4s ease-in-out 1s infinite;
}

@keyframes scrollText {
    0%, 20% {
        transform: translateX(0);
    }
    45%, 55% {
        transform: translateX(calc(-100% + 180px));
    }
    80%, 100% {
        transform: translateX(0);
    }
}

.bp-reward-item.unlocked .bp-reward-name {
    color: #ffb347;
}

.bp-reward-tooltip {
    position: absolute;
    left: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(100,100,100,0.1) 2px, rgba(100,100,100,0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(100,100,100,0.1) 2px, rgba(100,100,100,0.1) 4px),
        rgba(20, 20, 20, 0.98);
    border: 2px solid #3a3a3a;
    padding: 1.5rem;
    min-width: 300px;
    max-width: 350px;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0s 0.2s;
}

.bp-reward-item:hover .bp-reward-tooltip {
    visibility: visible;
    transition-delay: 0.5s, 0s;
}

.bp-reward-item:hover .bp-reward-tooltip {
    opacity: 1;
    transition-delay: 0.5s;
}

.bp-rewards.quests-active .bp-reward-tooltip {
    display: none !important;
}

.bp-tooltip-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #3a3a3a;
}

.bp-tooltip-class {
    color: #ffb347;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bp-tooltip-name {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}

.bp-tooltip-description {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: left;
}

.bp-tooltip-status {
    color: #ffb347;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    background: rgba(255, 179, 71, 0.1);
    border: 1px solid rgba(255, 179, 71, 0.3);
    text-align: center;
}

.bp-tooltip-status.locked {
    color: #888;
    background: rgba(100, 100, 100, 0.1);
    border-color: rgba(100, 100, 100, 0.3);
}

/* Seasons */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.season-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 4px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.season-card:hover {
    background: rgba(255, 179, 71, 0.05);
    border-color: rgba(255, 179, 71, 0.4);
}

.season-card.active {
    border-color: #ffb347;
    background: rgba(255, 179, 71, 0.1);
}

.season-card.winter.active {
    border-color: #4db8ff;
    background: rgba(77, 184, 255, 0.1);
}

.season-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.season-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffb347;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.season-status {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Settings */
.settings-container {
    max-width: 800px;
    margin: 0 auto;
}

.settings-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.settings-label {
    display: block;
    color: #ffb347;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.settings-control {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cs2-slider {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.cs2-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #ffb347;
    border-radius: 50%;
    cursor: pointer;
}

.cs2-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ffb347;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.volume-input {
    width: 80px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 179, 71, 0.2);
    color: #fff;
    padding: 0.5rem;
    border-radius: 2px;
    font-family: 'Geogrotesque', sans-serif;
    font-size: 1rem;
    text-align: center;
}

/* Tab Panel */
.tab-panel {
    position: fixed;
    z-index: 99999;
    min-width: 600px;
    max-width: 900px;
    min-height: 340px;
    max-height: 90vh;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(255, 179, 71, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    border-radius: 4px;
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tab-panel .tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: rgba(255, 179, 71, 0.05);
    border-bottom: 1px solid rgba(255, 179, 71, 0.2);
}

.tab-panel .tab-title {
    font-weight: 700;
    color: #ffb347;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tab-panel .tab-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.tab-panel .tab-close:hover {
    color: #fff;
}

.tab-panel .tab-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-panel .tab-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffb347;
}

.tab-panel .tab-timer {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.tab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 2rem;
    overflow: auto;
}

.tab-team {
    padding: 0 1rem;
}

.tab-team:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-team-title {
    font-weight: 700;
    color: #ffb347;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tab-players {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tab-player {
    display: grid;
    grid-template-columns: 50px 1fr 60px 50px 50px 70px;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2px;
}

.tab-avatar {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid rgba(255, 179, 71, 0.3);
}

.tab-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.tab-stats {
    display: contents;
}

.tab-stats span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-align: center;
}

.music-unlock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-unlock-overlay.active {
    opacity: 1;
}

.music-unlock-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: unlockAppear 0.5s ease-out;
}

.music-unlock-status {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes unlockAppear {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.music-unlock-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.3) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
}

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

.music-unlock-image {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(255, 179, 71, 0.5);
    position: relative;
    z-index: 2;
}

.music-unlock-info {
    margin-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.music-unlock-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffb347;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.music-unlock-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .nav-buttons { gap: 0; }
    .nav-btn { padding: 1.5rem 1.2rem; font-size: 0.85rem; }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 1rem; }
    .nav-buttons { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .page-content { padding: 2rem 1rem; }
    .bet-grid,
    .inventory-grid,
    .seasons-grid { grid-template-columns: 1fr; }
    .tab-panel { min-width: 95vw; }
    .tab-content { grid-template-columns: 1fr; }
    .tab-team:first-child { border-right: none; }
}
