.pxr-navbar {

    background:
        rgba(10,10,10,0.82);

    backdrop-filter: blur(14px);

    padding: 20px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.06);

    position: sticky;

    top: 0;

    z-index: 999;

}

.pxr-navbar .pxr-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.pxr-nav-links {

    display: flex;

    gap: 24px;

}

.pxr-nav-links a {

    transition: var(--transition);

}

.pxr-nav-links a:hover {

    color: var(--phoenix-gold);

}

.pxr-hero {

    position: relative;

    min-height: 85vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        url('/assets/images/heroes/main-hero.webp')
        center center / cover no-repeat;

}

.pxr-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.75)
        );

backdrop-filter: blur(2px);
}

.pxr-hero-content {

    transform: translateY(-40px);

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 900px;

}

.pxr-hero-tag {

    display: inline-block;

    margin-bottom: 20px;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    font-size: 0.85rem;

    letter-spacing: 2px;

}

.pxr-hero h1 {

    font-size:
        clamp(3rem, 8vw, 7rem);

    line-height: 0.95;

    margin-bottom: 24px;

    font-weight: 900;

}

.pxr-hero h1 span {

    display: block;

    color: var(--phoenix-gold);

}

.pxr-hero p {

    font-size: 1.2rem;

    color: var(--text-secondary);

    margin-bottom: 40px;

}

.pxr-hero-buttons {

    display: flex;

    gap: 20px;

    justify-content: center;

    flex-wrap: wrap;

}

.pxr-btn-secondary {

    background:
        rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

}
.pxr-hero h1,
.pxr-page-hero h1 {

    font-size: clamp(2.5rem, 7vw, 5rem);

    margin-bottom: 20px;

}

.pxr-section {

    padding: 80px 0;

}

.pxr-card-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 24px;

    margin-top: 40px;

}

.pxr-card,
.pxr-shop-card {

    background: var(--bg-secondary);

    border-radius: var(--radius-lg);

    padding: 24px;

    box-shadow: var(--shadow-soft);

}

.pxr-btn {

    background:
    linear-gradient(
        135deg,
        #d72638,
        #ff5f43
    );

    color: white;

    border: none;

    padding: 14px 28px;

    border-radius: 999px;

    cursor: pointer;

    transition: var(--transition);

}

.pxr-btn:hover {

    transform: translateY(-2px);

    background: var(--phoenix-gold);

    color: black;

}

.pxr-demo-row {

    display: flex;

    gap: 20px;

    margin-top: 20px;

}

.pxr-section-header {

    text-align: center;

    margin-bottom: 60px;

}

.pxr-section-header span {

    color: var(--phoenix-gold);

    letter-spacing: 2px;

    font-size: 0.9rem;

}

.pxr-section-header h2 {

    font-size: clamp(2rem, 5vw, 4rem);

    margin-top: 10px;

}

.pxr-game-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 24px;

}

.pxr-game-card {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-lg);

    min-height: 420px;

    cursor: pointer;

    box-shadow: var(--shadow-soft);

    transition: var(--transition);

}

.pxr-game-card:hover {

    transform:
        translateY(-8px);

}

.pxr-game-card img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.pxr-game-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.88),
            rgba(0,0,0,0.2)
        );

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 30px;

}

.pxr-game-overlay h3 {

    font-size: 1.8rem;

    margin-bottom: 12px;

}

.pxr-game-overlay p {

    color: var(--text-secondary);

}

.pxr-features-section {

    background:
        linear-gradient(
            to bottom,
            #111111,
            #181818
        );

}

.pxr-feature-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    gap: 24px;

    margin-top: 60px;

}

.pxr-feature-card {

    background:
        rgba(255,255,255,0.04);

    border:
        1px solid rgba(255,255,255,0.06);

    border-radius:
        var(--radius-lg);

    padding: 40px 30px;

    text-align: center;

    transition:
        var(--transition);

    backdrop-filter:
        blur(10px);

}

.pxr-feature-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(245,184,65,0.35);

}

.pxr-feature-icon {

    font-size: 3rem;

    margin-bottom: 20px;

}

.pxr-feature-card h3 {

    font-size: 1.5rem;

    margin-bottom: 14px;

}

.pxr-feature-card p {

    color:
        var(--text-secondary);

}

.pxr-community-section {

    position: relative;

    padding: 180px 0 160px;

    overflow: hidden;

    background:
        url('/assets/images/backgrounds/community-bg.webp')
        center center / cover no-repeat;

}

.pxr-community-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.58),
            rgba(0,0,0,0.78)
        );

}

.pxr-community-content {

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 850px;

}

.pxr-community-tag {

    display: inline-block;

    margin-bottom: 20px;

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    letter-spacing: 2px;

    font-size: 0.85rem;

}

.pxr-community-content h2 {

    font-size:
        clamp(2.5rem, 6vw, 5rem);

    margin-bottom: 24px;

}

.pxr-community-content p {

    color:
        var(--text-secondary);

    font-size: 1.15rem;

    margin-bottom: 40px;

}

.pxr-community-buttons {

    display: flex;

    justify-content: center;

    gap: 28px;

    flex-wrap: wrap;

}

.pxr-community-content {

    transform: translateY(20px);

}

.pxr-footer {

    background:
        #0b0b0b;

    border-top:
        1px solid rgba(255,255,255,0.06);

}

.pxr-footer-top {

    padding:
        90px 0 60px;

}

.pxr-footer-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    gap: 50px;

}

.pxr-footer h3,
.pxr-footer h4 {

    margin-bottom: 20px;

}

.pxr-footer p {

    color:
        var(--text-secondary);

    line-height: 1.8;

}

.pxr-footer-links {

    display: flex;

    flex-direction: column;

}

.pxr-footer-links a {

    margin-bottom: 12px;

    color:
        var(--text-secondary);

    transition:
        var(--transition);

}

.pxr-footer-links a:hover {

    color:
        var(--phoenix-gold);

}

.pxr-footer-bottom {

    border-top:
        1px solid rgba(255,255,255,0.06);

    padding:
        24px 0;

    text-align: center;

}

.pxr-footer-bottom p {

    color:
        rgba(255,255,255,0.5);

    font-size:
        0.9rem;

}

.pxr-platform-strip {

    background:
        rgba(255,255,255,0.03);

    border-top:
        1px solid rgba(255,255,255,0.05);

    border-bottom:
        1px solid rgba(255,255,255,0.05);

    backdrop-filter:
        blur(10px);

}

.pxr-platform-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    padding: 18px 0;

    flex-wrap: wrap;

}

.pxr-platform-left,
.pxr-platform-right {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    align-items: center;

}

.pxr-platform-left span {

    color:
        var(--text-secondary);

    font-size:
        0.95rem;

}

.pxr-platform-right a {

    color:
        var(--text-secondary);

    transition:
        var(--transition);

    font-size:
        0.95rem;

}

.pxr-platform-right a:hover {

    color:
        var(--phoenix-gold);

}