/* =========================================================
   VIROXP - GLOBAL STYLE
   One CSS file for the entire website
========================================================= */


/* =========================================================
   1. GLOBAL
========================================================= */

:root {
    --primary: #00d9ff;
    --bg: #070a10;
    --bg-soft: #0a0e15;
    --card: #10151c;
    --card-dark: #0b0f15;
    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, sans-serif;
}

main {
    min-height: 100vh;
    background: var(--bg);
}

a {
    color: inherit;
}

button,
input,
textarea {
    font-family: Arial, sans-serif;
}


/* =========================================================
   2. HEADER
========================================================= */

.site-header {
    text-align: center;
    padding: 35px 20px 25px;
    background: var(--bg);
}

.header-logo {
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 6px;
}

.header-tagline {
    margin-top: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
}


/* =========================================================
   3. NAVBAR
========================================================= */

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;

    padding: 16px 20px;

    background: var(--bg-soft);

    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 217, 255, 0.12);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.navbar a {
    position: relative;

    padding: 8px 4px;

    color: rgba(255, 255, 255, 0.65);

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        text-shadow 0.3s ease;
}

.navbar a:hover {
    color: var(--primary);

    transform: translateY(-2px);

    text-shadow:
        0 0 12px rgba(0, 217, 255, 0.45);
}

.navbar a::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--primary);

    box-shadow:
        0 0 10px rgba(0, 217, 255, 0.6);

    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}


/* =========================================================
   4. HOME / HERO
========================================================= */

.viropx-hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    margin: 0;
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(0, 217, 255, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(0, 217, 255, 0.05),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #070a10,
            #10141c 50%,
            #070a10
        );

    border: 1px solid rgba(255, 255, 255, 0.07);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55);
}

.hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(0, 217, 255, 0.08);

    filter: blur(100px);

    pointer-events: none;
}

.hero-center {
    position: relative;
    z-index: 2;

    width: min(850px, 90%);

    text-align: center;
}

.hero-brand {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 10px;
}

.hero-line {
    width: 45px;
    height: 2px;

    margin: 0 auto 30px;

    background: var(--primary);

    box-shadow:
        0 0 15px rgba(0, 217, 255, 0.5);
}

.viropx-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(55px, 9vw, 105px);

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 900;
}

.viropx-hero h1 span {
    display: block;

    color: var(--primary);

    text-shadow:
        0 0 30px rgba(0, 217, 255, 0.25);
}

.hero-text {
    margin: 35px auto;

    color: rgba(255, 255, 255, 0.65);

    font-size: 19px;

    line-height: 1.9;
}

.enter-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px 28px;

    color: #071016;

    background: var(--primary);

    border-radius: 8px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 1px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.enter-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 217, 255, 0.25);
}

.hero-bottom {
    position: absolute;

    bottom: 25px;
    left: 35px;
    right: 35px;

    display: flex;
    justify-content: space-between;

    color: rgba(255, 255, 255, 0.28);

    font-size: 10px;

    letter-spacing: 2px;
}


/* =========================================================
   5. GAMES PAGE
========================================================= */

.games-page {
    width: min(1000px, 90%);

    margin: 0 auto;

    padding: 90px 0 120px;
}

.games-header {
    text-align: center;

    margin-bottom: 70px;
}

.games-label {
    margin-bottom: 25px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 7px;
}

.games-header h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(55px, 8vw, 95px);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -4px;
}

.games-header h1 span {
    display: block;

    color: var(--primary);
}

.games-header p {
    margin-top: 30px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 18px;
}

.games-list {
    display: flex;
    flex-direction: column;
}

.game-item {
    display: flex;

    align-items: center;

    gap: 35px;

    padding: 35px 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.game-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.game-item:hover {
    background: rgba(0, 217, 255, 0.035);

    padding-left: 35px;
}

.game-number {
    min-width: 45px;

    color: rgba(255, 255, 255, 0.25);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;
}

.game-details {
    flex: 1;
}

.game-details span {
    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;
}

.game-details h2 {
    margin: 10px 0;

    color: #ffffff;

    font-size: 30px;

    font-weight: 800;
}

.game-details p {
    margin: 0;

    color: rgba(255, 255, 255, 0.5);

    font-size: 15px;

    line-height: 1.7;
}

.game-rating {
    min-width: 70px;

    color: #ffffff;

    font-size: 24px;
    font-weight: 900;

    text-align: center;
}

.game-rating::before {
    content: "★";

    display: block;

    margin-bottom: 3px;

    color: var(--primary);

    font-size: 13px;
}


/* =========================================================
   6. NOSTALGIA PAGE
========================================================= */

.nostalgia-page {
    min-height: 100vh;

    padding: 85px 20px 120px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(0, 217, 255, 0.07),
            transparent 35%
        ),
        var(--bg);
}

.nostalgia-title {
    text-align: center;

    margin-bottom: 60px;
}

.nostalgia-title span {
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 7px;
}

.nostalgia-title h1 {
    margin: 15px 0;

    color: #ffffff;

    font-size: clamp(50px, 8vw, 90px);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -4px;
}

.nostalgia-title p {
    margin: 0;

    color: rgba(255, 255, 255, 0.35);

    font-size: 11px;

    letter-spacing: 4px;
}


/* =========================================================
   7. RETRO TV
========================================================= */

.retro-tv {
    width: min(1050px, 94%);

    margin: auto;

    display: flex;

    align-items: center;

    gap: 35px;

    padding: 45px;

    background:
        linear-gradient(
            145deg,
            #272d33,
            #11151a
        );

    border: 3px solid #343b42;

    border-radius: 45px;

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.025);
}

.tv-body {
    flex: 1;

    min-width: 0;
}


/* =========================================================
   8. TV SCREEN
========================================================= */

.tv-screen {
    position: relative;

    min-height: 460px;

    background: #020406;

    border: 18px solid #080b0e;

    border-radius: 48px;

    overflow: hidden;

    box-shadow:
        inset 0 0 70px rgba(0, 0, 0, 0.95),
        0 0 35px rgba(0, 217, 255, 0.06);

    transition:
        filter 0.2s ease,
        transform 0.2s ease;
}


/* =========================================================
   9. CRT SCANLINES
========================================================= */

.screen-scanlines {
    position: absolute;

    inset: 0;

    z-index: 5;

    pointer-events: none;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.035) 0px,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 2px,
            transparent 5px
        );

    opacity: 0.65;
}


/* =========================================================
   10. SCREEN NOISE
========================================================= */

.screen-noise {
    position: absolute;

    inset: -50%;

    z-index: 4;

    pointer-events: none;

    opacity: 0.08;

    background-image:
        repeating-radial-gradient(
            circle,
            #ffffff 0,
            #ffffff 1px,
            transparent 1px,
            transparent 3px
        );

    animation: noiseMove 0.15s infinite;
}

@keyframes noiseMove {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(2%, -2%);
    }

    50% {
        transform: translate(-2%, 2%);
    }

    75% {
        transform: translate(1%, 1%);
    }

    100% {
        transform: translate(0, 0);
    }
}


/* =========================================================
   11. TV SCREEN CONTENT
========================================================= */

.screen-content {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    transition: opacity 0.15s ease;
}

.channel-number {
    position: absolute;

    top: 28px;
    left: 32px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}

.memory-label {
    margin-bottom: 15px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 5px;
}

.screen-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(35px, 5vw, 65px);

    font-weight: 900;

    letter-spacing: 3px;

    text-shadow:
        0 0 20px rgba(0, 217, 255, 0.2);
}

.screen-content p {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;

    letter-spacing: 4px;
}


/* =========================================================
   12. TV NO SIGNAL
========================================================= */

.screen-off-message {
    position: absolute;

    inset: 0;

    z-index: 1;

    display: flex;

    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.08);

    font-size: 12px;

    letter-spacing: 5px;

    opacity: 0;
}


/* =========================================================
   13. TV CHANNEL GLITCH
========================================================= */

.channel-switch {
    animation: channelGlitch 0.45s ease;
}

.channel-switch .screen-content {
    opacity: 0;
}

@keyframes channelGlitch {
    0% {
        filter: brightness(1);
    }

    15% {
        filter: brightness(2.5);
    }

    30% {
        filter: brightness(0.2);
        transform: scaleX(1.03);
    }

    45% {
        filter: brightness(1.8);
        transform: scaleX(0.98);
    }

    60% {
        filter: brightness(0.4);
    }

    100% {
        filter: brightness(1);
        transform: scaleX(1);
    }
}


/* =========================================================
   14. TV POWER OFF
========================================================= */

.tv-off {
    background: #000000;

    box-shadow:
        inset 0 0 100px rgba(0, 0, 0, 1);
}

.tv-off .screen-content {
    opacity: 0;
}

.tv-off .screen-scanlines {
    opacity: 0;
}

.tv-off .screen-noise {
    opacity: 0;
}

.tv-off .screen-off-message {
    opacity: 1;
}


/* =========================================================
   15. TV VOLUME
========================================================= */

.volume-flash {
    filter: brightness(1.8);
}


/* =========================================================
   16. TV BOTTOM
========================================================= */

.tv-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 18px 25px 0;
}

.tv-brand {
    color: rgba(255, 255, 255, 0.35);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 5px;
}

.power-light {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #252a2f;

    box-shadow: none;

    transition: 0.25s ease;
}

.power-light.power-active {
    background: var(--primary);

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.8);
}


/* =========================================================
   17. TV CONTROLS
========================================================= */

.tv-controls {
    width: 125px;

    display: flex;

    flex-direction: column;

    gap: 14px;
}

.control-label {
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.25);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 4px;

    text-align: center;
}

.tv-button {
    position: relative;

    padding: 15px 8px;

    color: rgba(255, 255, 255, 0.75);

    background:
        linear-gradient(
            145deg,
            #20262c,
            #111519
        );

    border: 1px solid #3b444c;

    border-radius: 8px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    cursor: pointer;

    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    transition:
        transform 0.12s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.tv-button:hover {
    color: var(--primary);

    border-color: var(--primary);

    box-shadow:
        0 0 18px rgba(0, 217, 255, 0.18);
}

.tv-button:active {
    transform: translateY(4px);

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.6);
}

.power-button {
    margin-bottom: 10px;
}

.nostalgia-hint {
    margin-top: 30px;

    text-align: center;

    color: rgba(255, 255, 255, 0.22);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 3px;
}

.nostalgia-hint span {
    color: var(--primary);

    margin: 0 12px;
}


/* =========================================================
   18. ABOUT PAGE
========================================================= */

.about-page {
    min-height: 100vh;

    padding: 90px 20px 130px;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(0, 217, 255, 0.08),
            transparent 35%
        ),
        var(--bg);
}


/* =========================================================
   19. ABOUT HERO
========================================================= */

.about-hero {
    width: min(850px, 90%);

    margin: 0 auto 75px;

    text-align: center;
}

.about-label {
    margin-bottom: 25px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 7px;
}

.about-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(55px, 9vw, 100px);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -4px;
}

.about-hero h1 span {
    display: block;

    color: var(--primary);

    text-shadow:
        0 0 30px rgba(0, 217, 255, 0.25);
}

.about-line {
    width: 50px;
    height: 2px;

    margin: 35px auto;

    background: var(--primary);

    box-shadow:
        0 0 15px rgba(0, 217, 255, 0.55);
}

.about-opening {
    color: rgba(255, 255, 255, 0.75);

    font-size: 23px;
    font-weight: 700;

    line-height: 1.8;
}


/* =========================================================
   20. ABOUT CONTENT
========================================================= */

.about-content {
    width: min(850px, 90%);

    margin: 0 auto;

    padding: 55px 50px;

    background:
        linear-gradient(
            145deg,
            rgba(18, 23, 30, 0.95),
            rgba(8, 11, 16, 0.96)
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.about-content > p {
    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 18px;

    line-height: 2;

    text-align: center;
}

.about-highlight {
    color: var(--primary) !important;

    font-weight: 800;

    text-shadow:
        0 0 18px rgba(0, 217, 255, 0.12);
}


/* =========================================================
   21. ABOUT SECTIONS
========================================================= */

.about-section {
    margin-top: 75px;

    padding-top: 45px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.about-section h2 {
    margin: 0;

    color: #ffffff;

    font-size: 32px;
    font-weight: 900;

    text-align: center;
}

.about-line.small {
    width: 35px;

    margin: 22px auto 35px;
}

.about-section p {
    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 18px;

    line-height: 2;

    text-align: center;
}


/* =========================================================
   22. ABOUT CLOSING
========================================================= */

.about-closing {
    margin-top: 80px;

    text-align: center;
}

.closing-line {
    width: 100%;
    height: 1px;

    margin-bottom: 45px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(0, 217, 255, 0.35),
            transparent
        );
}

.about-closing h2 {
    margin: 0;

    color: var(--primary);

    font-size: 42px;
    font-weight: 900;

    letter-spacing: 8px;

    text-shadow:
        0 0 25px rgba(0, 217, 255, 0.2);
}

.about-closing p {
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 12px;

    letter-spacing: 2px;

    line-height: 2;
}


/* =========================================================
   23. COMMUNICATION PAGE
========================================================= */

.communication-page {
    min-height: 100vh;

    padding: 90px 20px 130px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(0, 217, 255, 0.08),
            transparent 35%
        ),
        var(--bg);
}


/* =========================================================
   24. COMMUNICATION HEADER
========================================================= */

.communication-header {
    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;
}

.communication-label {
    margin-bottom: 25px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 7px;
}

.communication-header h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(55px, 8vw, 95px);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -4px;
}

.communication-header h1 span {
    display: block;

    color: var(--primary);

    text-shadow:
        0 0 30px rgba(0, 217, 255, 0.2);
}

.communication-header p {
    margin-top: 30px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 18px;

    line-height: 1.9;
}


/* =========================================================
   25. COMMUNITY VOICE CARD
========================================================= */

.voice-card {
    width: min(850px, 94%);

    margin: auto;

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            #151b22,
            #0c1015
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 28px;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.voice-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 20px;

    margin-bottom: 35px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.voice-status {
    color: var(--primary);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 3px;
}

.voice-id {
    color: rgba(255, 255, 255, 0.2);

    font-size: 9px;

    letter-spacing: 3px;
}


/* =========================================================
   26. VOICE CONTENT
========================================================= */

.voice-content {
    text-align: right;
}

.voice-content h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 34px;

    font-weight: 900;
}

.voice-content > p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 16px;

    line-height: 2;
}

.voice-highlight {
    margin-top: 30px;

    color: var(--primary) !important;

    font-weight: 800;
}


/* =========================================================
   27. COMMUNITY FORM
========================================================= */

.community-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
    font-weight: 800;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 16px 18px;

    color: #ffffff;

    background: #080c11;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 10px;

    outline: none;

    font-size: 14px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 20px rgba(0, 217, 255, 0.08);
}


/* =========================================================
   28. SEND BUTTON
========================================================= */

.send-community {
    width: 100%;

    padding: 17px 25px;

    border: none;

    border-radius: 9px;

    color: #071016;

    background: var(--primary);

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.send-community span {
    margin-right: 10px;

    font-size: 18px;
}

.send-community:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0, 217, 255, 0.2);
}

.send-community:active {
    transform: translateY(1px);
}


/* =========================================================
   29. COMMUNITY CREDIT
========================================================= */

.community-credit {
    margin: 70px auto 0;

    color: rgba(255, 255, 255, 0.25);

    text-align: center;
}

.credit-line {
    width: 45px;
    height: 2px;

    margin: 0 auto 25px;

    background: var(--primary);

    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.4);
}

.community-credit p {
    margin: 0;

    font-size: 15px;

    line-height: 1.8;
}

.community-credit p span {
    color: var(--primary);

    font-weight: 800;
}

.community-credit small {
    display: block;

    margin-top: 15px;

    color: rgba(255, 255, 255, 0.15);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 5px;
}


/* =========================================================
   30. OLD COMMUNICATION COMPONENTS
   Kept for compatibility with previous HTML
========================================================= */

.communication-options {
    width: min(950px, 90%);

    margin: 0 auto 70px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.communication-card {
    position: relative;

    min-height: 190px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    text-align: right;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #10151c,
            #0b0f15
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.communication-card:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 217, 255, 0.4);

    background:
        linear-gradient(
            145deg,
            #121a22,
            #0b1016
        );

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(0, 217, 255, 0.05);
}

.communication-icon {
    margin-bottom: 22px;

    font-size: 28px;
}

.communication-card-title {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 19px;

    font-weight: 800;
}

.communication-card-text {
    color: rgba(255, 255, 255, 0.4);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   31. OLD MESSAGE COMPONENTS
   Kept for compatibility with previous HTML
========================================================= */

.communication-message {
    width: min(850px, 90%);

    margin: 0 auto;

    padding: 50px;

    background:
        linear-gradient(
            145deg,
            rgba(18, 24, 31, 0.95),
            rgba(9, 13, 18, 0.98)
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 24px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45);
}

.message-label {
    margin-bottom: 15px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 5px;
}

.communication-message h2 {
    margin: 0;

    color: #ffffff;

    font-size: 38px;

    font-weight: 900;
}

.communication-message > p {
    margin: 15px 0 30px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 14px;

    line-height: 1.8;
}

.communication-message textarea,
.communication-message input {
    color: #ffffff;

    background: #070a0f;

    border: 1px solid rgba(255, 255, 255, 0.1);

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.communication-message textarea {
    width: 100%;

    min-height: 170px;

    padding: 20px;

    box-sizing: border-box;

    resize: vertical;

    border-radius: 12px;

    font-size: 15px;

    line-height: 1.7;
}

.communication-message input {
    flex: 1;

    min-width: 0;

    padding: 15px 18px;

    border-radius: 10px;

    font-size: 14px;
}

.communication-message textarea:focus,
.communication-message input:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 20px rgba(0, 217, 255, 0.08);
}

.communication-message textarea::placeholder,
.communication-message input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.message-bottom {
    display: flex;

    gap: 15px;

    margin-top: 15px;
}

.message-bottom button {
    padding: 15px 25px;

    color: #061016;

    background: var(--primary);

    border: none;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 900;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.message-bottom button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 217, 255, 0.2);
}

.message-bottom button:active {
    transform: translateY(1px);
}


/* =========================================================
   32. LISTENING SECTION
========================================================= */

.listening-section {
    width: min(700px, 90%);

    margin: 75px auto 0;

    text-align: center;
}

.listening-line {
    width: 45px;
    height: 2px;

    margin: 0 auto 25px;

    background: var(--primary);

    box-shadow:
        0 0 15px rgba(0, 217, 255, 0.5);
}

.listening-section p {
    margin: 8px 0;

    color: rgba(255, 255, 255, 0.3);

    font-size: 13px;
}

.listening-section .listening-highlight {
    color: #ffffff;

    font-size: 18px;

    font-weight: 800;
}


/* =========================================================
   33. CONTRIBUTOR SECTION
========================================================= */

.contributor-section {
    width: min(750px, 90%);

    margin: 110px auto 0;

    padding-top: 50px;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contributor-label {
    margin-bottom: 20px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 5px;
}

.contributor-section h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(30px, 5vw, 48px);

    font-weight: 900;

    letter-spacing: -2px;
}

.contributor-section p {
    max-width: 550px;

    margin: 20px auto 30px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 14px;

    line-height: 1.9;
}

.contributor-badge {
    width: fit-content;

    margin: auto;

    padding: 14px 20px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.65);

    background: rgba(0, 217, 255, 0.04);

    border: 1px solid rgba(0, 217, 255, 0.15);

    border-radius: 8px;

    font-size: 10px;

    letter-spacing: 2px;
}


/* =========================================================
   34. MOBILE - ALL PAGES
========================================================= */

@media (max-width: 700px) {

    /* NAVBAR */

    .navbar {
        gap: 12px;

        padding: 14px 10px;
    }

    .navbar a {
        font-size: 12px;
    }


    /* HERO */

    .viropx-hero {
        min-height: 650px;

        border-radius: 20px;
    }

    .viropx-hero h1 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-bottom {
        left: 20px;
        right: 20px;

        font-size: 8px;
    }


    /* GAMES */

    .games-page {
        width: 90%;

        padding: 60px 0 80px;
    }

    .games-header {
        margin-bottom: 50px;
    }

    .games-header h1 {
        font-size: 50px;
    }

    .game-item {
        gap: 15px;

        padding: 28px 10px;
    }

    .game-item:hover {
        padding-left: 15px;
    }

    .game-details h2 {
        font-size: 22px;
    }

    .game-details p {
        font-size: 13px;
    }

    .game-rating {
        min-width: 45px;

        font-size: 20px;
    }


    /* NOSTALGIA */

    .nostalgia-page {
        padding: 60px 15px 80px;
    }

    .nostalgia-title {
        margin-bottom: 40px;
    }

    .nostalgia-title h1 {
        font-size: 50px;
    }

    .retro-tv {
        width: 95%;

        flex-direction: column;

        padding: 25px;

        border-radius: 30px;
    }

    .tv-screen {
        width: 100%;

        min-height: 300px;

        border-width: 12px;

        border-radius: 35px;
    }

    .screen-content h2 {
        font-size: 30px;
    }

    .tv-controls {
        width: 100%;

        flex-direction: row;

        justify-content: center;

        flex-wrap: wrap;
    }

    .control-label {
        width: 100%;
    }

    .tv-button {
        min-width: 80px;
    }


    /* ABOUT */

    .about-page {
        padding: 60px 15px 90px;
    }

    .about-hero {
        width: 95%;

        margin-bottom: 50px;
    }

    .about-hero h1 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .about-opening {
        font-size: 19px;
    }

    .about-content {
        width: 95%;

        padding: 35px 22px;

        border-radius: 22px;
    }

    .about-content > p {
        font-size: 16px;

        line-height: 1.9;
    }

    .about-section {
        margin-top: 55px;

        padding-top: 35px;
    }

    .about-section h2 {
        font-size: 25px;
    }

    .about-section p {
        font-size: 16px;

        line-height: 1.9;
    }

    .about-closing {
        margin-top: 60px;
    }

    .about-closing h2 {
        font-size: 32px;

        letter-spacing: 5px;
    }


    /* COMMUNICATION */

    .communication-page {
        padding: 60px 15px 90px;
    }

    .communication-header {
        width: 95%;

        margin-bottom: 50px;
    }

    .communication-header h1 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .communication-header p {
        font-size: 16px;
    }

    .voice-card {
        width: 95%;

        padding: 25px;

        border-radius: 22px;
    }

    .voice-top {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .voice-content {
        text-align: right;
    }

    .voice-content h2 {
        font-size: 27px;
    }

    .voice-content > p {
        font-size: 14px;
    }


    /* OLD COMMUNICATION */

    .communication-options {
        width: 95%;

        grid-template-columns: 1fr;

        gap: 12px;

        margin-bottom: 45px;
    }

    .communication-card {
        min-height: 150px;

        padding: 25px;
    }

    .communication-message {
        width: 95%;

        padding: 30px 22px;

        border-radius: 18px;
    }

    .communication-message h2 {
        font-size: 30px;
    }

    .message-bottom {
        flex-direction: column;
    }

    .message-bottom button {
        width: 100%;
    }

    .listening-section {
        width: 95%;
    }

    .contributor-section {
        width: 95%;

        margin-top: 80px;
    }

    .contributor-badge {
        max-width: 100%;

        justify-content: center;

        text-align: center;
    }
}


/* =========================================================
   35. EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .header-logo {
        font-size: 26px;

        letter-spacing: 4px;
    }

    .header-tagline {
        font-size: 9px;

        letter-spacing: 3px;
    }

    .navbar {
        gap: 7px;
    }

    .navbar a {
        font-size: 11px;
    }

    .viropx-hero h1,
    .games-header h1,
    .nostalgia-title h1,
    .about-hero h1,
    .communication-header h1 {
        font-size: 43px;
    }

    .hero-text {
        font-size: 15px;
    }

    .retro-tv {
        padding: 18px;
    }

    .tv-screen {
        min-height: 260px;
    }

    .voice-card {
        padding: 20px;
    }
}
/* =========================================
   VIROXP - COMMUNITY EXPERIENCE
========================================= */

.communication-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}


/* =========================================
   HEADER
========================================= */

.communication-header {
    max-width: 800px;
    margin: 0 auto 70px;
}

.communication-header h1 {
    font-size: clamp(42px, 6vw, 72px);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -2px;
}

.communication-header p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.8;
    margin: 8px 0;
}

.communication-header strong {
    color: var(--primary);
}


/* =========================================
   SECTIONS
========================================= */

.communication-section {
    position: relative;

    margin: 30px auto;
    padding: 45px 40px;

    max-width: 850px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 15px 50px rgba(0,0,0,0.25);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.communication-section:hover {
    transform: translateY(-4px);
    border-color: rgba(0,217,255,0.25);
}

.communication-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.communication-section p {
    max-width: 650px;
    margin: 10px auto;
    line-height: 1.8;
    opacity: 0.75;
}


/* =========================================
   EXPERIENCE BUTTONS
========================================= */

.experience-options {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;
}

.experience-options button {
    padding: 14px 22px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.04);

    color: inherit;

    font-size: 15px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.experience-options button:hover {
    transform: translateY(-3px);

    background: rgba(0,217,255,0.08);

    border-color: var(--primary);
}


/* =========================================
   COMMUNICATION BUTTON
========================================= */

.communication-button {
    display: inline-block;

    margin-top: 25px;

    padding: 15px 28px;

    border-radius: 14px;

    background: var(--primary);

    color: #061018;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.communication-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0,217,255,0.25);
}


/* =========================================
   FINAL MESSAGE
========================================= */

.communication-final {
    margin: 90px auto 20px;

    padding: 60px 20px;

    text-align: center;
}

.communication-final h2 {
    margin: 5px 0;

    font-size: clamp(38px, 6vw, 65px);

    font-weight: 800;

    letter-spacing: -2px;
}

.communication-final h2:last-of-type {
    color: var(--primary);
}

.communication-final p {
    margin-top: 25px;

    font-size: 20px;

    opacity: 0.65;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .communication-page {
        padding: 50px 16px;
    }

    .communication-header {
        margin-bottom: 45px;
    }

    .communication-header h1 {
        letter-spacing: -1px;
    }

    .communication-section {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .communication-section h2 {
        font-size: 25px;
    }

    .experience-options {
        flex-direction: column;
    }

    .experience-options button {
        width: 100%;
    }

    .communication-final {
        margin-top: 60px;
    }

}
/* =========================================
   VIROXP - DEALS PAGE
========================================= */

.deals-page {
    max-width: 1150px;
    margin: 0 auto;
    padding: 80px 24px;
}


/* =========================================
   HEADER
========================================= */

.deals-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.deals-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3px;

    color: var(--primary);

    opacity: 0.9;
}

.deals-header h1 {
    margin: 0 0 20px;

    font-size: clamp(44px, 7vw, 78px);

    font-weight: 800;

    letter-spacing: -3px;
}

.deals-header p {
    margin: 0;

    font-size: 19px;

    line-height: 1.8;

    opacity: 0.65;
}


/* =========================================
   FEATURED DEAL
========================================= */

.featured-deal {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 430px;

    margin-bottom: 90px;

    overflow: hidden;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(0,217,255,0.12),
            transparent 40%
        ),
        rgba(255,255,255,0.035);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 25px 80px rgba(0,0,0,0.35);
}


/* =========================================
   FEATURED CONTENT
========================================= */

.featured-deal-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px;
}

.deal-label {
    display: inline-block;

    width: fit-content;

    margin-bottom: 18px;

    padding: 8px 13px;

    border-radius: 10px;

    background: rgba(0,217,255,0.08);

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}

.featured-deal h2 {
    margin: 0 0 15px;

    font-size: clamp(38px, 5vw, 60px);

    letter-spacing: -2px;
}

.featured-deal p {
    max-width: 450px;

    margin-bottom: 25px;

    line-height: 1.8;

    opacity: 0.7;
}


/* =========================================
   PRICE
========================================= */

.featured-price {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;

    opacity: 0.4;

    font-size: 15px;
}

.new-price {
    font-size: 30px;

    font-weight: 800;
}

.discount {
    display: inline-flex;

    align-items: center;

    padding: 6px 9px;

    border-radius: 8px;

    background: rgba(0,217,255,0.1);

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;
}


/* =========================================
   BUTTON
========================================= */

.deal-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: fit-content;

    padding: 14px 23px;

    border-radius: 13px;

    background: var(--primary);

    color: #061018;

    text-decoration: none;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.deal-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,217,255,0.25);
}


/* =========================================
   VISUAL
========================================= */

.featured-deal-visual {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 430px;

    padding: 30px;

    background:
        radial-gradient(
            circle,
            rgba(0,217,255,0.14),
            transparent 60%
        );
}

.game-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 75%;
    height: 75%;

    border-radius: 20px;

    border: 1px solid rgba(0,217,255,0.18);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.02)
        );

    color: var(--primary);

    font-size: 25px;

    font-weight: 900;

    letter-spacing: 3px;

    box-shadow:
        0 0 50px rgba(0,217,255,0.08);
}


/* =========================================
   DEALS HEADING
========================================= */

.deals-heading {
    margin-bottom: 35px;
}

.deals-heading h2 {
    margin-bottom: 8px;

    font-size: 32px;
}

.deals-heading p {
    margin: 0;

    opacity: 0.55;
}


/* =========================================
   DEAL GRID
========================================= */

.deals-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


/* =========================================
   DEAL CARD
========================================= */

.deal-card {
    overflow: hidden;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.035);

    border: 1px solid rgba(255,255,255,0.07);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(0,217,255,0.25);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.3);
}


/* =========================================
   CARD IMAGE
========================================= */

.deal-card-image {
    display: flex;

    align-items: center;
    justify-content: center;

    height: 190px;

    background:
        radial-gradient(
            circle at center,
            rgba(0,217,255,0.12),
            transparent 65%
        );

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}

.deal-card-image span {
    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    opacity: 0.35;
}


/* =========================================
   CARD CONTENT
========================================= */

.deal-card-content {
    padding: 25px;
}

.deal-platform {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: var(--primary);

    opacity: 0.8;
}

.deal-card h3 {
    margin: 10px 0;

    font-size: 22px;
}

.deal-card p {
    min-height: 48px;

    margin-bottom: 20px;

    line-height: 1.6;

    font-size: 14px;

    opacity: 0.55;
}


/* =========================================
   CARD PRICE
========================================= */

.deal-card-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.deal-price {
    display: flex;

    align-items: center;

    gap: 8px;
}

.deal-price strong {
    font-size: 21px;
}


/* =========================================
   CARD LINK
========================================= */

.deal-link {
    display: block;

    padding-top: 16px;

    border-top:
        1px solid rgba(255,255,255,0.06);

    color: var(--primary);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;
}


/* =========================================
   FINAL
========================================= */

.deals-final {
    max-width: 750px;

    margin: 100px auto 20px;

    padding: 55px 30px;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,0.08);
}

.deals-final h2 {
    margin-bottom: 15px;

    font-size: 36px;
}

.deals-final p {
    margin: 7px 0;

    line-height: 1.7;

    opacity: 0.6;
}

.games-button {
    display: inline-block;

    margin-top: 25px;

    padding: 13px 22px;

    border-radius: 12px;

    border:
        1px solid rgba(255,255,255,0.12);

    color: inherit;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.games-button:hover {
    transform: translateY(-3px);

    border-color: var(--primary);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .deals-page {
        padding: 55px 18px;
    }

    .featured-deal {
        grid-template-columns: 1fr;
    }

    .featured-deal-content {
        padding: 35px 25px;
    }

    .featured-deal-visual {
        min-height: 280px;
    }

    .game-placeholder {
        width: 80%;
        height: 75%;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 500px) {

    .deals-header h1 {
        letter-spacing: -1px;
    }

    .featured-price {
        flex-wrap: wrap;
    }

    .featured-deal h2 {
        font-size: 40px;
    }

}
/* =========================================
   VIROXP - DEALS V2
========================================= */

.deals-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 25px;
}


/* =========================================
   HEADER
========================================= */

.deals-v2-header {
    margin-bottom: 75px;
}

.deals-v2-kicker {
    margin-bottom: 20px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;
}

.deals-v2-header h1 {
    margin: 0;

    font-size: clamp(50px, 8vw, 100px);

    line-height: 0.95;

    letter-spacing: -5px;

    font-weight: 900;
}

.deals-v2-header h1 span {
    color: var(--primary);
}

.deals-v2-header p {
    max-width: 580px;

    margin-top: 30px;

    font-size: 19px;

    line-height: 1.8;

    opacity: 0.55;
}


/* =========================================
   FEATURED DEAL
========================================= */

.deal-feature {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    min-height: 520px;

    overflow: hidden;

    border-radius: 30px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid rgba(255,255,255,0.08);
}


/* =========================================
   FEATURE INFO
========================================= */

.deal-feature-info {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 45px;
}

.deal-feature-top {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.deal-status {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    color: var(--primary);
}

.deal-percent {
    font-size: 28px;

    font-weight: 900;

    opacity: 0.9;
}

.deal-feature-title small {
    font-size: 11px;

    letter-spacing: 2px;

    opacity: 0.35;
}

.deal-feature-title h2 {
    margin: 8px 0 15px;

    font-size: clamp(45px, 6vw, 75px);

    line-height: 0.95;

    letter-spacing: -4px;
}

.deal-feature-title p {
    max-width: 430px;

    line-height: 1.8;

    opacity: 0.55;
}


/* =========================================
   PRICE
========================================= */

.deal-feature-price {
    display: flex;

    gap: 45px;

    margin-top: 35px;
}

.deal-feature-price div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.deal-feature-price span {
    font-size: 10px;

    letter-spacing: 1px;

    opacity: 0.35;
}

.deal-feature-price del {
    font-size: 18px;

    opacity: 0.4;
}

.deal-feature-price strong {
    font-size: 34px;

    font-weight: 900;

    color: var(--primary);
}


/* =========================================
   BUTTON
========================================= */

.deal-main-button {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 220px;

    margin-top: 35px;

    padding: 15px 18px;

    border-radius: 12px;

    background: var(--primary);

    color: #061018;

    text-decoration: none;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.deal-main-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 40px rgba(0,217,255,0.2);
}

.deal-main-button span {
    font-size: 20px;
}


/* =========================================
   FEATURE ART
========================================= */

.deal-feature-art {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(0,217,255,0.18),
            transparent 50%
        ),
        linear-gradient(
            135deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.01)
        );
}

.deal-art-overlay {
    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            135deg,
            transparent 0,
            transparent 20px,
            rgba(255,255,255,0.015) 21px,
            transparent 22px
        );
}

.deal-art-text {
    position: relative;

    font-size: clamp(35px, 5vw, 70px);

    font-weight: 900;

    letter-spacing: 6px;

    color: var(--primary);

    transform: rotate(-5deg);

    text-shadow:
        0 0 40px rgba(0,217,255,0.2);
}


/* =========================================
   LIST HEADER
========================================= */

.deal-list-header {
    display: flex;

    align-items: end;
    justify-content: space-between;

    margin: 100px 0 35px;
}

.deal-list-header span {
    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}

.deal-list-header h2 {
    margin: 8px 0 0;

    font-size: 35px;
}

.deal-list-header p {
    margin: 0;

    opacity: 0.4;
}


/* =========================================
   DEAL ROWS
========================================= */

.deal-list {
    border-top:
        1px solid rgba(255,255,255,0.08);
}

.deal-row {
    display: grid;

    grid-template-columns:
        55px
        1fr
        110px
        150px
        80px
        45px;

    align-items: center;

    min-height: 100px;

    border-bottom:
        1px solid rgba(255,255,255,0.07);

    transition:
        background 0.2s ease,
        padding 0.2s ease;
}

.deal-row:hover {
    padding: 0 12px;

    background:
        rgba(0,217,255,0.025);
}

.deal-row-number {
    font-size: 12px;

    opacity: 0.25;
}

.deal-row-game {
    display: flex;

    flex-direction: column;

    gap: 6px;
}

.deal-row-game strong {
    font-size: 17px;
}

.deal-row-game span {
    font-size: 10px;

    letter-spacing: 1.5px;

    color: var(--primary);

    opacity: 0.65;
}

.deal-row-tag {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    opacity: 0.45;
}

.deal-row-price {
    display: flex;

    align-items: center;

    gap: 10px;
}

.deal-row-price del {
    font-size: 12px;

    opacity: 0.3;
}

.deal-row-price strong {
    font-size: 18px;
}

.deal-row-discount {
    color: var(--primary);

    font-size: 12px;

    font-weight: 900;
}

.deal-row-arrow {
    color: inherit;

    text-decoration: none;

    font-size: 22px;

    opacity: 0.3;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.deal-row:hover .deal-row-arrow {
    opacity: 1;

    color: var(--primary);

    transform: translateX(4px);
}


/* =========================================
   PHILOSOPHY
========================================= */

.deal-philosophy {
    margin: 130px auto 30px;

    padding: 70px 30px;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,0.08);
}

.deal-philosophy > span {
    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 4px;
}

.deal-philosophy h2 {
    margin: 25px 0 15px;

    font-size: clamp(38px, 6vw, 65px);

    line-height: 1;

    letter-spacing: -3px;
}

.deal-philosophy h2 strong {
    color: var(--primary);
}

.deal-philosophy p {
    margin: 25px auto 0;

    max-width: 500px;

    font-size: 18px;

    line-height: 1.7;

    opacity: 0.5;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

    .deals-v2 {
        padding: 60px 18px;
    }

    .deal-feature {
        grid-template-columns: 1fr;
    }

    .deal-feature-art {
        min-height: 300px;
    }

    .deal-row {
        grid-template-columns:
            35px
            1fr
            70px
            40px;
    }

    .deal-row-tag {
        display: none;
    }

    .deal-row-price del {
        display: none;
    }

}

@media (max-width: 600px) {

    .deals-v2-header h1 {
        letter-spacing: -3px;
    }

    .deal-feature-info {
        padding: 30px 22px;
    }

    .deal-feature-title h2 {
        letter-spacing: -2px;
    }

    .deal-feature-price {
        gap: 25px;
    }

    .deal-list-header {
        align-items: start;

        flex-direction: column;

        gap: 15px;
    }

    .deal-row {
        min-height: 85px;
    }

    .deal-row-game strong {
        font-size: 14px;
    }

    .deal-row-discount {
        font-size: 10px;
    }

    .deal-row-arrow {
        display: none;
    }

}
/* =========================================
   VIROXP - REVIEWS V2
========================================= */

.reviews-page {
    max-width: 1150px;
    margin: 0 auto;
    padding: 90px 25px;
}


/* =========================================
   HERO
========================================= */

.reviews-hero {
    max-width: 850px;
    margin-bottom: 80px;
}

.reviews-kicker {
    display: block;

    margin-bottom: 20px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;
}

.reviews-hero h1 {
    margin: 0;

    font-size: clamp(48px, 8vw, 92px);

    line-height: 0.95;

    letter-spacing: -5px;

    font-weight: 900;
}

.reviews-hero h1 span {
    display: block;

    color: var(--primary);
}

.reviews-hero p {
    max-width: 600px;

    margin-top: 30px;

    font-size: 19px;

    line-height: 1.8;

    opacity: 0.55;
}


/* =========================================
   FEATURED REVIEW
========================================= */

.review-featured {
    padding: 45px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(0,217,255,0.10),
            transparent 35%
        ),
        rgba(255,255,255,0.025);

    border:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.25);
}


/* =========================================
   FEATURE HEADER
========================================= */

.review-featured-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 35px;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}

.review-game-platform {
    display: block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    opacity: 0.75;
}

.review-featured h2,
.review-card-v2 h2 {
    margin: 0;

    font-size: clamp(32px, 5vw, 55px);

    letter-spacing: -2px;
}

.review-score {
    display: flex;

    align-items: baseline;

    gap: 5px;
}

.review-score strong {
    font-size: 65px;

    line-height: 1;

    color: var(--primary);

    font-weight: 900;
}

.review-score span {
    font-size: 18px;

    opacity: 0.4;
}


/* =========================================
   FEATURE CONTENT
========================================= */

.review-featured-content {
    display: grid;

    grid-template-columns: 1.4fr 0.8fr;

    gap: 70px;

    padding: 45px 0;
}

.review-label {
    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.review-main-text h3 {
    margin: 15px 0 20px;

    font-size: 30px;
}

.review-main-text p {
    max-width: 650px;

    margin: 0 0 20px;

    line-height: 1.9;

    font-size: 17px;

    opacity: 0.65;
}


/* =========================================
   STATS
========================================= */

.review-stats {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1px;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid rgba(255,255,255,0.08);
}

.review-stat {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 115px;

    padding: 20px;

    background:
        rgba(0,0,0,0.25);
}

.review-stat span {
    margin-bottom: 8px;

    font-size: 10px;

    letter-spacing: 1.5px;

    opacity: 0.4;
}

.review-stat strong {
    font-size: 28px;

    color: var(--primary);
}


/* =========================================
   BUTTON
========================================= */

.review-button {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 14px 18px;

    border-radius: 11px;

    background: var(--primary);

    color: #061018;

    text-decoration: none;

    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.review-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,217,255,0.18);
}

.review-button span {
    font-size: 20px;
}


/* =========================================
   SECOND REVIEW
========================================= */

.review-card-v2 {
    margin-top: 25px;

    padding: 40px;

    border-radius: 24px;

    border:
        1px solid rgba(255,255,255,0.07);

    background:
        rgba(255,255,255,0.02);

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.review-card-v2:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0,217,255,0.20);
}

.review-card-header {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.review-mini-score {
    font-size: 42px;

    font-weight: 900;

    color: var(--primary);
}

.review-mini-score small {
    font-size: 13px;

    opacity: 0.4;
}

.review-card-description {
    max-width: 750px;

    margin: 30px 0;

    font-size: 17px;

    line-height: 1.9;

    opacity: 0.6;
}

.review-card-stats {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 30px;
}

.review-card-stats span {
    padding: 10px 14px;

    border-radius: 9px;

    background:
        rgba(255,255,255,0.04);

    font-size: 12px;

    opacity: 0.6;
}

.review-card-stats strong {
    margin-right: 8px;

    color: var(--primary);

    opacity: 1;
}

.review-button.secondary {
    background: transparent;

    border:
        1px solid rgba(255,255,255,0.12);

    color: white;
}

.review-button.secondary:hover {
    border-color: var(--primary);
}


/* =========================================
   COMMUNITY
========================================= */

.reviews-community {
    margin-top: 110px;

    padding: 75px 30px;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,0.08);
}

.reviews-community > span {
    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 4px;
}

.reviews-community h2 {
    margin: 25px 0 15px;

    font-size: clamp(38px, 6vw, 65px);

    line-height: 1;

    letter-spacing: -3px;
}

.reviews-community h2 strong {
    color: var(--primary);
}

.reviews-community p {
    max-width: 550px;

    margin: 25px auto;

    line-height: 1.8;

    font-size: 17px;

    opacity: 0.5;
}

.community-review-button {
    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 15px 22px;

    border-radius: 12px;

    border:
        1px solid rgba(255,255,255,0.12);

    color: white;

    text-decoration: none;

    font-weight: 700;

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.community-review-button:hover {
    transform: translateY(-3px);

    border-color: var(--primary);

    color: var(--primary);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .reviews-page {
        padding: 60px 18px;
    }

    .reviews-hero h1 {
        letter-spacing: -3px;
    }

    .review-featured {
        padding: 30px 22px;
    }

    .review-featured-top {
        align-items: flex-start;

        gap: 25px;
    }

    .review-score strong {
        font-size: 45px;
    }

    .review-featured-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .review-card-v2 {
        padding: 30px 22px;
    }

}

@media (max-width: 500px) {

    .review-featured-top,
    .review-card-header {
        flex-direction: column;
    }

    .review-score {
        margin-top: 15px;
    }

    .review-stats {
        grid-template-columns: 1fr 1fr;
    }

}
/* =========================================
   VIROXP - ABOUT PAGE
========================================= */

.about-page {
    max-width: 1150px;
    margin: 0 auto;
    padding: 90px 25px 110px;
}


/* =========================================
   HERO
========================================= */

.about-hero {
    max-width: 900px;
    padding: 20px 0 100px;
}

.about-kicker {
    display: block;

    margin-bottom: 22px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 4px;
}

.about-hero h1 {
    margin: 0;

    font-size: clamp(55px, 9vw, 105px);

    line-height: 0.9;

    letter-spacing: -6px;

    font-weight: 900;
}

.about-hero h1 span {
    display: block;

    color: var(--primary);
}

.about-intro {
    max-width: 650px;

    margin: 35px 0 0;

    font-size: 21px;

    line-height: 1.7;

    opacity: 0.55;
}


/* =========================================
   GENERAL BLOCK
========================================= */

.about-block {
    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 45px;

    padding: 75px 0;

    border-top:
        1px solid rgba(255,255,255,0.08);
}

.about-number {
    padding-top: 8px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    opacity: 0.7;
}

.about-block-content {
    max-width: 780px;
}

.about-block-content h2 {
    margin: 0 0 30px;

    font-size: clamp(35px, 5vw, 58px);

    line-height: 1;

    letter-spacing: -3px;
}

.about-block-content h2 span {
    display: block;

    color: var(--primary);
}

.about-block-content p {
    max-width: 720px;

    margin: 0 0 22px;

    font-size: 18px;

    line-height: 1.9;

    opacity: 0.62;
}

.about-small-label {
    display: block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    opacity: 0.8;
}

.about-highlight {
    color: var(--primary) !important;

    font-size: 25px !important;

    font-weight: 800;

    opacity: 1 !important;
}


/* =========================================
   TODAY
========================================= */

.about-today {
    position: relative;

    margin: 35px 0;

    padding: 85px 75px;

    overflow: hidden;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(0,217,255,0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.25);
}

.about-today::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -80px;
    bottom: -100px;

    border-radius: 50%;

    border:
        1px solid rgba(0,217,255,0.15);

    box-shadow:
        0 0 80px rgba(0,217,255,0.08);
}

.about-today-label {
    margin-bottom: 20px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}

.about-today h2 {
    margin: 0 0 40px;

    font-size: clamp(45px, 7vw, 80px);

    line-height: 0.95;

    letter-spacing: -4px;
}

.about-today h2 span {
    color: var(--primary);
}

.about-today p {
    max-width: 700px;

    margin: 0 0 20px;

    font-size: 18px;

    line-height: 1.9;

    opacity: 0.65;
}

.about-today strong {
    color: var(--primary);

    font-size: 26px;

    opacity: 1;
}


/* =========================================
   PAUSE
========================================= */

.about-pause {
    padding: 110px 20px;

    text-align: center;
}

.about-pause > span {
    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}

.about-pause h2 {
    margin: 25px 0 10px;

    font-size: clamp(42px, 7vw, 78px);

    line-height: 0.95;

    letter-spacing: -4px;
}

.about-pause p {
    margin: 25px 0 60px;

    color: var(--primary);

    font-size: 24px;

    font-weight: 800;
}

.about-pause-items {
    display: flex;

    justify-content: center;

    gap: 15px;

    max-width: 750px;

    margin: 0 auto;
}

.about-pause-items div {
    flex: 1;

    min-height: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 20px;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid rgba(255,255,255,0.07);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.about-pause-items div:hover {
    transform: translateY(-6px);

    border-color:
        rgba(0,217,255,0.3);

    background:
        rgba(0,217,255,0.04);
}

.about-pause-items strong {
    font-size: 27px;
}

.about-pause-items span {
    font-size: 15px;

    opacity: 0.6;
}


/* =========================================
   OFFER
========================================= */

.about-offer {
    padding: 80px 60px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(0,217,255,0.07),
            rgba(255,255,255,0.015)
        );

    border:
        1px solid rgba(0,217,255,0.12);
}

.about-offer > span {
    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 4px;
}

.about-offer h2 {
    margin: 18px 0 5px;

    font-size: clamp(45px, 7vw, 78px);

    letter-spacing: -4px;

    line-height: 0.95;
}

.about-offer > p:first-of-type {
    margin: 25px 0 35px;

    color: var(--primary);

    font-size: 23px;

    font-weight: 800;

    line-height: 1.5;
}

.about-offer-text {
    max-width: 700px;

    margin: 0;

    font-size: 18px;

    line-height: 1.9;

    opacity: 0.6;
}


/* =========================================
   CLOSING
========================================= */

.about-closing {
    padding: 130px 20px 30px;

    text-align: center;
}

.about-closing-line {
    width: 100%;

    height: 1px;

    margin: 0 auto 50px;

    background:
        rgba(255,255,255,0.08);
}

.about-closing > p {
    margin: 0 0 25px;

    font-size: 19px;

    opacity: 0.45;
}

.about-closing h2 {
    max-width: 900px;

    margin: 0 auto 65px;

    font-size: clamp(40px, 7vw, 80px);

    line-height: 1;

    letter-spacing: -4px;
}

.about-closing h2 span {
    display: block;

    color: var(--primary);
}

.about-closing h3 {
    margin: 0 0 15px;

    font-size: 42px;

    letter-spacing: 6px;

    color: var(--primary);
}

.about-slogan {
    font-size: 15px !important;

    line-height: 1.8;

    opacity: 0.45 !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .about-page {
        padding: 60px 18px 80px;
    }

    .about-hero {
        padding-bottom: 70px;
    }

    .about-hero h1 {
        letter-spacing: -4px;
    }

    .about-block {
        grid-template-columns: 1fr;

        gap: 15px;

        padding: 55px 0;
    }

    .about-number {
        padding: 0;
    }

    .about-today {
        padding: 55px 25px;
    }

    .about-pause {
        padding: 75px 10px;
    }

    .about-pause-items {
        flex-direction: column;
    }

    .about-pause-items div {
        min-height: 100px;
    }

    .about-offer {
        padding: 55px 25px;
    }

    .about-closing {
        padding-top: 90px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 500px) {

    .about-hero h1 {
        font-size: 55px;

        letter-spacing: -3px;
    }

    .about-intro {
        font-size: 18px;
    }

    .about-block-content h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }

    .about-block-content p,
    .about-today p,
    .about-offer-text {
        font-size: 16px;
    }

    .about-closing h2 {
        font-size: 40px;

        letter-spacing: -2px;
    }

}
/* =========================================
   VIROXP - AUTH & PROFILE
========================================= */

/* =========================================
   AUTH PAGES
========================================= */

.auth-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
}

.auth-card {
    position: relative;
    width: min(520px, 100%);
    padding: 45px 42px;
    border-radius: 28px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0, 217, 255, 0.10),
            transparent 45%
        ),
        rgba(10, 14, 22, 0.94);

    border: 1px solid rgba(0, 217, 255, 0.25);

    box-shadow:
        0 0 35px rgba(0, 217, 255, 0.08),
        inset 0 0 30px rgba(255, 255, 255, 0.015);

    backdrop-filter: blur(14px);
}

.auth-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );

    box-shadow: 0 0 15px rgba(0, 217, 255, 0.7);
}

.auth-kicker {
    margin-bottom: 22px;

    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    opacity: 0.8;
}

.auth-card h1 {
    margin: 0 0 8px;

    color: #ffffff;
    font-size: clamp(30px, 5vw, 42px);
    line-height: 1.15;
}

.auth-card h2 {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 22px;
    font-weight: 500;
}

.auth-card h2 span {
    color: var(--primary);
}

.auth-intro {
    margin-bottom: 32px;

    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================
   AUTH MESSAGE
========================================= */

.auth-message {
    margin-bottom: 22px;
    padding: 13px 16px;

    border-radius: 12px;

    color: #ffffff;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.22);

    font-size: 14px;
}


/* =========================================
   AUTH FORM
========================================= */

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-field label {
    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;
    font-weight: 600;
}

.auth-field input {
    width: 100%;
    box-sizing: border-box;

    padding: 15px 17px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 13px;

    outline: none;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.035);

    font-family: inherit;
    font-size: 15px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.auth-field input::placeholder {
    color: rgba(255, 255, 255, 0.30);
}

.auth-field input:focus {
    background: rgba(0, 217, 255, 0.035);

    border-color: rgba(0, 217, 255, 0.65);

    box-shadow:
        0 0 0 3px rgba(0, 217, 255, 0.07),
        0 0 18px rgba(0, 217, 255, 0.08);
}


/* =========================================
   AUTH BUTTON
========================================= */

.auth-button {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 100%;
    margin-top: 8px;
    padding: 15px 20px;

    border: 1px solid rgba(0, 217, 255, 0.45);
    border-radius: 14px;

    color: #061017;
    background: var(--primary);

    font-family: inherit;
    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 0 20px rgba(0, 217, 255, 0.16);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.auth-button span {
    font-size: 20px;
    transition: transform 0.25s ease;
}

.auth-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 30px rgba(0, 217, 255, 0.28);
}

.auth-button:hover span {
    transform: translateX(-4px);
}


/* =========================================
   AUTH FOOTER
========================================= */

.auth-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 28px;

    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;

    transition: opacity 0.2s ease;
}

.auth-footer a:hover {
    opacity: 0.7;
}


/* =========================================
   PROFILE PAGE
========================================= */

.profile-page {
    width: min(1050px, calc(100% - 40px));
    margin: 0 auto;
    padding: 60px 0 90px;
}

.profile-card {
    position: relative;

    padding: 38px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(0, 217, 255, 0.09),
            transparent 35%
        ),
        rgba(10, 14, 22, 0.92);

    border: 1px solid rgba(0, 217, 255, 0.20);

    box-shadow:
        0 0 35px rgba(0, 0, 0, 0.25);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;

    padding-bottom: 30px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.profile-avatar {
    width: 82px;
    height: 82px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--primary);
    background: rgba(0, 217, 255, 0.08);

    border: 1px solid rgba(0, 217, 255, 0.35);

    font-size: 32px;
    font-weight: 800;

    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.10);
}

.profile-info h1 {
    margin: 0 0 6px;

    color: #ffffff;
    font-size: 32px;
}

.profile-info p {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}


/* =========================================
   PROFILE STATS
========================================= */

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 28px;
}

.profile-stat {
    padding: 22px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);

    text-align: center;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.profile-stat:hover {
    transform: translateY(-3px);

    border-color: rgba(0, 217, 255, 0.25);
}

.profile-stat strong {
    display: block;

    margin-bottom: 6px;

    color: var(--primary);
    font-size: 27px;
}

.profile-stat span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
}


/* =========================================
   PROFILE SUGGESTION
========================================= */

.profile-suggestion {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    margin-top: 28px;
    padding: 28px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 217, 255, 0.08),
            rgba(255, 184, 108, 0.035)
        );

    border: 1px solid rgba(0, 217, 255, 0.16);
}

.suggestion-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(0, 217, 255, 0.10);

    font-size: 23px;
}

.suggestion-content {
    flex: 1;
}

.suggestion-content h3 {
    margin: 0 0 8px;

    color: #ffffff;
    font-size: 21px;
}

.suggestion-content p {
    margin: 0 0 10px;

    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    line-height: 1.8;
}

.suggestion-content small {
    display: block;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.32);

    font-size: 12px;
    line-height: 1.6;
}

.suggestion-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 18px;

    border-radius: 12px;

    color: var(--primary);
    background: rgba(0, 217, 255, 0.07);

    border: 1px solid rgba(0, 217, 255, 0.22);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.suggestion-button span {
    transition: transform 0.25s ease;
}

.suggestion-button:hover {
    transform: translateY(-2px);

    background: rgba(0, 217, 255, 0.12);

    border-color: rgba(0, 217, 255, 0.45);
}

.suggestion-button:hover span {
    transform: translateX(-4px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .auth-page {
        padding: 40px 15px;
    }

    .auth-card {
        padding: 32px 23px;
        border-radius: 22px;
    }

    .auth-card h1 {
        font-size: 30px;
    }

    .auth-card h2 {
        font-size: 19px;
    }

    .auth-footer {
        flex-direction: column;
        gap: 5px;
    }

    .profile-page {
        width: calc(100% - 30px);
        padding: 40px 0 60px;
    }

    .profile-card {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-info h1 {
        font-size: 27px;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

    .profile-suggestion {
        flex-direction: column;
        padding: 23px;
    }

    .suggestion-icon {
        width: 44px;
        height: 44px;
    }

}
/* =========================================
   VIROXP - PROFILE
========================================= */

.profile-page {
    width: min(1000px, 92%);
    margin: 80px auto;
    padding: 20px;
}


/* HEADER */

.profile-header {
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 35px;
    margin-bottom: 25px;

    background: rgba(10, 15, 25, 0.85);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 24px;

    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.08);
}

.profile-icon {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 35px;

    border-radius: 50%;

    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.35);

    box-shadow:
        0 0 20px rgba(0, 217, 255, 0.15);
}

.profile-header h1 {
    margin: 0 0 8px;

    color: #ffffff;
    font-size: 30px;
}

.profile-header p {
    margin: 0;

    color: #00d9ff;
    font-size: 20px;
}


/* WELCOME */

.profile-welcome {
    text-align: center;

    padding: 35px;
    margin-bottom: 25px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 217, 255, 0.08),
            rgba(255, 170, 70, 0.05)
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-welcome h2 {
    margin-bottom: 12px;

    color: #ffffff;
    font-size: 28px;
}

.profile-welcome p {
    margin: 0;

    color: #b8c2cc;
    font-size: 17px;
    line-height: 1.8;
}


/* SUGGESTION */

.profile-suggestion {
    display: flex;
    gap: 25px;

    padding: 30px;

    border-radius: 24px;

    background: rgba(10, 15, 25, 0.85);

    border: 1px solid rgba(255, 180, 80, 0.25);

    box-shadow:
        0 0 25px rgba(255, 170, 70, 0.06);
}

.suggestion-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    border-radius: 18px;

    background: rgba(255, 180, 80, 0.08);

    border: 1px solid rgba(255, 180, 80, 0.3);
}

.suggestion-content h3 {
    margin-top: 0;

    color: #ffffff;
    font-size: 23px;
}

.suggestion-content p {
    color: #b8c2cc;
    line-height: 1.8;
}

.suggestion-content small {
    display: block;

    margin-top: 15px;

    color: #7f8b96;
}


/* BUTTON */

.suggestion-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 22px;
    padding: 12px 22px;

    color: #ffffff;
    text-decoration: none;

    border-radius: 12px;

    background: rgba(0, 217, 255, 0.08);

    border: 1px solid rgba(0, 217, 255, 0.35);

    transition: 0.25s ease;
}

.suggestion-button:hover {
    background: #00d9ff;
    color: #05080d;

    box-shadow:
        0 0 20px rgba(0, 217, 255, 0.35);

    transform: translateY(-2px);
}


/* LOGOUT */

.logout-button {
    display: block;

    width: fit-content;

    margin: 30px auto 0;

    padding: 10px 22px;

    color: #9aa5af;
    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;

    transition: 0.25s ease;
}

.logout-button:hover {
    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.3);
}


/* MOBILE */

@media (max-width: 600px) {

    .profile-page {
        margin: 40px auto;
    }

    .profile-header {
        padding: 25px;
    }

    .profile-header h1 {
        font-size: 24px;
    }

    .profile-suggestion {
        flex-direction: column;
    }

    .suggestion-icon {
        width: 55px;
        height: 55px;
    }

}
/* =========================================
   VIROXP - NOSTALGIA GAME LIBRARY
   ========================================= */

.nostalgia-library {
    width: min(1200px, 92%);
    margin: 90px auto 0;
}

.nostalgia-library-header {
    text-align: center;
    margin-bottom: 45px;
}

.nostalgia-library-header span {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 700;

    color: #00d9ff;
}

.nostalgia-library-header h2 {
    margin: 0;

    font-size: clamp(30px, 5vw, 52px);
    font-weight: 800;

    letter-spacing: 1px;
}

.nostalgia-library-header p {
    margin-top: 14px;

    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
}


/* =========================================
   GAME GRID
   ========================================= */

.nostalgia-game-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================
   GAME CARD
   ========================================= */

.nostalgia-game-card {
    position: relative;

    min-height: 300px;

    overflow: hidden;

    border: 1px solid rgba(0, 217, 255, 0.12);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(18, 24, 34, 0.98),
            rgba(7, 10, 16, 0.98)
        );

    cursor: pointer;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.nostalgia-game-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 217, 255, 0.55);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.45),
        0 0 22px rgba(0, 217, 255, 0.08);
}


/* =========================================
   NUMBER
   ========================================= */

.nostalgia-game-number {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 5;

    width: 38px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: rgba(0, 0, 0, 0.72);

    color: #00d9ff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;

    backdrop-filter: blur(8px);
}


/* =========================================
   IMAGE AREA
   ========================================= */

.nostalgia-game-image {
    position: relative;

    height: 185px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 217, 255, 0.14),
            rgba(7, 10, 16, 0.98) 70%
        );
}

.nostalgia-game-image::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.025) 0px,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 4px
        );

    pointer-events: none;
}

.nostalgia-game-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0, 0, 0, 0.68) 100%
        );

    pointer-events: none;
}

.nostalgia-game-image span {
    position: relative;
    z-index: 2;

    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;

    color: rgba(0, 217, 255, 0.65);
}


/* =========================================
   CARD INFO
   ========================================= */

.nostalgia-game-info {
    padding: 18px 18px 20px;
}

.nostalgia-game-info h3 {
    margin: 0;

    font-size: 16px;
    line-height: 1.3;

    color: #ffffff;
}

.nostalgia-game-info p {
    margin: 8px 0 5px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #00d9ff;
}

.nostalgia-game-info small {
    font-size: 11px;

    color: rgba(255, 255, 255, 0.42);
}


/* =========================================
   TV / LIBRARY SEPARATION
   ========================================= */

.nostalgia-hint {
    margin-bottom: 20px;
}

.nostalgia-library::before {
    content: "";

    display: block;

    width: 100%;
    height: 1px;

    margin-bottom: 65px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 217, 255, 0.35),
            transparent
        );
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 1000px) {

    .nostalgia-game-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 720px) {

    .nostalgia-library {
        width: 94%;
        margin-top: 65px;
    }

    .nostalgia-game-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .nostalgia-game-card {
        min-height: 270px;
    }

    .nostalgia-game-image {
        height: 150px;
    }

    .nostalgia-game-info {
        padding: 14px;
    }

    .nostalgia-game-info h3 {
        font-size: 14px;
    }

}


@media (max-width: 460px) {

    .nostalgia-game-grid {
        grid-template-columns: 1fr;
    }

    .nostalgia-game-card {
        min-height: 290px;
    }

    .nostalgia-game-image {
        height: 175px;
    }

}
/* =========================================
   NOSTALGIA GAME IMAGES
   ========================================= */

.nostalgia-game-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.nostalgia-game-card:hover
.nostalgia-game-image img {
    transform: scale(1.06);

    filter: brightness(1.08);
}

.image-loading {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 700;

    color: rgba(0, 217, 255, 0.55);

    animation: nostalgiaLoading 1.2s infinite;
}

@keyframes nostalgiaLoading {

    0% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.35;
    }

}
/* =========================================================
   GAMES - GAME IMAGES
========================================================= */

.game-image {
    width: 190px;
    height: 105px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #0d1118;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.game-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.game-item:hover .game-image img {
    transform: scale(1.06);
    opacity: 0.9;
}


/* Mobile */

@media (max-width: 700px) {

    .game-item {
        gap: 18px;
        padding: 25px 10px;
        align-items: flex-start;
    }

    .game-image {
        width: 110px;
        height: 75px;
    }

    .game-number {
        min-width: 25px;
        font-size: 11px;
    }

    .game-details h2 {
        font-size: 21px;
    }

    .game-details p {
        font-size: 13px;
    }

    .game-rating {
        min-width: 45px;
        font-size: 19px;
    }

}
/* =========================================================
   VIROXP - COMMUNITY SCORE
========================================================= */

.community-rating {

    min-width: 110px;

    text-align: center;

}

.community-rating strong {

    display: block;

    color: var(--primary);

    font-size: 13px;

    font-weight: 900;

    line-height: 1.2;

    white-space: nowrap;

}

.community-rating span {

    display: block;

    margin-top: 7px;

    color: rgba(255, 255, 255, 0.32);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    white-space: nowrap;

}


/* =========================================================
   MOBILE - COMMUNITY SCORE
========================================================= */

@media (max-width: 700px) {

    .community-rating {

        min-width: 85px;

    }

    .community-rating strong {

        font-size: 10px;

    }

    .community-rating span {

        font-size: 7px;

        letter-spacing: 1px;

    }

}
/* =========================================================
   VIROXP - NOSTALGIA PAGE
========================================================= */

.nostalgia-page {

    width: min(1100px, 92%);

    margin: 0 auto;

    padding: 90px 0 130px;

}


/* =========================================================
   HEADER
========================================================= */

.nostalgia-header {

    max-width: 850px;

    margin: 0 auto 70px;

    text-align: center;

}

.nostalgia-label {

    margin-bottom: 25px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 7px;

}

.nostalgia-header h1 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 8vw, 88px);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -4px;

}

.nostalgia-header h1 span {

    display: block;

    color: var(--primary);

}

.nostalgia-intro {

    margin: 32px 0 0;

    color: rgba(255,255,255,.62);

    font-size: 18px;

    line-height: 1.8;

}

.nostalgia-second {

    margin-top: 0;

    color: rgba(255,255,255,.9);

    font-weight: 700;

}


/* =========================================================
   QUESTION BOX
========================================================= */

.nostalgia-question-box {

    position: relative;

    margin: 0 auto 70px;

    padding: 38px 30px;

    text-align: center;

    border: 1px solid rgba(0,217,255,.16);

    border-radius: 18px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0,217,255,.09),
            transparent 65%
        ),
        rgba(255,255,255,.018);

    box-shadow:
        0 0 45px rgba(0,217,255,.035);

}

.nostalgia-question-title {

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 5px;

}

.nostalgia-question-text {

    color: #ffffff;

    font-size: 24px;

    font-weight: 800;

    line-height: 1.5;

}

.nostalgia-question-tags {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;

}

.nostalgia-question-tags span {

    padding: 8px 16px;

    border: 1px solid rgba(0,217,255,.18);

    border-radius: 30px;

    color: rgba(255,255,255,.55);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* =========================================================
   GAME LIST
========================================================= */

.nostalgia-games {

    display: flex;

    flex-direction: column;

}

.nostalgia-game {

    display: grid;

    grid-template-columns: 230px 1fr;

    gap: 35px;

    padding: 30px 20px;

    border-top: 1px solid rgba(255,255,255,.07);

    transition:
        background .3s ease,
        padding .3s ease;

}

.nostalgia-game:last-child {

    border-bottom: 1px solid rgba(255,255,255,.07);

}

.nostalgia-game:hover {

    background: rgba(0,217,255,.025);

    padding-left: 30px;

}


/* =========================================================
   IMAGE
========================================================= */

.nostalgia-game-image {

    width: 230px;

    height: 130px;

    overflow: hidden;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.09);

    background:
        linear-gradient(
            135deg,
            #101721,
            #070a10
        );

}

.nostalgia-game-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease,
        opacity .45s ease;

}

.nostalgia-game:hover img {

    transform: scale(1.06);

    opacity: .88;

}

.nostalgia-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 15px;

    box-sizing: border-box;

    color: rgba(0,217,255,.7);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 2px;

    background:
        radial-gradient(
            circle,
            rgba(0,217,255,.08),
            transparent 65%
        );

}


/* =========================================================
   GAME CONTENT
========================================================= */

.nostalgia-game-content {

    position: relative;

}

.nostalgia-game-number {

    display: block;

    margin-bottom: 7px;

    color: rgba(255,255,255,.22);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;

}

.nostalgia-game-content h2 {

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 30px;

    font-weight: 900;

    letter-spacing: -1px;

}

.nostalgia-game-content p {

    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,.48);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   COMMUNITY QUESTIONS
========================================================= */

.nostalgia-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 18px;

}

.nostalgia-actions span {

    padding: 6px 12px;

    border-radius: 20px;

    border: 1px solid rgba(0,217,255,.12);

    color: rgba(0,217,255,.65);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease;

}

.nostalgia-game:hover .nostalgia-actions span {

    border-color: rgba(0,217,255,.3);

    color: var(--primary);

}


/* =========================================================
   FOOTER
========================================================= */

.nostalgia-footer {

    margin-top: 100px;

    padding-top: 50px;

    text-align: center;

    border-top: 1px solid rgba(255,255,255,.07);

}

.nostalgia-footer span {

    color: var(--primary);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 6px;

}

.nostalgia-footer h2 {

    margin: 18px 0 0;

    color: rgba(255,255,255,.55);

    font-size: 24px;

    line-height: 1.5;

}

.nostalgia-footer strong {

    color: #ffffff;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .nostalgia-page {

        width: 92%;

        padding-top: 65px;

    }

    .nostalgia-header {

        margin-bottom: 45px;

    }

    .nostalgia-header h1 {

        font-size: clamp(42px, 14vw, 65px);

        letter-spacing: -2px;

    }

    .nostalgia-intro {

        font-size: 15px;

    }

    .nostalgia-question-box {

        padding: 28px 18px;

        margin-bottom: 45px;

    }

    .nostalgia-question-text {

        font-size: 19px;

    }

    .nostalgia-game {

        grid-template-columns: 1fr;

        gap: 20px;

        padding: 28px 5px;

    }

    .nostalgia-game:hover {

        padding-left: 5px;

    }

    .nostalgia-game-image {

        width: 100%;

        height: 170px;

    }

    .nostalgia-game-content h2 {

        font-size: 25px;

    }

    .nostalgia-game-content p {

        font-size: 13px;

    }

}
/* =========================================================
   VIROXP - MODERN GAMES PAGE
========================================================= */

.modern-games-page {

    width: min(1250px, 94%);

    margin: 0 auto;

    padding: 90px 0 130px;

}


/* =========================================================
   HEADER
========================================================= */

.modern-games-header {

    max-width: 900px;

    margin: 0 auto 55px;

    text-align: center;

}

.modern-games-label {

    margin-bottom: 25px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 7px;

}

.modern-games-header h1 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 8vw, 92px);

    line-height: .92;

    font-weight: 900;

    letter-spacing: -4px;

}

.modern-games-header h1 span {

    display: block;

    color: var(--primary);

}

.modern-games-header p {

    max-width: 700px;

    margin: 30px auto 0;

    color: rgba(255,255,255,.55);

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   STRIP
========================================================= */

.modern-games-strip {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 45px;

}

.modern-games-strip span {

    padding: 8px 15px;

    border: 1px solid rgba(0,217,255,.14);

    border-radius: 30px;

    color: rgba(255,255,255,.38);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}

.modern-games-strip span:first-child {

    color: var(--primary);

}


/* =========================================================
   CATALOG
========================================================= */

.games-catalog {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

}


/* =========================================================
   GAME CARD
========================================================= */

.modern-game-card {

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 16px;

    background: rgba(255,255,255,.018);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;

}

.modern-game-card:hover {

    transform: translateY(-5px);

    border-color: rgba(0,217,255,.25);

    background: rgba(0,217,255,.025);

    box-shadow:
        0 15px 45px rgba(0,0,0,.25),
        0 0 25px rgba(0,217,255,.04);

}


/* =========================================================
   IMAGE
========================================================= */

.modern-game-image {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #0a0e15;

}

.modern-game-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease,
        opacity .45s ease;

}

.modern-game-card:hover img {

    transform: scale(1.05);

    opacity: .88;

}


/* =========================================================
   NUMBER
========================================================= */

.modern-game-number {

    position: absolute;

    top: 10px;

    right: 10px;

    padding: 5px 8px;

    border-radius: 6px;

    background: rgba(0,0,0,.65);

    backdrop-filter: blur(8px);

    color: rgba(255,255,255,.7);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* =========================================================
   INFO
========================================================= */

.modern-game-info {

    padding: 18px;

}

.modern-game-platform {

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

    opacity: .8;

}

.modern-game-info h2 {

    min-height: 48px;

    margin: 0;

    color: #ffffff;

    font-size: 19px;

    line-height: 1.25;

    font-weight: 850;

}


/* =========================================================
   COMMUNITY
========================================================= */

.modern-game-community {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 17px;

    padding-top: 13px;

    border-top: 1px solid rgba(255,255,255,.06);

}

.modern-game-community span {

    color: var(--primary);

    font-size: 10px;

    font-weight: 900;

}

.modern-game-community small {

    color: rgba(255,255,255,.24);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* =========================================================
   ELITE GAMER
========================================================= */

.elite-gamer-box {

    max-width: 850px;

    margin: 100px auto 0;

    padding: 60px 35px;

    text-align: center;

    border: 1px solid rgba(0,217,255,.17);

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0,217,255,.1),
            transparent 65%
        ),
        rgba(255,255,255,.018);

}

.elite-gamer-label {

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 5px;

}

.elite-gamer-box h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 6vw, 58px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -2px;

}

.elite-gamer-box h2 span {

    display: block;

    color: var(--primary);

}

.elite-gamer-box p {

    margin: 22px auto 28px;

    color: rgba(255,255,255,.48);

    font-size: 15px;

}

.elite-gamer-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 26px;

    border: 1px solid rgba(0,217,255,.32);

    border-radius: 30px;

    background: rgba(0,217,255,.06);

    color: var(--primary);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;

}

.elite-gamer-button:hover {

    transform: translateY(-2px);

    background: rgba(0,217,255,.11);

    box-shadow:
        0 0 28px rgba(0,217,255,.1);

}

.elite-gamer-button span {

    font-size: 18px;

}

.elite-gamer-hint {

    margin-top: 18px;

    color: rgba(255,255,255,.22);

    font-size: 10px;

    letter-spacing: 1px;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1000px) {

    .games-catalog {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

    }

}


@media (max-width: 700px) {

    .modern-games-page {

        width: 92%;

        padding-top: 65px;

    }

    .modern-games-header h1 {

        font-size: clamp(42px, 14vw, 65px);

        letter-spacing: -2px;

    }

    .modern-games-header p {

        font-size: 14px;

    }

    .games-catalog {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;

    }

    .modern-game-info {

        padding: 13px;

    }

    .modern-game-info h2 {

        min-height: 43px;

        font-size: 15px;

    }

    .modern-game-platform {

        font-size: 7px;

    }

    .modern-game-community {

        margin-top: 12px;

        padding-top: 10px;

    }

    .elite-gamer-box {

        margin-top: 65px;

        padding: 40px 20px;

    }

}


@media (max-width: 430px) {

    .games-catalog {

        grid-template-columns: 1fr;

    }

    .modern-game-info h2 {

        font-size: 18px;

    }

}
/* =========================================================
   COMMUNITY DECISION BUTTON
========================================================= */

.community-decision-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 7px 12px;

    border: 1px solid rgba(0,217,255,.22);

    border-radius: 20px;

    background: rgba(0,217,255,.04);

    color: var(--primary);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

    text-decoration: none;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;

}

.community-decision-button:hover {

    background: rgba(0,217,255,.10);

    border-color: rgba(0,217,255,.45);

    box-shadow:
        0 0 18px rgba(0,217,255,.10);

    transform: translateY(-2px);

}
/* =========================================================
   GAMES - OUR PLAYTIME GATEWAY
========================================================= */

.playtime-gateway {

    max-width: 850px;

    margin: 55px auto 70px;

    padding: 42px 30px;

    text-align: center;

    border: 1px solid rgba(0,217,255,.16);

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0,217,255,.08),
            transparent 65%
        ),
        rgba(255,255,255,.018);

}

.playtime-gateway-label {

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 5px;

}

.playtime-gateway h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(28px, 5vw, 48px);

    line-height: 1.1;

    font-weight: 900;

}

.playtime-gateway h2 span {

    display: block;

    color: var(--primary);

}

.playtime-gateway p {

    margin: 18px 0 25px;

    color: rgba(255,255,255,.45);

    font-size: 14px;

}

.playtime-gateway-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 24px;

    border: 1px solid rgba(0,217,255,.3);

    border-radius: 30px;

    background: rgba(0,217,255,.05);

    color: var(--primary);

    text-decoration: none;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;

}

.playtime-gateway-button:hover {

    transform: translateY(-2px);

    background: rgba(0,217,255,.10);

    box-shadow:
        0 0 25px rgba(0,217,255,.10);

}

.playtime-gateway-button span {

    font-size: 17px;

}


/* =========================================================
   OUR PLAYTIME PAGE
========================================================= */

.our-playtime-page {

    width: min(1200px, 94%);

    margin: 0 auto;

    padding: 90px 0 120px;

}

.our-playtime-page-header {

    max-width: 850px;

    margin: 0 auto 60px;

    text-align: center;

}

.our-playtime-page-label {

    margin-bottom: 20px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 6px;

}

.our-playtime-page-header h1 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 8vw, 90px);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -4px;

}

.our-playtime-page-header h1 span {

    display: block;

    color: var(--primary);

}

.our-playtime-page-header p {

    margin: 25px 0 15px;

    color: rgba(255,255,255,.5);

    font-size: 17px;

}

.our-playtime-count {

    color: rgba(0,217,255,.55);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 3px;

}


/* =========================================================
   GRID
========================================================= */

.our-playtime-page-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

}

.our-playtime-card {

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 16px;

    background: rgba(255,255,255,.018);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}

.our-playtime-card:hover {

    transform: translateY(-5px);

    border-color: rgba(0,217,255,.25);

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);

}

.our-playtime-card-image {

    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #080c12;

}

.our-playtime-card-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;

}

.our-playtime-card:hover img {

    transform: scale(1.05);

}

.our-playtime-card-number {

    position: absolute;

    top: 10px;

    right: 10px;

    padding: 5px 8px;

    border-radius: 6px;

    background: rgba(0,0,0,.65);

    color: rgba(255,255,255,.7);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;

}

.our-playtime-card-content {

    padding: 16px;

}

.our-playtime-card-content h2 {

    min-height: 44px;

    margin: 0;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 900;

}

.our-playtime-card-content span {

    display: block;

    margin-top: 12px;

    padding-top: 10px;

    border-top: 1px solid rgba(255,255,255,.06);

    color: var(--primary);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* =========================================================
   FOOTER
========================================================= */

.our-playtime-page-footer {

    margin-top: 80px;

    padding-top: 35px;

    text-align: center;

    border-top: 1px solid rgba(255,255,255,.07);

}

.our-playtime-page-footer p {

    margin-bottom: 20px;

    color: rgba(255,255,255,.45);

    font-size: 14px;

}

.our-playtime-back-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 11px 20px;

    border: 1px solid rgba(0,217,255,.2);

    border-radius: 30px;

    color: var(--primary);

    text-decoration: none;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .our-playtime-page-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

    }

}

@media (max-width: 700px) {

    .playtime-gateway {

        margin: 45px auto 55px;

        padding: 35px 20px;

    }

    .our-playtime-page {

        width: 92%;

        padding-top: 65px;

    }

    .our-playtime-page-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;

    }

    .our-playtime-page-header h1 {

        font-size: 52px;

        letter-spacing: -2px;

    }

    .our-playtime-card-content {

        padding: 13px;

    }

    .our-playtime-card-content h2 {

        font-size: 14px;

    }

}

@media (max-width: 430px) {

    .our-playtime-page-grid {

        grid-template-columns: 1fr;

    }

}
/* =========================================================
   SECRET OUR PLAYTIME ENTRY
========================================================= */

.playtime-secret-entry {

    margin: 35px auto 55px;

    text-align: center;

}

.playtime-secret-label {

    margin-bottom: 8px;

    color: rgba(0,217,255,.45);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 5px;

}

.playtime-secret-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.7);

    font-size: 16px;

    font-weight: 900;

    letter-spacing: 2px;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;

}

.playtime-secret-link span {

    color: var(--primary);

    font-size: 17px;

}

.playtime-secret-link:hover {

    color: var(--primary);

    transform: translateX(-4px);

}

.playtime-secret-entry p {

    margin: 8px 0 0;

    color: rgba(255,255,255,.25);

    font-size: 10px;

}
/* =========================================================
   VIROXP - MY PLAYTIME PAGE
========================================================= */

.my-playtime-page {

    width: min(1200px, 94%);

    margin: 0 auto;

    padding: 90px 0 130px;

}


/* =========================================================
   HEADER
========================================================= */

.my-playtime-header {

    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;

}

.my-playtime-label {

    margin-bottom: 22px;

    color: var(--primary);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 6px;

}

.my-playtime-header h1 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 8vw, 90px);

    line-height: .92;

    font-weight: 900;

    letter-spacing: -4px;

}

.my-playtime-header h1 span {

    display: block;

    color: var(--primary);

}

.my-playtime-header p {

    margin: 28px 0 14px;

    color: rgba(255,255,255,.52);

    font-size: 17px;

    line-height: 1.8;

}

.my-playtime-count {

    color: rgba(255,255,255,.25);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 3px;

}


/* =========================================================
   GRID
========================================================= */

.my-playtime-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

}


/* =========================================================
   CARD
========================================================= */

.my-playtime-card {

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 16px;

    background: rgba(255,255,255,.018);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}

.my-playtime-card:hover {

    transform: translateY(-5px);

    border-color: rgba(0,217,255,.25);

    box-shadow:
        0 15px 45px rgba(0,0,0,.25),
        0 0 25px rgba(0,217,255,.04);

}


/* =========================================================
   IMAGE
========================================================= */

.my-playtime-image {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #080c12;

}

.my-playtime-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease,
        opacity .45s ease;

}

.my-playtime-card:hover .my-playtime-image img {

    transform: scale(1.05);

    opacity: .88;

}


/* =========================================================
   NUMBER
========================================================= */

.my-playtime-number {

    position: absolute;

    top: 10px;

    right: 10px;

    padding: 5px 8px;

    border-radius: 6px;

    background: rgba(0,0,0,.68);

    color: rgba(255,255,255,.7);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* =========================================================
   INFO
========================================================= */

.my-playtime-info {

    padding: 17px;

}

.my-playtime-info h2 {

    min-height: 46px;

    margin: 0;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 900;

}

.my-playtime-info span {

    display: block;

    margin-top: 13px;

    padding-top: 10px;

    border-top: 1px solid rgba(255,255,255,.06);

    color: var(--primary);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* =========================================================
   BOTTOM
========================================================= */

.my-playtime-bottom {

    margin-top: 100px;

    padding-top: 55px;

    text-align: center;

    border-top: 1px solid rgba(255,255,255,.07);

}

.my-playtime-bottom-label {

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 5px;

}

.my-playtime-bottom h2 {

    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: clamp(28px, 5vw, 48px);

    line-height: 1.1;

    font-weight: 900;

}

.my-playtime-bottom h2 span {

    display: block;

    color: #ffffff;

}

.my-playtime-back {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;

    padding: 13px 23px;

    border: 1px solid rgba(0,217,255,.28);

    border-radius: 30px;

    background: rgba(0,217,255,.04);

    color: var(--primary);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

.my-playtime-back:hover {

    transform: translateY(-2px);

    background: rgba(0,217,255,.10);

    box-shadow:
        0 0 25px rgba(0,217,255,.10);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .my-playtime-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

    }

}


@media (max-width: 700px) {

    .my-playtime-page {

        width: 92%;

        padding-top: 65px;

    }

    .my-playtime-header h1 {

        font-size: 52px;

        letter-spacing: -2px;

    }

    .my-playtime-header p {

        font-size: 14px;

    }

    .my-playtime-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;

    }

    .my-playtime-info {

        padding: 13px;

    }

    .my-playtime-info h2 {

        min-height: 40px;

        font-size: 14px;

    }

}


@media (max-width: 430px) {

    .my-playtime-grid {

        grid-template-columns: 1fr;

    }

}