@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

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

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #000;
    color: #f5f5f7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

[class^="fa-"],
[class*=" fa-"],
.fa-solid,
.fa-brands,
.fa-regular {
    display: inline-block !important;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

.fa-regular {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

.nav {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: #e2e2e5;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.nav a:hover {
    color: #fff;
}

.nav li.nav-current a {
    color: #fff;
    font-weight: 700;
}

.outer {
    width: 100%;
}

.inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.site-header-content {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1d1d1f 0%, #000 100%);
    min-height: clamp(600px, 90vh, 1000px);
}

.site-header-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    opacity: 0.9;
}

.site-header-inner {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 240px 0;
    z-index: 10;
}

.site-logo {
    height: 100px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.site-description {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.011em;
    color: #d9d2d7;
    max-width: 800px;
    margin: 0 0 50px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 2);
    text-align: left;
}

.btn-blue {
  background-color: #007bff;
  /* Direct white text */
  color: #ffffff !important; 
  
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  /* Making it slightly bolder for better legibility */
  font-weight: 700; 
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
  /* Ensures text is centered and crisp */
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-blue:hover {
  background-color: #0056b3;
  color: #ffffff; /* Keeps text white on hover */
  transform: translateY(-2px);
}


.inner-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 22px;
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #f5f5f7;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 21px;
    color: #86868b;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.features-section {
    padding: 80px 0;
    background: #000;
}

.feature-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: start;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.feature-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.feature-btn.active {
    background: rgba(41, 151, 255, 0.1);
    border-color: #2997ff;
}

.feature-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #2997ff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0s;
    will-change: transform;
}

.feature-btn.active::after {
    transform: scaleX(1);
    transition: transform 4s linear;
}

.feature-btn h4 {
    font-size: 18px;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-btn.active h4 {
    color: #2997ff;
}

.feature-btn p {
    font-size: 14px;
    color: #86868b;
    line-height: 1.4;
}

.feature-display {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-display-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.feature-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
}

.feature-badge {
    color: #2997ff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.05em;
}

.feature-display-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.feature-display-desc {
    font-size: 17px;
    color: #d2d2d7;
    line-height: 1.5;
    max-width: 600px;
}

.community-section {
    padding: 80px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.community-card {
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.6) 0%, rgba(10, 10, 12, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.community-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.community-content {
    position: relative;
    z-index: 1;
}

.community-icon {
    font-size: 48px;
    color: #5865F2;
    margin-bottom: 24px;
}

.community-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.community-desc {
    font-size: 18px;
    color: #a1a1a6;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}



.gallery-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
}

.gallery-hotswap-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    perspective: 1000px;
    padding: 20px 22px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    will-change: transform;
    transform: translateZ(0);
}

.gallery-image-container {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.gallery-item.swapping {
    opacity: 0;
    transform: scale(0.9) translateY(40px) !important;
    filter: blur(10px);
}

.gallery-item:hover {
    z-index: 20;
    border-color: #2997ff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(-10px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.gallery-card-info {
    flex: 1;
}

.gallery-card-author {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
}

.gallery-card-date {
    color: #86868b;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-card-type {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.pagination {
    display: flex;
    gap: 12px;
    list-style: none;
}

.pagination-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #86868b;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.pagination-item.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    width: 92vw;
    max-width: 1400px;
    aspect-ratio: 16/9;
    position: relative;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border-radius: 12px;
    background: #111;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
    cursor: zoom-in;
}

.lightbox-content::-webkit-scrollbar {
    display: none;
}

.lightbox-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    transform-origin: center center;
}

.lightbox-content.zoomed {
    cursor: zoom-out;
    overflow: auto;
}

.lightbox-content.zoomed .lightbox-image {
    transform: scale(2.5);
}

.lightbox-info {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 2001;
    width: 100%;
    pointer-events: none;
}

.lightbox-author {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    width: fit-content;
    margin: 0 auto;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.site-main {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-feed {
    display: grid;
    gap: 50px;
}

.post-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-card:last-child {
    border-bottom: none;
}

.post-card-image-link {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s;
}

.post-card:hover .post-card-image {
    transform: scale(1.03);
}

.post-card-content-link {
    text-decoration: none;
    color: inherit;
}

.post-card-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #f5f5f7;
    margin-bottom: 12px;
}

.post-card:hover .post-card-title {
    color: #2997ff;
}

.post-card-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #a1a1a6;
    margin-bottom: 20px;
}

.post-card-meta {
    font-size: 13px;
    color: #86868b;
    display: flex;
    gap: 12px;
    font-weight: 500;
}

.post-card-featured {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #2997ff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.post-card.no-image {
    grid-template-columns: 1fr;
}

.faq-section {
    padding: 100px 0;
    background: #000;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 40px;
}

.faq-item h5 {
    font-size: 19px;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #86868b;
}

.faq-item a {
    color: #2997ff;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #09090b;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #86868b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #f5f5f7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 24px;
    opacity: 0.8;
}

.copyright {
    color: #6e6e73;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #86868b;
    font-size: 18px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #fff;
}

.gh-powered-by {
    font-size: 12px;
    color: #424245;
}

.gh-powered-by a {
    color: #666;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .gallery-hotswap-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .gallery-hotswap-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .feature-container {
        grid-template-columns: 1fr;
    }

    .feature-display {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .gh-head-inner {
        justify-content: center;
    }

    .post-card {
        grid-template-columns: 1fr;
    }

    .site-description {
        font-size: 20px;
        padding: 0 10px;
    }

    .site-logo {
        height: 70px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-hotswap-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-title {
        font-size: 32px;
    }
}

.commands-section {
    padding: 120px 0;
    min-height: 80vh;
    position: relative;
    background:
        radial-gradient(circle at 50% 0%, rgba(41, 151, 255, 0.12) 0%, rgba(41, 151, 255, 0.05) 25%, rgba(0, 0, 0, 0) 70%),
        radial-gradient(circle at 50% 100%, rgba(41, 151, 255, 0.1) 0%, rgba(41, 151, 255, 0.04) 30%, rgba(0, 0, 0, 0) 80%),
        linear-gradient(180deg, rgba(10, 10, 15, 1) 0%, rgba(5, 5, 8, 1) 50%, rgba(10, 10, 15, 1) 100%);
    overflow: hidden;
}

.commands-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 1;
}

.commands-container {
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 12, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    margin-top: 60px;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.commands-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.commands-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: 28px 32px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #86868b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.commands-table td {
    padding: 24px 32px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
    transition: all 0.3s ease;
}

.commands-table tr:last-child td {
    border-bottom: none;
}

.commands-table tr {
    transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.commands-table tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.commands-table tr:hover td {
    color: #fff;
}

.cmd-name {
    font-family: 'SF Mono', 'Fira Code', 'Menlo', monospace;
    color: #2997ff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.cmd-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    transition: all 0.3s;
    min-width: 80px;
}

.rank-free {
    color: #30d158;
    background: rgba(48, 209, 88, 0.08);
    border-color: rgba(48, 209, 88, 0.15);
}

.rank-voter {
    color: #ff9f0a;
    background: rgba(255, 159, 10, 0.08);
    border-color: rgba(255, 159, 10, 0.15);
}

.rank-premium {
    color: #bf5af2;
    background: rgba(191, 90, 242, 0.08);
    border-color: rgba(191, 90, 242, 0.15);
}

.commands-table tr:hover .cmd-rank {
    transform: scale(1.05);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #86868b;
    font-size: 11px;
    cursor: help;
    margin-left: 10px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-icon:hover {
    background: rgba(41, 151, 255, 0.2);
    color: #2997ff;
    border-color: #2997ff;
    transform: scale(1.1);
}

.info-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(29, 29, 31, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #f5f5f7;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 13px;
    white-space: normal;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 100;
    line-height: 1.5;
    text-transform: none;
    font-weight: 400;
    letter-spacing: normal;
}

.info-icon:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}



.clean-content-section {
    padding: 120px 0;
    background: #000;
}

.clean-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 60px 0 40px;
    color: #86868b;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-divider:not(:empty)::before {
    margin-right: 20px;
}

.section-divider:not(:empty)::after {
    margin-left: 20px;
}

.clean-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #d2d2d7;
    margin-bottom: 24px;
    text-align: left;
}



.clean-text a {
    color: #2997ff;
    text-decoration: none;
}

.clean-text a:hover {
    text-decoration: underline;
}

.faq-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.faq-simple-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: background 0.2s, border-color 0.2s;
}

.faq-simple-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(41, 151, 255, 0.3);
}

.faq-simple-item h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-simple-item h4 .faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: rgba(41, 151, 255, 0.12);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #2997ff;
}

.faq-simple-item p {
    font-size: 14px;
    color: #86868b;
    line-height: 1.6;
    margin: 0;
}

.gh-head {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    z-index: 9999 !important;
    display: block !important;
}

.gh-head-inner {
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 75px !important;
    box-sizing: border-box !important;
}

.gh-head-logo {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.gh-head-logo img {
    height: 35px !important;
    width: auto !important;
    display: block !important;
}

.gh-head-menu {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.about-page-main {
    background: #000;
}

.about-page-main {
    background: #000;
}

.about-hero {
    position: relative;
    padding: 120px 0 40px;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: brightness(0.7) blur(2px);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, #000 100%),
        linear-gradient(to right, #000 0%, transparent 50%, #000 100%);
}

.about-hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(41, 151, 255, 0.1);
    border: 1px solid rgba(41, 151, 255, 0.3);
    color: #2997ff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.about-hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #fff, #a1a1a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-subtitle {
    font-size: 21px;
    color: #d2d2d7;
    max-width: 600px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.about-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.glass-card {
    position: relative;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 23px;
    z-index: -1;
    pointer-events: none;
}

.discord-widget-mini {
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.dw-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dw-icon {
    width: 48px;
    height: 48px;
    background: #5865F2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.dw-title h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.dw-title span {
    font-size: 13px;
    color: #86868b;
}

.dw-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dw-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 12px;
}

.dw-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.dw-stat-value.online {
    color: #3ba55c;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dw-stat-value.online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
}

.dw-stat-label {
    font-size: 12px;
    color: #86868b;
    text-transform: uppercase;
    font-weight: 600;
}




.about-hero-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-hero-side {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-page-main .clean-content-section {
    padding: 20px 0 120px;
}

.about-page-main .section-divider {
    margin: 20px 0 30px;
}

.content-intro p {
    font-size: 20px;
    line-height: 1.6;
    color: #f5f5f7;
    margin-bottom: 32px;
    max-width: 900px;
}

.specs-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0;
}

.spec-item-v2 {
    background: #000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-label {
    font-size: 12px;
    font-weight: 700;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.spec-value {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

.history-flat-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #d2d2d7;
    margin-bottom: 24px;
}

.tech-box-v2 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border-left: 4px solid #2997ff;
    padding: 30px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
}

.tech-box-v2 p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}



.contact-section-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.contact-section-v2 p {
    font-size: 17px;
    color: #d2d2d7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-section-v2 a {
    color: #2997ff;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-hero-actions {
        justify-content: center;
    }

    .about-hero-side {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }

    .specs-grid-v2 {
        grid-template-columns: 1fr;
    }

    .content-intro p {
        font-size: 18px;
    }

    .community-switcher {
        height: 340px;
    }

    .switcher-face {
        padding: 20px;
    }

    .dw-header {
        margin-bottom: 16px;
    }

    .dw-stats {
        margin-bottom: 20px;
    }

    .dw-title h3 {
        font-size: 16px;
    }

    .dw-stat-value {
        font-size: 18px;
    }
}

.community-switcher {
    perspective: 1200px;
    width: 100%;
    height: 380px;
}

.switcher-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    will-change: transform;
}

.community-switcher.flipped .switcher-inner {
    transform: rotateY(180deg);
}

.switcher-face {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
    padding: 35px;
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    contain: layout paint;
    transform: translateZ(0);
}

.telegram-face {
    z-index: 2;
    transform: rotateY(0deg);
}

.discord-face {
    transform: rotateY(180deg);
}

.dw-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.dw-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dw-icon.telegram i {
    color: #2997ff;
}

.dw-icon.discord i {
    color: #5865F2;
}

.dw-title h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.dw-title span {
    font-size: 13px;
    color: #86868b;
}

.dw-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.dw-stat {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dw-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #f5f5f7;
    margin-bottom: 2px;
}

.dw-stat-value.online {
    color: #32d74b;
}

.dw-stat-label {
    font-size: 11px;
    color: #86868b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.dw-action-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dw-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.dw-action-btn i {
    font-size: 12px;
    opacity: 0.7;
}

.switcher-hint {
    font-size: 12px;
    color: #424245;
    text-align: center;
    margin-top: 20px;
    font-weight: 400;
}


.hardware-stats-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.hardware-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hardware-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #2997ff;
    transform: scale(1.02);
}

.hb-icon {
    width: 50px;
    height: 50px;
    background: rgba(41, 151, 255, 0.1);
    color: #2997ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hb-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hb-label {
    font-size: 12px;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.hb-value {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
}

.faq-accordion-v3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 40px 0;
}

.site-header-content {
    position: relative;
    background: #000;
    min-height: calc(100vh - 75px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.site-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.site-header-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(0.9) saturate(1.1);
    position: absolute;
}

.site-header-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6) 85%, #000 100%);
    z-index: 1;
}

.site-header-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    text-align: center;
    padding: 0 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-brand-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.site-logo {
    height: clamp(80px, 15vh, 130px);
    width: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.hero-badge {
    background: rgba(41, 151, 255, 0.12);
    color: #2997ff;
    padding: 8px 20px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(41, 151, 255, 0.3);
    display: inline-block;
}

.site-description {
    font-size: clamp(18px, 4vw, 22px);
    line-height: 1.6;
    color: #e2e2e5;
    margin: 0 auto 40px;
    max-width: 800px;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    width: 100%;
    flex-wrap: wrap;
}

.gh-head-button {
    min-width: 260px;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    clip-path: inset(0 round 12px);
    -webkit-clip-path: inset(0 round 12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    will-change: transform, clip-path;
    transform: translateZ(0);
}

.gh-head-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-30deg) translateX(-250%);
    pointer-events: none;
    transition: none;
    z-index: 1;
}

.gh-head-button:hover::before {
    transform: skewX(-30deg) translateX(600%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gh-head-button.primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(30px) brightness(1.1);
    -webkit-backdrop-filter: blur(30px) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.gh-head-button.primary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.gh-head-button.secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(30px) brightness(1.1);
    -webkit-backdrop-filter: blur(30px) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gh-head-button.secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.gh-head-button:hover {
    transform: translateY(-4px) scale(1.02);
}

.dw-action-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dw-action-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dw-action-btn.telegram-btn:hover {
    background: rgba(41, 151, 255, 0.15);
    border-color: rgba(41, 151, 255, 0.4);
    color: #2997ff;
}

.dw-action-btn.discord-btn:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.4);
    color: #5865F2;
}

.live-stats {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(41, 151, 255, 0.1);
    padding: 10px 24px;
    border-radius: 980px;
    border: 1px solid rgba(41, 151, 255, 0.25);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    backdrop-filter: blur(40px) saturate(180%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 1px 1px rgba(255, 255, 255, 0.05);
    margin-top: -12px;
}

.live-stats span#player-count {
    color: #fff;
    font-weight: 800;
}

.pulse-icon {
    width: 10px;
    height: 10px;
    background: #32d74b;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px #32d74b;
    flex-shrink: 0;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(50, 215, 75, 0.4);
    border-radius: 50%;
    animation: statPulse 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes statPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.faq-accordion-v3 {
    max-width: 850px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    min-height: 500px;
}

.faq-v3-item {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-v3-header {
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-v3-header h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.faq-v3-toggle {
    color: #424245;
    transition: transform 0.3s;
}

.faq-v3-item.active {
    border-color: #2997ff;
    background: rgba(41, 151, 255, 0.04);
}

.faq-v3-item.active .faq-v3-toggle {
    transform: rotate(180deg);
    color: #2997ff;
}

.faq-v3-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-v3-item.active .faq-v3-content {
    grid-template-rows: 1fr;
}

.faq-v3-inner {
    min-height: 0;
}

.faq-v3-content p {
    padding: 0 40px 32px;
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #a1a1a6;
}

.stats-page-main {
    background:
        radial-gradient(circle at 50% 0%, rgba(41, 151, 255, 0.1) 0%, rgba(0,0,0,0) 60%),
        #000;
    padding-top: 75px; /* matches navbar height */
    position: relative;
}

.stats-page-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}

.stats-page-main .outer,
.stats-page-main .inner {
    position: relative;
    z-index: 1;
}

.stats-hero {
    padding: 48px 0 36px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.stats-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

.stats-page-sub {
    font-size: 15px;
    color: #6e6e73;
    margin: 0;
}

.stats-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 8px 8px 8px 18px;
    flex-shrink: 0;
    width: 380px;
    max-width: 100%;
    transition: border-color 0.2s;
}

.stats-search-form:focus-within {
    border-color: rgba(41,151,255,0.5);
    background: rgba(255,255,255,0.06);
}

.stats-search-form i {
    color: #6e6e73;
    font-size: 14px;
    flex-shrink: 0;
}

.stats-search-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    min-width: 0;
}

.stats-search-form input::placeholder {
    color: #6e6e73;
}

.stats-search-form button {
    background: #2997ff;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.stats-search-form button:hover {
    background: #0a84ff;
    transform: scale(1.03);
}

.stats-body {
    padding: 40px 0 80px;
}

.stats-section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6e6e73;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lb-table {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    overflow: hidden;
    max-width: 860px;
}

.lb-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    transition: background 0.18s;
}

.lb-row:last-child {
    border-bottom: none;
}

.lb-row:hover {
    background: rgba(41,151,255,0.07);
}

.lb-num {
    font-size: 13px;
    font-weight: 800;
    color: #2997ff;
    min-width: 32px;
}

.lb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.lb-pname {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #f5f5f7;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lb-meta {
    font-size: 13px;
    color: #6e6e73;
    white-space: nowrap;
}

.lb-kills-badge {
    font-size: 13px;
    font-weight: 700;
    color: #ff9f0a;
    background: rgba(255,159,10,0.1);
    border: 1px solid rgba(255,159,10,0.2);
    border-radius: 8px;
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.lb-skeleton {
    height: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: linear-gradient(90deg,
        rgba(255,255,255,0.03) 25%,
        rgba(255,255,255,0.06) 50%,
        rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

.lb-skeleton:last-child { border-bottom: none; }

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.lb-unavailable {
    padding: 60px 24px;
    text-align: center;
    color: #6e6e73;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lb-unavailable i {
    font-size: 28px;
    opacity: 0.4;
}

.lb-unavailable p {
    font-size: 14px;
    margin: 0;
}

.stats-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #86868b;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 28px;
}

.stats-back-btn:hover {
    background: rgba(255,255,255,0.09);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
}

.player-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    padding: 36px;
    max-width: 1000px;
}

.player-card-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.player-card-avatar {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

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

.player-card-info h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.player-card-info code {
    display: block;
    font-size: 12px;
    color: #6e6e73;
    font-family: 'SF Mono', 'Fira Code', monospace;
    margin-bottom: 8px;
    word-break: break-all;
}

.player-join-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #86868b;
}

.player-join-date i {
    color: #2997ff;
}

.player-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.pstat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 16px 18px;
    transition: background 0.2s, transform 0.2s;
}

.pstat:hover {
    background: rgba(255,255,255,0.04);
    transform: translateY(-1px);
}

.pstat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.pstat.deaths .pstat-icon  { background: rgba(255,69,58,.12);   color: #ff453a; }
.pstat.kills .pstat-icon   { background: rgba(255,159,10,.12);  color: #ff9f0a; }
.pstat.mobs .pstat-icon    { background: rgba(162,132,94,.12);  color: #a2845e; }
.pstat.time .pstat-icon    { background: rgba(41,151,255,.12);  color: #2997ff; }
.pstat.blocks .pstat-icon  { background: rgba(191,90,242,.12);  color: #bf5af2; }
.pstat.tnt .pstat-icon     { background: rgba(255,92,55,.12);   color: #ff5c37; }
.pstat.obsidian .pstat-icon{ background: rgba(88,101,242,.12);  color: #5865f2; }
.pstat.netherite .pstat-icon{ background: rgba(255,0,85,.12);   color: #ff0055; }
.pstat.elytra .pstat-icon  { background: rgba(48,209,88,.12);   color: #30d158; }
.pstat.totems .pstat-icon  { background: rgba(255,215,0,.12);   color: #ffd700; }
.pstat.arrows .pstat-icon  { background: rgba(255,255,255,.08); color: #fff; }

.pstat-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.pstat-val {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.pstat-label {
    font-size: 12px;
    color: #86868b;
    white-space: nowrap;
}

.stats-state-box {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
}

.stats-state-box p {
    font-size: 15px;
    color: #86868b;
    margin: 0;
}

.stats-state-box.error .stats-state-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255,69,58,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ff453a;
}

.stats-state-box.error h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.stats-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.08);
    border-top-color: #2997ff;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .stats-hero-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-search-form {
        width: 100%;
    }

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

    .player-card {
        padding: 20px;
    }

    .player-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .lb-meta {
        display: none;
    }
}
