* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: black;
    color: #00ff9c;
    font-family: monospace;
    height: 100%;
    overflow: hidden;
    cursor: none;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 156, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 214, 114, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 255, 156, 0.08) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 156, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 156, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.custom-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: radial-gradient(
        circle,
        rgba(0, 255, 156, 0.8) 0%,
        rgba(0, 255, 156, 0.4) 50%,
        transparent 100%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    filter: blur(1px);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 255, 156, 0.5);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: radial-gradient(
        circle,
        rgba(0, 214, 114, 0.6) 0%,
        rgba(0, 214, 114, 0.2) 50%,
        transparent 100%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: screen;
    filter: blur(0.5px);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px rgba(0, 214, 114, 0.4);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

body.cursor-hover .custom-cursor {
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.85) 0%,
        rgba(59, 130, 246, 0.45) 50%,
        transparent 100%
    );
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

body.cursor-hover .cursor-trail {
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.65) 0%,
        rgba(37, 99, 235, 0.25) 50%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

body.error-theme.cursor-hover .custom-cursor,
body.error-theme.cursor-hover .cursor-trail {
    background: inherit;
    box-shadow: inherit;
}

.click-effect {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9997;
    border: 1px solid rgba(0, 255, 156, 0.65);
    box-shadow: 0 0 16px rgba(0, 255, 156, 0.25);
    animation: clickRipple 0.55s ease-out forwards;
}

body.cursor-hover .click-effect {
    border-color: rgb(0, 98, 255);
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.25);
}

body.error-theme .click-effect {
    border-color: rgba(220, 38, 38, 0.75);
    box-shadow: 0 0 16px rgba(220, 38, 38, 0.25);
}

@keyframes clickRipple {
    0% {
        opacity: 1;
        width: 10px;
        height: 10px;
    }
    100% {
        opacity: 0;
        width: 44px;
        height: 44px;
    }
}

body.error-theme .custom-cursor {
    background: radial-gradient(
        circle,
        rgba(220, 38, 38, 0.8) 0%,
        rgba(220, 38, 38, 0.4) 50%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

body.error-theme .cursor-trail {
    background: radial-gradient(
        circle,
        rgba(185, 28, 28, 0.6) 0%,
        rgba(185, 28, 28, 0.2) 50%,
        transparent 100%
    );
    box-shadow: 0 0 8px rgba(185, 28, 28, 0.4);
}

body.error-theme::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(185, 28, 28, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
}

body.error-theme::after {
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.04) 1px, transparent 1px);
}

#welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease-out, visibility 0.8s;
    visibility: visible;
    overflow: hidden;
}

#welcome-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 156, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 214, 114, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 255, 156, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
    transition: background 0.5s ease;
}

body.error-theme #welcome-screen::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(185, 28, 28, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
}

#welcome-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 156, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 156, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
    transition: background-image 0.5s ease;
}

body.error-theme #welcome-screen::after {
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.04) 1px, transparent 1px);
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

#welcome-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.welcome-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.welcome-status {
    font-size: 32px;
    color: #00ff9c;
    margin-bottom: 30px;
    letter-spacing: 8px;
    text-shadow: 0 0 20px #00ff9c, 0 0 40px #00ff9c;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, text-shadow 0.3s;
}

.welcome-status.error-status {
    color: #ff4444;
    text-shadow: 0 0 20px #ff4444, 0 0 40px #ff4444;
}

.welcome-divider {
    width: 420px;
    height: 16px;
    margin: 0 auto 18px;
    position: relative;
    opacity: 0.75;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-6px);
}

.welcome-divider.visible {
    opacity: 0.75;
    transform: translateY(0);
}

#welcome-screen .welcome-status {
    margin-bottom: -10px;
}

#welcome-screen .welcome-divider {
    margin-bottom: 20px;
}

.welcome-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, rgba(0, 255, 156, 0.7), transparent);
    box-shadow: 0 0 14px rgba(0, 255, 156, 0.35);
}

.welcome-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 3px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 255, 156, 0.35) 0%, transparent 70%);
    animation: welcomeScan 1.8s ease-in-out infinite;
}

.welcome-divider-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(0, 255, 156, 0.9);
    background: #000;
    border: 1px solid rgba(0, 255, 156, 0.25);
    border-radius: 999px;
    line-height: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px rgba(0, 255, 156, 0.35);
    z-index: 2;
}

body.error-theme .welcome-divider-label {
    color: rgba(255, 68, 68, 0.95);
    border-color: rgba(255, 68, 68, 0.25);
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.35);
}

body.error-theme .welcome-divider::before {
    background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.75), transparent);
    box-shadow: 0 0 14px rgba(255, 68, 68, 0.35);
}

body.error-theme .welcome-divider::after {
    background: radial-gradient(circle, rgba(255, 68, 68, 0.35) 0%, transparent 70%);
}

@keyframes welcomeScan {
    0%, 100% {
        opacity: 0.35;
        width: 80px;
    }
    50% {
        opacity: 0.85;
        width: 160px;
    }
}

@keyframes fadeInLetter {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-bar {
    width: 400px;
    height: 4px;
    background: rgba(0, 255, 156, 0.2);
    border: 1px solid #00ff9c;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px #00ff9c55;
    margin: 0 auto 5px;
    transition: border-color 0.3s, box-shadow 0.3s, opacity 0.4s ease-out, transform 0.4s ease-out;
    opacity: 0;
    transform: translateY(-10px);
    display: none;
}

.loading-bar.visible {
    opacity: 1;
    transform: translateY(0);
}

.loading-bar.error {
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid #ff4444;
    box-shadow: 0 0 10px #ff444455;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00ff9c, #00d672);
    width: 0%;
    transition: width 0.3s ease-out, background 0.3s;
    box-shadow: 0 0 15px #00ff9c;
}

.loading-progress.error {
    background: linear-gradient(90deg, #ff4444, #cc0000);
    box-shadow: 0 0 15px #ff4444;
}

.packages-list {
    margin-top: 5px;
    text-align: left;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s;
    opacity: 0;
    transform: translateY(-10px);
    display: none;
}

.packages-list.visible {
    opacity: 1;
    transform: translateY(0);
}

.package-item {
    font-size: 13px;
    color: #00ff9c;
    margin: 8px 0;
    padding: 2px 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease-out, color 0.2s, transform 0.3s ease-out;
    animation: slideInPackage 0.3s ease-out forwards;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.package-name {
    flex: 0 0 auto;
}

.package-dots {
    flex: 1 1 auto;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0.65;
}

.package-dots-inner {
    display: block;
    white-space: nowrap;
    text-align: right;
    width: 100%;
}

.package-dots-inner.dots-animate {
    width: 0;
    overflow: hidden;
    animation: dotsTypeRightToLeft 0.6s steps(28, end) forwards;
}

@keyframes dotsTypeRightToLeft {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.package-status {
    flex: 0 0 auto;
    text-align: right;
}

@keyframes slideInPackage {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 0.8;
        transform: translateX(0);
    }
}

.package-item.loading {
    color: #00ff9c;
    opacity: 0.6;
}

.package-item.completed {
    color: #00ff9c;
    opacity: 1;
}

.package-item.error {
    color: #ff4444;
    opacity: 1;
}

.package-item.error-message {
    color: #ff4444;
    opacity: 1;
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
    text-shadow: 0 0 10px #ff4444;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

#toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #00ff9c;
    border: 1px solid #00ff9c;
    padding: 10px 20px;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, bottom 0.3s;
    box-shadow: 0 0 15px #00ff9c55;
    z-index: 2;
}

#toast.show {
    opacity: 1;
    bottom: 45px;
}

.container {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    transition: gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid #00ff9c;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    width: 420px;
    flex-shrink: 0;
    box-shadow: 0 0 25px #00ff9c55;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 156, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 214, 114, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 156, 0.08) 0%, transparent 60%);
    animation: cardBackgroundPulse 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 156, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 156, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: cardGridMove 15s linear infinite;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes cardBackgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05) rotate(2deg);
    }
}

@keyframes cardGridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 30px);
    }
}

.about-accordion {
    margin-top: 12px;
    border: 1px solid rgba(0, 255, 156, 0.25);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.about-accordion-summary {
    list-style: none;
    padding: 12px 14px;
    cursor: none;
    user-select: none;
    border-bottom: 1px solid rgba(0, 255, 156, 0.18);
}

.about-accordion-summary::-webkit-details-marker {
    display: none;
}

.about-accordion .about-content {
    padding: 12px 14px;
    max-height: none;
    overflow: visible;
}

.about-tabs-header {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 156, 0.18);
}

.about-tab-button {
    background: rgba(0, 255, 156, 0.05);
    border: 1px solid rgba(0, 255, 156, 0.35);
    color: #00ff9c;
    padding: 6px 10px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 12px;
}

.about-tab-button.is-active {
    background: #00ff9c;
    color: black;
    box-shadow: 0 0 10px rgba(0, 255, 156, 0.35);
}

.about-tab-panel {
    display: none;
}

.about-tab-panel.is-active {
    display: block;
}

.about-content h2,
.about-content h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(0, 255, 156, 0.25);
}

.about-content p {
    margin: 0 0 10px 0;
    opacity: 0.9;
}

.about-content ul {
    margin: 0 0 10px 18px;
    padding: 0;
    opacity: 0.9;
}

.about-content a {
    color: #00ff9c;
    text-decoration: underline;
}

.profile-content {
    padding: 25px 30px;
    position: relative;
    z-index: 1;
    overflow-y: auto;
    min-height: 0;
}

.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 2px solid #00ff9c;
    flex-shrink: 0;
    object-fit: cover;
}

.profile-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 8px;
}

.profile-info h1 {
    margin: 0 0 8px 0;
    font-size: 24px;
    color: #00ff9c;
    text-shadow: 0 0 10px rgba(0, 255, 156, 0.3);
}

.profile-info p#biography {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
    color: #00ff9c;
    line-height: 1.45;
    font-family: monospace;
    padding: 6px 0;
    position: relative;
}

.profile-header + .divider {
    margin-top: 0;
}

.quote-container {
    display: flex;
    justify-content: center;
}

.quote-container #quote {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
    color: #00ff9c;
    font-family: monospace;
    padding: 0 14px;
    background: rgba(0, 255, 156, 0.06);
    border-left: 3px solid rgba(0, 255, 156, 0.4);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 255, 156, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    line-height: normal;
    text-align: center;
}

.quote-container #quote #quote-text {
    display: inline-block;
    transition: opacity 0.25s ease;
}

.quote-container #quote #quote-text.quote-text-fade-out {
    opacity: 0;
}

.quote-container #quote::before {
    content: '"';
    position: absolute;
    left: 4px;
    top: -2px;
    font-size: 20px;
    opacity: 0.4;
    font-family: serif;
}

.quote-container #quote::after {
    content: '"';
    position: absolute;
    right: 4px;
    bottom: -2px;
    font-size: 20px;
    opacity: 0.4;
    font-family: serif;
}

.quote-container #quote:hover {
    background: rgba(0, 255, 156, 0.08);
    border-left-color: rgba(0, 255, 156, 0.5);
    box-shadow: 0 0 8px rgba(0, 255, 156, 0.2);
}

.divider {
    position: relative;
    height: 16px;
    margin: 20px 0;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, #00ff9c66, transparent);
}

.divider[data-label]::after {
    content: attr(data-label);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(0, 255, 156, 0.9);
    background: #000;
    border: 1px solid rgba(0, 255, 156, 0.25);
    border-radius: 999px;
    line-height: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px rgba(0, 255, 156, 0.35);
}

body.error-theme .divider::before {
    background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.55), transparent);
}

body.error-theme .divider[data-label]::after {
    color: rgba(255, 68, 68, 0.95);
    border-color: rgba(255, 68, 68, 0.25);
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.35);
}

.projects {
    margin-bottom: 20px;
}

.projects ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    justify-items: center;
}

.projects li {
    font-size: 13px;
    color: #00ff9c;
    padding: 8px 15px;
    border: 1px solid #00ff9c33;
    border-radius: 6px;
    background: rgba(0, 255, 156, 0.05);
    transition: all 0.2s ease;
    width: fit-content;
    min-width: 100px;
    text-align: center;
}

.projects li:hover {
    background: rgba(0, 255, 156, 0.1);
    border-color: #00ff9c66;
    box-shadow: 0 0 8px #00ff9c33;
    transform: translateY(-2px);
}

.links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.links a {
    color: #00ff9c;
    text-decoration: none;
    border: 1px solid #00ff9c;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.2s ease;
    background: rgba(0, 255, 156, 0.05);
    cursor: none;
}

.links a:hover {
    background: #00ff9c;
    color: black;
    box-shadow: 0 0 12px #00ff9c;
    transform: translateY(-2px);
}

@media (min-width: 769px) {
    a,
    button,
    summary,
    [role="button"],
    input,
    textarea,
    select,
    label {
        cursor: none !important;
    }
}

body.mobile-device .custom-cursor,
body.mobile-device .cursor-trail {
    display: none !important;
}

body.mobile-device {
    cursor: auto !important;
}

body.mobile-device * {
    cursor: auto !important;
}

@media (max-width: 768px), (hover: none) and (pointer: coarse) {
    html, body {
        overflow: auto;
        cursor: auto;
        height: 100%;
    }
    body {
        overflow-x: hidden;
    }
    
    .custom-cursor,
    .cursor-trail {
        display: none !important;
    }
    
    .container {
        height: 100dvh;
        width: 100vw;
        align-items: center;
        justify-content: center;
        padding: 14px;
        position: relative;
    }
    .content-wrapper {
        width: 100vw;
        height: 100dvh;
        gap: 0;
        flex-direction: column;
    }
    .card {
        width: calc(100vw - 28px);
        max-height: calc(100dvh - 28px);
        border-radius: 18px;
        position: relative;
        margin: 0 auto;
    }
    .links a {
        cursor: pointer;
    }
    .profile-content {
        padding: calc(18px + env(safe-area-inset-top)) 16px calc(18px + env(safe-area-inset-bottom));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: calc(100dvh - 28px - 36px);
    }

    @supports (height: 100dvh) {
        .container {
            height: 100dvh;
        }
        .content-wrapper {
            height: 100dvh;
        }
        .card {
            max-height: calc(100dvh - 28px);
        }
        .profile-content {
            max-height: calc(100dvh - 28px - 36px);
        }
    }
}