:root {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --panel: #111827;
    --text-primary: #e5e7eb;
    --text-secondary: #94a3b8;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --cell-bg: #0b1220;
    --cell-border: #334155;
    --board-border: #475569;
    --ad-border: #6b7280;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, var(--bg-secondary), var(--bg-primary) 65%);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

#layout-wrapper {
    width: 100%;
    height: auto !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    box-sizing: border-box;
    overflow: visible;
    background: radial-gradient(circle at top, var(--bg-secondary), var(--bg-primary) 65%);
}

#sidebar-left,
#sidebar-right {
    display: none;
    width: 360px;
    max-width: 360px;
    height: calc(100vh - 1.5rem);
    overflow-y: auto;
    flex-shrink: 0;
}

#sidebar-right {
    display: none;
    padding: 0.75rem 0.5rem 0.75rem 0;
    align-self: center;
    scrollbar-gutter: stable;
}

#sidebar-right .story-section {
    width: 100%;
    max-width: none;
    margin: 0;
}

#main-game-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 100vh;
    padding-top: 2rem;
    overflow: visible;
}

@media (min-width: 1100px) {
    #layout-wrapper {
        justify-content: center;
        gap: 1rem;
        padding: 0.75rem;
    }

    #main-game-column {
        width: auto !important;
        flex: 0 0 auto;
    }

    #sidebar-right {
        display: block;
    }
}

@media (max-width: 1099px) {
    #sidebar-right {
        display: none !important;
    }
}

.project-credit {
    position: static;
    text-align: center;
    color: #ccc;
    font-size: 0.8rem;
    margin: 0 0 12px 0;
    padding: 0 1rem;
}

.privacy-link {
    position: fixed;
    bottom: 20px;
    right: 25px;
    z-index: 9999;
    font-size: 0.65rem;
    color: #555;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.privacy-link:hover {
    opacity: 0.9;
}

.story-floating-link {
    position: fixed;
    top: 20px;
    left: 25px;
    z-index: 9999;
    font-size: 0.65rem;
    color: #555;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    display: none;
}

.story-floating-link:hover {
    opacity: 0.9;
}

.ad-slot-vertical {
    width: 300px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--ad-border);
    border-radius: 10px;
    color: #9ca3af;
    background-color: rgba(15, 23, 42, 0.35);
}

.ad-slot-vertical::before {
    content: "Anuncio Vertical";
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
}

.game-container {
    width: 90% !important;
    max-width: 400px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem;
    background-color: rgba(17, 24, 39, 0.7);
    border: 1px solid #334155;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    overflow: visible;
    max-height: none;
}

#start-screen,
#game-lobby {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

#start-screen h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4.5vw, 2.4rem);
    line-height: 1.1;
    text-align: center;
    color: var(--accent);
    text-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}

.shiny-title {
    color: transparent;
    background-image: linear-gradient(110deg, #bfdbfe 0%, #e0f2fe 40%, #93c5fd 50%, #e0f2fe 60%, #bfdbfe 100%);
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: titleGlowSweep 5.8s ease-in-out infinite;
    text-shadow: 0 6px 20px rgba(147, 197, 253, 0.3);
}

.title-hidden {
    display: none;
}

@keyframes titleGlowSweep {
    0% {
        background-position: 180% 0;
        filter: drop-shadow(0 0 0 rgba(147, 197, 253, 0));
    }

    45% {
        filter: drop-shadow(0 0 9px rgba(147, 197, 253, 0.45));
    }

    100% {
        background-position: -120% 0;
        filter: drop-shadow(0 0 0 rgba(147, 197, 253, 0));
    }
}

.story-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    border: 1px solid #60a5fa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.32);
    transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.story-link-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.36);
    filter: brightness(1.04);
}

.story-link-btn:active {
    transform: translateY(0);
}

#seccion-informativa-final {
    width: 90%;
    max-width: 950px;
    margin: 50px auto;
    color: #94a3b8;
    text-align: justify;
    line-height: 1.8;
    border-top: 1px solid #334155;
    padding-top: 30px;
    display: none;
}

#seccion-informativa-final h2 {
    color: #3b82f6;
    font-size: 1.6rem;
    margin-top: 30px;
}

#seccion-informativa-final p {
    margin-bottom: 15px;
}

#info-gato {
    width: 95%;
    max-width: 1000px;
    margin: 60px auto;
    color: #cbd5e1;
    text-align: justify;
    line-height: 1.8;
    font-size: 1.05rem;
}

#info-gato h2 {
    color: #60a5fa;
    font-size: 1.8rem;
    margin-top: 40px;
    border-bottom: 1px solid #334155;
    padding-bottom: 10px;
}

#info-gato p {
    margin-bottom: 20px;
}

.story-section {
    width: 100%;
    max-width: 360px;
    margin: 0.25rem 0 0.5rem;
    padding: 0.95rem 1rem;
    border: 1px solid #475569;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.72));
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
    color: var(--text-primary);
    text-align: left;
}

.story-section h2 {
    margin: 0 0 0.8rem;
    padding-bottom: 0.55rem;
    font-size: 1.15rem;
    line-height: 1.25;
    color: #eff6ff;
    border-bottom: 1px solid #334155;
    text-align: center;
}

.story-section p {
    margin: 0 0 0.6rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.story-section p:last-child {
    margin-bottom: 0;
}

.story-section p strong {
    display: block;
    margin: 0.35rem 0 0.35rem;
    color: #f8fafc;
    font-size: 0.98rem;
    line-height: 1.3;
}

#auth-name,
#auth-pin,
#pvp-player1,
#pvp-player2 {
    width: 100%;
    max-width: 320px;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    border: 1px solid #334155;
    background-color: #0f172a;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#difficulty-selector {
    width: 100%;
    max-width: 320px;
    min-height: 40px;
    padding: 0.65rem 2.2rem 0.65rem 0.8rem;
    border-radius: 10px;
    border: 1px solid #334155;
    background-color: #0f172a;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    touch-action: manipulation;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #94a3b8 50%), linear-gradient(135deg, #94a3b8 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#auth-name::placeholder,
#auth-pin::placeholder,
#pvp-player1::placeholder,
#pvp-player2::placeholder {
    color: #64748b;
}

#auth-name:focus,
#auth-pin:focus,
#pvp-player1:focus,
#pvp-player2:focus,
#difficulty-selector:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

#auth-section button,
#start-screen button {
    width: 100%;
}

#auth-section {
    width: 90% !important;
    max-width: 400px !important;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    align-items: center;
    justify-items: center;
    gap: 0.5rem;
    position: relative;
    margin: 0 auto !important;
}

.auth-view {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 320px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(8px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease;
}

.auth-view-visible {
    opacity: 1;
    transform: translateY(0);
    max-height: 320px;
    pointer-events: auto;
}

#selection-section {
    width: 90% !important;
    max-width: 400px !important;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    margin: 0 auto !important;
    text-align: center;
}

.mode-panel {
    width: 100%;
    max-width: 320px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.7rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(8px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease;
}

.mode-panel-visible {
    opacity: 1;
    transform: translateY(0);
    max-height: 420px;
    pointer-events: auto;
}

.menu-note {
    margin: -0.1rem 0 0.1rem;
    font-size: 0.78rem;
    color: #fcd34d;
}

.welcome-text {
    margin: 0;
    font-size: 1.05rem;
    color: #ffffff;
    text-align: center;
}

.link-btn {
    display: block;
    margin: 0 auto;
    border: 1px solid #334155;
    background: #1f2937;
    color: #d1d5db;
    border-radius: 8px;
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
    width: 100%;
    max-width: 320px;
    box-shadow: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.link-btn:hover {
    border-color: #ef9a9a;
    background: #7f1d1d;
    color: #ffe4e6;
}

.helper-text {
    margin: 0;
    min-height: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.92rem;
}

.auth-message-error {
    color: #fca5a5;
}

#ranking-inicio {
    width: 100%;
    max-width: 320px;
    margin-top: -0.15rem;
    padding: 0.85rem 1rem 0.95rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.24);
}

#ranking-inicio h2 {
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 0.02em;
}

#ranking-inicio ul {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: ranking-position;
    display: grid;
    gap: 0.4rem;
}

#ranking-inicio li {
    counter-increment: ranking-position;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.52rem 0.7rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.24);
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.35;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#ranking-inicio li:hover {
    background: rgba(37, 99, 235, 0.14);
    box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.12), 0 8px 18px rgba(37, 99, 235, 0.16);
    transform: translateY(-1px);
}

#ranking-inicio li:last-child {
    border-bottom: none;
}

#ranking-inicio li::before {
    flex: 0 0 auto;
    min-width: 2.4ch;
    color: #cbd5e1;
    font-weight: 700;
    text-align: right;
    content: counter(ranking-position) ".";
}

#ranking-inicio li:nth-child(1)::before {
    content: "🥇";
}

#ranking-inicio li:nth-child(2)::before {
    content: "🥈";
}

#ranking-inicio li:nth-child(3)::before {
    content: "🥉";
}

#ranking-inicio li .ranking-name {
    color: var(--text-primary);
    font-weight: 600;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#ranking-inicio li .ranking-wins {
    flex: 0 0 auto;
    font-size: 0.98rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent), #7dd3fc 65%, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 14px rgba(37, 99, 235, 0.3);
}

#ranking-inicio .ranking-empty,
#ranking-inicio .ranking-error {
    margin: 0;
    font-size: 0.88rem;
    text-align: center;
    color: var(--text-secondary);
}

#ranking-inicio .ranking-error {
    color: #fca5a5;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 85px);
    grid-template-rows: repeat(3, 85px);
    gap: 6px;
    padding: 8px;
    border: 2px solid var(--board-border);
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a, #111827);
}

.cell {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    border: 1px solid var(--cell-border);
    border-radius: 10px;
    background-color: var(--cell-bg);
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.cell:hover {
    transform: translateY(-2px);
    border-color: #64748b;
    background-color: #111a2d;
}

.status {
    margin: 0.3rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

#reset-btn,
#auth-submit-btn,
#auth-back-btn,
#auth-login-btn,
#auth-register-btn,
#btn-pvp,
#btn-ai-mode,
#btn-online-mode,
#pvp-start-btn,
#mode-ai-back-btn,
#mode-pvp-back-btn,
#start-game-btn {
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--accent);
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.28);
}

#reset-btn:hover,
#auth-submit-btn:hover,
#auth-back-btn:hover,
#auth-login-btn:hover,
#auth-register-btn:hover,
#btn-pvp:hover,
#btn-ai-mode:hover,
#pvp-start-btn:hover,
#mode-ai-back-btn:hover,
#mode-pvp-back-btn:hover,
#start-game-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

#reset-btn:active,
#auth-submit-btn:active,
#auth-back-btn:active,
#auth-login-btn:active,
#auth-register-btn:active,
#btn-pvp:active,
#btn-ai-mode:active,
#pvp-start-btn:active,
#mode-ai-back-btn:active,
#mode-pvp-back-btn:active,
#start-game-btn:active {
    transform: translateY(0);
}

#auth-login-btn,
#auth-register-btn,
#auth-submit-btn,
#auth-back-btn,
#btn-pvp,
#btn-ai-mode,
#pvp-start-btn,
#start-game-btn,
#mode-ai-back-btn,
#mode-pvp-back-btn {
    color: #ffffff;
    font-weight: 700;
    border: 1px solid #60a5fa;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.32);
}

#auth-login-btn:hover,
#auth-register-btn:hover,
#auth-submit-btn:hover,
#auth-back-btn:hover,
#btn-pvp:hover,
#btn-ai-mode:hover,
#pvp-start-btn:hover,
#start-game-btn:hover,
#mode-ai-back-btn:hover,
#mode-pvp-back-btn:hover {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.36);
    filter: brightness(1.04);
}

#btn-online-mode:disabled {
    border: 1px solid #60a5fa;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    font-weight: 700;
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.2);
}

.ad-slot {
    width: 300px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--ad-border);
    border-radius: 10px;
    color: #9ca3af;
    background-color: rgba(15, 23, 42, 0.35);
}

.ad-slot::before {
    content: "Anuncio";
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

#start-screen {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    align-items: center;
    justify-items: center;
}

#start-screen h1,
#auth-section,
#selection-section {
    grid-column: 1 / -1;
}

#auth-name,
#auth-pin,
#auth-submit-btn,
#auth-back-btn,
#auth-login-btn,
#auth-register-btn,
#btn-ai-mode,
#btn-online-mode,
#mode-ai-back-btn,
#mode-pvp-back-btn,
#pvp-player1,
#pvp-player2,
#pvp-start-btn,
#auth-message,
#mode-message,
#difficulty-selector,
#start-game-btn,
.welcome-text,
#auth-section .ad-slot,
#selection-section .ad-slot {
    grid-column: 1 / -1;
}

.hidden {
    display: none;
}

#auth-section .ad-slot,
#selection-section .ad-slot {
    margin-top: 0.5rem;
}

#profile-panel {
    width: 100%;
    max-width: 340px;
    padding: 0.6rem 0.75rem;
    border: 1px solid #334155;
    border-radius: 12px;
    background-color: rgba(15, 23, 42, 0.55);
}

#profile-panel h2 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    color: var(--accent);
}

#profile-panel p {
    margin: 0.15rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

#profile-pvp-score {
    color: #dbeafe;
    font-size: 0.88rem;
    line-height: 1.5;
}

.game-announcement {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(88vw, 440px);
    transform: translate(-50%, -50%);
    padding: 1rem 1.2rem;
    border-radius: 14px;
    border: 2px solid transparent;
    background: rgba(15, 23, 42, 0.88);
    box-shadow: 0 20px 48px rgba(2, 6, 23, 0.65);
    backdrop-filter: blur(4px);
    text-align: center;
    font-size: clamp(1.05rem, 2.8vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    z-index: 10000;
    animation: gameAnnouncementPop 0.32s cubic-bezier(0.2, 0.85, 0.28, 1.2);
}

.game-announcement.victory {
    color: #86efac;
    border-color: #22c55e;
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

.game-announcement.draw {
    color: #facc15;
    border-color: #eab308;
    text-shadow: 0 0 12px rgba(250, 204, 21, 0.42);
}

.game-announcement.defeat {
    color: #f87171;
    border-color: #ef4444;
    text-shadow: 0 0 12px rgba(239, 68, 68, 0.45);
}

@keyframes gameAnnouncementPop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.75);
    }

    70% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.04);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (min-width: 1024px) {
    #layout-wrapper {
        display: flex !important;
        gap: 1rem;
        padding: 1rem;
    }

    #sidebar-left,
    #sidebar-right {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

    #main-game-column {
        width: 100% !important;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {

    #sidebar-left,
    #sidebar-right {
        display: none !important;
    }

    #layout-wrapper {
        padding: 0.5rem;
    }

    .project-credit {
        font-size: 0.65rem;
        padding: 0 1.25rem;
    }

    .game-container {
        width: min(95vw, 100%);
        padding: 0.8rem;
        gap: 0.6rem;
    }

    .board {
        grid-template-columns: repeat(3, 75px);
        grid-template-rows: repeat(3, 75px);
        gap: 5px;
        padding: 6px;
    }

    .cell {
        width: 75px;
        height: 75px;
        font-size: 1.5rem;
    }

    .ad-slot {
        width: min(300px, 88vw);
    }

    #auth-section button,
    #start-screen button,
    #reset-btn {
        width: 100%;
        max-width: 320px;
    }

    #auth-section {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    #selection-section {
        min-height: auto;
    }

    .link-btn {
        width: 100%;
        max-width: 320px;
        margin: 0.2rem auto 0;
    }

    .privacy-link {
        font-size: 0.75rem;
        bottom: 30px;
        right: 15px;
        opacity: 0.8;
        padding: 0.25rem 0.5rem;
        background-color: rgba(15, 23, 42, 0.5);
        border-radius: 4px;
    }

    .game-announcement {
        width: min(92vw, 360px);
        padding: 0.85rem 0.95rem;
        border-radius: 12px;
        font-size: clamp(0.95rem, 4.5vw, 1.15rem);
    }
}
