.rdp-wordmark {
    min-width: 11rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
    line-height: 1;
    contain: layout paint;
    transition: none !important;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
}

.rdp-wordmark:focus-visible {
    outline: 2px solid rgba(168, 85, 247, 0.85);
    outline-offset: 0.35rem;
}

.rdp-wordmark img {
    width: 5.2rem !important;
    height: 3.55rem !important;
    display: block;
    flex: 0 0 5.2rem;
    object-fit: contain;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    transform: none !important;
    transition: none !important;
}

.rdp-wordmark:hover img {
    transform: none !important;
}

.rdp-wordmark h1 {
    text-transform: none !important;
    letter-spacing: 0.08em !important;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    min-width: 5rem;
    transform: none !important;
    transition: none !important;
}

.site-nav-shell {
    background: rgba(4, 4, 8, 0.94);
    border-top: 1px solid rgba(168, 85, 247, 0.24);
    border-bottom: 1px solid rgba(88, 28, 135, 0.5);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.site-nav-inner {
    width: min(100%, 80rem);
    min-height: 4.5rem;
    margin: 0 auto;
    padding: 0.65rem 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
}

.site-nav-actions {
    display: contents;
}

.site-nav-menu,
.site-nav-tools {
    display: flex;
    align-items: center;
    gap: 1.05rem;
}

.site-nav-menu {
    grid-column: 2;
    justify-self: center;
    gap: 2.25rem;
}

.site-nav-tools {
    grid-column: 3;
    justify-self: end;
}

.nav-menu-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 2.5rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    transition: color 0.18s ease;
}

.nav-menu-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
}

.nav-menu-label::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.05rem;
    height: 2px;
    border-radius: 999px;
    background: #a855f7;
    opacity: 0;
    transform: scaleX(0.45);
    transform-origin: center;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu-button:hover,
.nav-menu-button:focus-visible,
.nav-menu-button--active {
    color: #c084fc;
}

.nav-menu-button--active .nav-menu-label::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-chevron {
    width: 0.85rem;
    height: 0.85rem;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    left: -0.35rem;
    right: -0.35rem;
    top: 100%;
    height: 0.65rem;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.12rem);
    left: 50%;
    z-index: 60;
    min-width: 10rem;
    padding: 0.45rem;
    border: 1px solid rgba(168, 85, 247, 0.38);
    border-radius: 0.7rem;
    background: rgba(5, 5, 9, 0.98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42), 0 0 22px rgba(147, 51, 234, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -0.25rem);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu button {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    padding: 0.55rem 0.75rem;
    color: rgba(248, 250, 252, 0.82);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    text-align: left;
    transition: background 0.18s ease, color 0.18s ease;
}

.nav-dropdown-menu button:hover,
.nav-dropdown-menu button:focus-visible {
    background: rgba(147, 51, 234, 0.18);
    color: #fff;
}

.nav-dropdown-menu button:disabled {
    color: rgba(148, 163, 184, 0.42);
    cursor: not-allowed;
}

.nav-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    background: transparent;
    color: rgba(248, 250, 252, 0.92);
    transition: color 0.18s ease, transform 0.18s ease;
}

.nav-icon-button:hover,
.nav-icon-button:focus-visible {
    color: #c084fc;
    transform: translateY(-1px);
}

.nav-icon-button svg {
    width: 1.1rem;
    height: 1.1rem;
}

.nav-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.35rem;
    border-radius: 0.35rem !important;
    border: 1px solid rgba(168, 85, 247, 0.58) !important;
    background: #000 !important;
    padding: 0.55rem 1.05rem;
    color: #c084fc !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 0 rgba(147, 51, 234, 0);
}

.nav-login-button svg {
    width: 0.95rem;
    height: 0.95rem;
}

.nav-login-button:hover {
    border-color: rgba(192, 132, 252, 0.82) !important;
    background: rgba(126, 34, 206, 0.22) !important;
    color: #fff !important;
    box-shadow: 0 0 12px rgba(147, 51, 234, 0.24);
}

.nav-profile-menu {
    position: relative;
}

.nav-profile-menu summary {
    cursor: pointer;
    list-style: none;
}

.nav-profile-menu summary::-webkit-details-marker {
    display: none;
}

.nav-profile-chevron {
    width: 0.85rem !important;
    height: 0.85rem !important;
    transition: transform 0.18s ease;
}

.nav-profile-menu[open] .nav-profile-chevron {
    transform: rotate(180deg);
}

.nav-profile-dropdown {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    z-index: 80;
    width: 10.5rem;
    padding: 0.4rem;
    border: 1px solid rgba(168, 85, 247, 0.46);
    border-radius: 0.45rem;
    background: #050507;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.nav-profile-dropdown button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.7rem;
    border: 0;
    border-radius: 0.3rem;
    background: transparent;
    color: #e5e7eb;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: left;
}

.nav-profile-dropdown button:hover,
.nav-profile-dropdown button:focus-visible {
    background: rgba(147, 51, 234, 0.18);
    color: #fff;
}

.nav-profile-dropdown svg {
    width: 1rem;
    height: 1rem;
    color: #c084fc;
}

.nav-logout-button {
    border: 0;
    background: transparent;
    color: rgba(203, 213, 225, 0.78);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-logout-button:hover,
.nav-logout-button:focus-visible {
    color: #fff;
}

.rdp-hero {
    min-height: clamp(24rem, 52vh, 34rem);
    align-items: center;
    justify-content: center;
}

.rdp-hero__image {
    object-position: 70% center;
    filter: saturate(0.9) contrast(1.04) brightness(0.82);
}

.rdp-hero__shade {
    background:
        radial-gradient(circle at 76% 44%, rgba(126, 34, 206, 0.22), transparent 32%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 36%, rgba(0, 0, 0, 0.2) 72%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.68));
}

.rdp-hero__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: inherit;
    padding: 4.25rem 0 3.25rem;
    text-align: left;
}

.rdp-hero__copy {
    width: min(42rem, 100%);
}

.rdp-hero__title {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(3rem, 5.45vw, 5.35rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
}

.rdp-hero__line {
    display: block;
    color: #fff;
    white-space: nowrap;
}

.rdp-hero__accent {
    color: #7c3aed;
}

.rdp-hero__subtitle {
    margin-top: 1.15rem;
    color: rgba(226, 232, 240, 0.86);
    font-size: clamp(1rem, 1.45vw, 1.28rem);
    line-height: 1.5;
}

.rdp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

.rdp-hero__button {
    min-width: 9.6rem;
    text-align: center;
}

.rdp-hero__button--about {
    border-color: #7c3aed;
    background: #7c3aed;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(196, 181, 253, 0.08);
}

.rdp-hero__button--about:hover {
    border-color: #7c3aed;
    background: #7c3aed;
    color: #fff;
}

.rdp-hero__button--primary {
    border-color: #7c3aed;
    background: #000;
    color: #7c3aed;
}

.home-actions-section {
    padding-top: 2.35rem;
}

.home-action h3 {
    text-align: center;
}

.home-action h3::after {
    display: block;
    min-height: 2.5rem;
    margin-top: 0.75rem;
    color: rgba(209, 213, 219, 0.86);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.35rem;
    text-transform: none;
}

.home-action:nth-child(1) h3::after {
    content: "Hacker-free gameplay";
}

.home-action:nth-child(2) h3::after {
    content: "Explore guides, lore, the Player Gallery, and more";
}

.home-action:nth-child(3) h3::after {
    content: "Share & preserve your knowledge, stories, memories and more";
}

.home-action {
    border-radius: 1.25rem;
    background: rgba(0, 0, 0, 0.36);
    border-color: rgba(168, 85, 247, 0.76);
    box-shadow: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-action:hover {
    border-color: rgba(192, 132, 252, 0.78);
    box-shadow: none;
    transform: translateY(-2px);
}

.home-action > div {
    width: 100%;
    flex-direction: column;
}

.home-action .home-action__button {
    width: 100%;
    align-self: stretch;
    text-align: center;
}

.home-action__button {
    border: 1px solid rgba(168, 85, 247, 0.76);
    background: #000;
    color: #c084fc;
}

.home-action__button:hover {
    border-color: #c084fc;
    background: #7e22ce;
    color: #fff;
    box-shadow: 0 0 18px rgba(147, 51, 234, 0.38);
}

.rdp-hero .rdp-hero__button--about {
    border-color: #7c3aed;
    background: #7c3aed;
    color: #fff;
    font-weight: 700;
    box-shadow: none;
}

.rdp-hero .rdp-hero__button--about:hover {
    border-color: #8b5cf6;
    background: #8b5cf6;
}

.rdp-hero .rdp-hero__button--primary {
    border-color: #7c3aed;
    background: #000;
    color: #7c3aed;
    font-weight: 800;
    text-shadow: 0 0 0.01px currentColor;
}

.rdp-hero .rdp-hero__button--primary:hover {
    border-color: #7c3aed;
    background: #7c3aed;
    color: #fff;
    font-weight: 700;
    text-shadow: none;
}

.account-shell {
    width: min(44rem, 100%);
    margin: 0 auto;
}

.account-tabs {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-bottom: 0;
    border-radius: 1.25rem 1.25rem 0 0;
    background: rgba(255, 255, 255, 0.045);
}

.account-tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.9rem 1.25rem;
    color: rgba(209, 213, 219, 0.72);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}

.account-tab + .account-tab {
    border-left: 1px solid rgba(168, 85, 247, 0.18);
}

.account-tab:hover {
    background: rgba(126, 34, 206, 0.42);
    color: #fff;
}

.account-tab--active {
    background: #7e22ce;
    color: #fff;
}

.account-tab:first-child.account-tab--active {
    border-top-left-radius: 1.15rem;
}

.account-tab:last-child.account-tab--active {
    border-top-right-radius: 1.15rem;
}

.account-panel {
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-radius: 0 0 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.045);
    padding: 1.5rem;
}

.account-panel--standalone {
    position: relative;
    border-radius: 1.25rem;
}

.account-tabs + .account-panel {
    margin-top: -1px;
}

.account-panel-title {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.05;
}

.account-note {
    color: #c084fc;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.account-link {
    display: block;
    width: fit-content;
    margin: -0.25rem auto 0;
    border: 0;
    background: transparent;
    color: rgba(192, 132, 252, 0.9);
    font-size: 0.9rem;
    text-align: center;
}

.account-link:hover,
.account-link:focus-visible {
    color: #fff;
}

.account-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.26);
    color: #c084fc;
    font-size: 1.25rem;
    line-height: 1;
}

.account-back-button svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke-width: 2.5;
}

.account-back-button:hover,
.account-back-button:focus-visible {
    border-color: rgba(192, 132, 252, 0.82);
    color: #fff;
}

@media (min-width: 768px) {
    .account-panel {
        padding: 2.5rem;
    }
}

.home-info-panel {
    min-height: 8rem;
    border-top: 1px solid rgba(168, 85, 247, 0.28);
    padding-top: 1.5rem;
}

.home-info-panel h2 {
    font-size: clamp(1.875rem, 4vw, 3rem) !important;
    line-height: 1.1 !important;
}

.contacts-placeholder {
    min-height: 0;
    border-width: 1px 0 0;
    border-color: rgba(255, 255, 255, 0.12);
    background: transparent;
    padding: 1.5rem 0 0;
}

.contacts-placeholder h2 {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}

.contact-slot {
    min-height: 0;
    border: 0;
    background: transparent;
}

@media (max-width: 900px) {
    .site-nav-inner {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .site-nav-actions {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .site-nav-menu {
        flex-wrap: wrap;
        gap: 0.85rem;
        justify-self: auto;
    }
}

@media (max-width: 640px) {
    .rdp-wordmark {
        min-width: 0;
    }

    .rdp-wordmark h1 {
        display: block !important;
        font-size: 1.25rem;
    }

    .rdp-wordmark img {
        width: 4.25rem !important;
        height: 2.9rem !important;
    }

    .site-nav-tools {
        margin-left: auto;
        gap: 0.45rem;
    }

    .nav-login-button {
        padding-inline: 0.75rem;
    }

    .rdp-hero {
        min-height: 28rem;
    }

    .rdp-hero__image {
        object-position: 64% center;
    }

    .rdp-hero__shade {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 72%, rgba(0, 0, 0, 0.34)),
            linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
    }

    .rdp-hero__content {
        padding: 3.25rem 0 2.5rem;
    }

    .rdp-hero__actions {
        width: 100%;
    }

    .rdp-hero__button {
        flex: 1 1 11rem;
    }
}

@media (min-width: 768px) and (max-width: 1180px) and (max-height: 760px) {
    .rdp-hero {
        min-height: 25rem;
    }

    .rdp-hero__content {
        padding-top: 3rem;
        padding-bottom: 2.5rem;
    }

    .rdp-hero__title {
        font-size: clamp(2.75rem, 5.2vw, 4.6rem);
    }

    .home-actions-section {
        padding-top: 1rem;
    }
}

@media (min-width: 1024px) {
}
