:root {
    /* RGB Shift Color Palette */
    --void-black: #030303;
    --carbon-fiber: #0F0F0F;
    --toxic-lime: #CCFF00;
    --cyan: #00F0FF;
    --chrome-gradient: linear-gradient(135deg, #eee, #999, #fff, #333);

    /* Typography */
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--void-black);
    color: #fff;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-crosshair {
    position: relative;
    width: 100%;
    height: 100%;
}

.cursor-crosshair::before,
.cursor-crosshair::after {
    content: '';
    position: absolute;
    background: var(--toxic-lime);
}

.cursor-crosshair::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.cursor-crosshair::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

/* Warp Background */
.warp-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#warpCanvas {
    width: 100%;
    height: 100%;
}

/* Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(204, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Scanlines */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 100vh;
    background: var(--carbon-fiber);
    border-right: 2px solid rgba(204, 255, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-lg) 0;
    z-index: 100;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.nav-logo {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--toxic-lime);
    display: block;
    letter-spacing: 2px;
}

.logo-suffix {
    font-size: 0.8rem;
    color: var(--cyan);
    font-weight: 600;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    flex: 1;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: #666;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: var(--spacing-sm);
    position: relative;
}

.nav-link i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--toxic-lime);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--toxic-lime);
    box-shadow: 0 0 10px var(--toxic-lime);
}

.user-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
}

.user-name {
    font-size: 0.6rem;
    color: #666;
    letter-spacing: 1px;
}

/* Hexagon Avatar */
.hexagon {
    position: relative;
    width: 50px;
    height: 50px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Squad Dock */
.squad-dock {
    position: fixed;
    right: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--carbon-fiber);
    border-left: 2px solid rgba(0, 240, 255, 0.2);
    padding: var(--spacing-lg);
    z-index: 100;
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
}

.dock-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--cyan);
    letter-spacing: 3px;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.squad-members {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.squad-member {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s;
}

.squad-member:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--cyan);
}

.member-avatar {
    position: relative;
}

.voice-visualizer {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.voice-visualizer.active {
    border-color: var(--toxic-lime);
    animation: voicePulse 1s ease-in-out infinite;
}

@keyframes voicePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.voice-visualizer .wave {
    position: absolute;
    width: 2px;
    background: var(--toxic-lime);
    bottom: 50%;
    animation: waveAnimation 0.5s ease-in-out infinite;
}

.voice-visualizer .wave:nth-child(1) {
    left: 30%;
    height: 10px;
}

.voice-visualizer .wave:nth-child(2) {
    left: 50%;
    height: 15px;
    animation-delay: 0.1s;
}

.voice-visualizer .wave:nth-child(3) {
    left: 70%;
    height: 12px;
    animation-delay: 0.2s;
}

@keyframes waveAnimation {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.5);
    }
}

.member-info {
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.member-status {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.member-status.online {
    color: var(--toxic-lime);
}

.member-status.away {
    color: #ff9900;
}

/* Glitch Button */
.glitch-btn {
    background: transparent;
    border: 2px solid var(--toxic-lime);
    color: var(--toxic-lime);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s;
}

.glitch-btn:hover {
    background: var(--toxic-lime);
    color: var(--void-black);
    box-shadow: 0 0 20px var(--toxic-lime);
    animation: glitchShake 0.3s;
}

@keyframes glitchShake {

    0%,
    100% {
        transform: translate(0);
    }

    25% {
        transform: translate(-2px, 2px);
    }

    50% {
        transform: translate(2px, -2px);
    }

    75% {
        transform: translate(-2px, -2px);
    }
}

.btn-assemble {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

/* Main Content */
.main-content {
    margin-left: 80px;
    margin-right: 280px;
    padding: var(--spacing-xl);
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: var(--spacing-md);
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--cyan);
    margin-bottom: var(--spacing-xl);
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch-text:hover::before {
    color: #ff0000;
    animation: glitchTop 0.3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    opacity: 0.8;
}

.glitch-text:hover::after {
    color: #00ffff;
    animation: glitchBottom 0.3s infinite;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    opacity: 0.8;
}

@keyframes glitchTop {

    0%,
    100% {
        transform: translate(0);
    }

    33% {
        transform: translate(-2px, 2px);
    }

    66% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitchBottom {

    0%,
    100% {
        transform: translate(0);
    }

    33% {
        transform: translate(2px, -2px);
    }

    66% {
        transform: translate(-2px, 2px);
    }
}

/* Chrome Pass Card */
.chrome-pass-container {
    margin: var(--spacing-xl) 0;
    perspective: 1000px;
}

.chrome-pass {
    width: 400px;
    height: 250px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, #eee, #999, #fff, #333);
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(204, 255, 0, 0.3);
}

.chrome-pass:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

.pass-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    border-radius: 20px;
    pointer-events: none;
}

.pass-content {
    position: relative;
    padding: var(--spacing-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--void-black);
}

.pass-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.pass-type {
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

.pass-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.pass-price {
    font-size: 2rem;
    font-weight: 900;
    text-align: right;
}

.btn-primary {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Tournaments Section */
.tournaments-section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--cyan);
    font-weight: 600;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: livePulse 1s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Tournament Bracket */
.tournament-bracket {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.bracket-round {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.round-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--cyan);
    text-align: center;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(0, 240, 255, 0.3);
}

.bracket-matches {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.match-card {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    position: relative;
    transition: all 0.3s;
}

.match-card:hover {
    border-color: var(--toxic-lime);
    transform: translateX(5px);
}

.match-card.live {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.team {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
}

.team-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.match-card:hover .team-logo {
    filter: grayscale(0%);
}

.team-logo.grayscale {
    filter: grayscale(100%);
    opacity: 0.3;
}

.team-name {
    flex: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

.team-score {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--toxic-lime);
}

.match-vs {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    padding: var(--spacing-xs) 0;
}

.match-status {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: #ff0000;
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: livePulse 1s ease-in-out infinite;
}

.trophy-icon {
    text-align: center;
    font-size: 3rem;
    color: var(--toxic-lime);
    padding: var(--spacing-lg);
}

/* Insights Section */
.insights-section {
    padding: var(--spacing-xl) 0;
}

.section-subtitle {
    color: #666;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.stat-card {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(0, 240, 255, 0.2);
    padding: var(--spacing-lg);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.stat-radar {
    width: 100%;
    height: 300px;
    margin-bottom: var(--spacing-md);
}

.stat-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.stat-item {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(204, 255, 0, 0.2);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: var(--toxic-lime);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(204, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--toxic-lime);
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--toxic-lime);
}

/* Leaderboard */
.leaderboard-section {
    padding: var(--spacing-xl) 0;
}

.leaderboard-filters {
    display: flex;
    gap: var(--spacing-sm);
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #666;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--toxic-lime);
    color: var(--void-black);
    border-color: var(--toxic-lime);
}

.leaderboard-table {
    margin-top: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.leaderboard-row {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    display: grid;
    grid-template-columns: 60px 1fr 120px 80px;
    align-items: center;
    gap: var(--spacing-md);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.3s;
}

.leaderboard-row:hover {
    border-color: var(--toxic-lime);
    transform: translateX(10px);
}

.leaderboard-row.rank-1 {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.leaderboard-row.rank-2 {
    border-color: #C0C0C0;
    background: rgba(192, 192, 192, 0.05);
}

.leaderboard-row.rank-3 {
    border-color: #CD7F32;
    background: rgba(205, 127, 50, 0.05);
}

.rank {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
}

.player-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.player-name {
    font-weight: 700;
    letter-spacing: 1px;
}

.player-score {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--toxic-lime);
    text-align: right;
}

.player-change {
    text-align: center;
    font-size: 0.9rem;
}

.player-change.up {
    color: var(--toxic-lime);
}

.player-change.down {
    color: #ff0000;
}

/* Stream Section */
.stream-section {
    padding: var(--spacing-xl) 0;
}

.stream-viewers {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--cyan);
}

.stream-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.stream-player {
    position: relative;
    background: #000;
    aspect-ratio: 16/9;
    overflow: hidden;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.stream-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stream-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.stream-player:hover .stream-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--toxic-lime);
    border: none;
    border-radius: 50%;
    color: var(--void-black);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--toxic-lime);
}

.stream-chat {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(0, 240, 255, 0.2);
    display: flex;
    flex-direction: column;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.chat-header {
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--cyan);
    font-weight: 700;
}

.chat-messages {
    flex: 1;
    padding: var(--spacing-md);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.chat-message {
    font-size: 0.9rem;
}

.chat-user {
    color: var(--toxic-lime);
    font-weight: 700;
    margin-right: 0.5rem;
}

.chat-input {
    padding: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: var(--spacing-sm);
}

.chat-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: var(--spacing-sm);
    font-family: var(--font-body);
}

.chat-input button {
    background: var(--toxic-lime);
    border: none;
    color: var(--void-black);
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-content {
        margin-right: 0;
    }

    .squad-dock {
        display: none;
    }

    .tournament-bracket {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .stream-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
        padding: var(--spacing-md);
    }

    .side-nav {
        width: 60px;
    }

    .nav-link span {
        display: none;
    }

    .chrome-pass {
        width: 100%;
        max-width: 350px;
    }

    .stats-overview {
        grid-template-columns: 1fr;
    }
}