html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 65px;
}

body {
    margin: 0;
    background-color: #0b0b0b;
    font-family: "JetBrains Mono", monospace;
    font-weight: 600;
}



body::before,
body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 1px dashed rgba(255, 255, 255, 0.25);
    z-index: 0;
    pointer-events: none;
}

body::before {
    left: calc(50% - 430px);
}

body::after {
    right: calc(50% - 430px);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 10px 0;

    border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

nav::before,
nav::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 1px dashed rgba(255, 255, 255, 0.25);
    pointer-events: none;
}



nav::before {
    left: calc(50% - 430px);
}

nav::after {
    right: calc(50% - 430px);
}

.nav-container {
    max-width: 820px;
    margin: 0 auto;

}

.nav-content {
    display: grid;
    grid-template-columns: auto auto 1fr;
    color: white;
    align-items: center;


}


.nav-content h1 {
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 20px;
    margin-left: 40px;
}

.nav-links a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: white;
    border-radius: 50%;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.2s ease;
}

.nav-links a:hover::after {
    transform: translateX(-50%) scale(1);
}

.nav-content button {
    justify-self: end;
}

.nav-logo {
    width: 45px;
    height: auto;
    display: block;
    border-radius: 14px;
}

.theme-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    padding-top: 92px;
}

.hero-container {
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 30px;
    position: relative;
}

.hero-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
    transform: translateX(-50%);
}

.hero-banner {
    position: relative;
    width: 100%;
    border-radius: 24px;
}

.hero-banner img {
    display: block;
}

.hero-banner>img:first-child {
    width: 100%;
    display: block;
    border-radius: 24px;
}


.hero-banner .hero-profile {
    position: absolute;
    width: 105px;
    height: 105px;
    object-fit: cover;
    border-radius: 50%;
    left: 8px;
    bottom: -40px;
}

.profile-wrapper {
    position: absolute;
    left: 16px;
    bottom: -50px;
}

.profile-wrapper .hero-profile {
    position: static;
}

.roblox-icon {
    width: 16px;
    height: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    line-height: 1;
}


#discord-status {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 2px;
    bottom: 2px;

    background-color: #747f8d;
    border: 3px solid #0b0b0b;
    border-radius: 50%;

    cursor: pointer;
}

#discord-status.online {
    background-color: #23a55a;
}

#discord-status.idle {
    background-color: #f0b232;
}

#discord-status.dnd {
    background-color: #f23f43;
}

#discord-status.offline {
    background-color: #747f8d;
}

#discord-tooltip {
    position: absolute;
    left: 100%;
    bottom: 50%;
    transform: translateY(50%);

    margin-left: 8px;

    background: #181818;
    color: #b8b8b8;
    border: 1px solid #444;
    border-radius: 6px;

    padding: 6px 9px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

#discord-status:hover #discord-tooltip {
    opacity: 1;
}

.hero-name {
    margin: 75px 0 0 5px;
    color: white;
    font-size: 35px;
    line-height: 1.1;
    font-weight: 600;
}

.hero-role {
    margin: 10px 0 0 5px;
    color: #888;
    font-size: 24px;
    font-weight: 600;
    min-height: 25px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 4px 8px;
    margin: 0 3px;

    border: 1px dashed #777;
    border-radius: 7px;

    color: #b8b8b8;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
}

.tech-badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.tech-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.tech-icon img[alt="GitHub"] {
    width: 30px;
    height: 30px;
}

.tech-icon img[alt="Vercel"] {
    display: none;
}

.tech-icon.vercel-icon::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid #ffffff;
}

.hero-description {
    margin: 18px 0 0 5px;
    max-width: 800px;

    color: #8a8a8a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 24px 0 0 5px;
}


.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: 7px;
    border: 1px solid #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.resume-btn {
    background-color: white;
    color: black;
    border-color: white;
}

.resume-btn:hover {
    background-color: #dcdcdc;
}

.contact-btn {
    background-color: transparent;
    color: #b8b8b8;
}

.contact-btn:hover {
    background-color: #1c1c1c;
    color: white;
}


.cta-icon {
    font-size: 12px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    transform: translateY(1px);
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 30px 0 0 5px;
}

.hero-socials a {
    color: #888;
    font-size: 25px;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: color 0.2s ease, transform 0.2s ease;
}

.hero-socials a:hover {
    color: white;
    transform: translateY(-2px);
}

.hero::after {
    content: "";
    display: block;
    margin-top: 40px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.activity {
    margin-top: 15px;
    padding-bottom: 30px;
    position: relative;
}

.activity::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100vw;

    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);

    transform: translateX(-50%);
}

.activity-container {
    max-width: 820px;
    margin: 0 auto;
}

.spotify-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 16px;

    border: 1px solid #292929;
    border-radius: 12px;

    background: #111111;

    color: white;
}

.spotify-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spotify-cover {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.spotify-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotify-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.activity-label {
    color: #777;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.spotify-details h3 {
    margin: 0;
    color: #d0d0d0;
    font-size: 15px;
    font-weight: 600;
}

.spotify-details p {
    margin: 0;
    color: #777;
    font-size: 12px;
}

.spotify-play {

    text-decoration: none;
    color: #888;
    font-size: 20px;
    padding: 8px;
    transition: color 0.2s ease;
}

.spotify-card:hover .spotify-play {
    color: white;
}

.focus-card {
    display: flex;
    align-items: center;

    margin-top: 16px;
    padding: 14px 16px;

    border: 1px solid #292929;
    border-radius: 12px;

    background-color: #111;
}

.focus-indicator {
    width: 9px;
    height: 9px;

    margin-right: 12px;

    border-radius: 50%;
    background-color: #20c96b;

    box-shadow: 0 0 8px rgba(32, 201, 107, 0.4);
}

.focus-details {
    flex: 1;
}

.focus-details h3 {
    margin: 4px 0 0;

    color: #d0d0d0;
    font-size: 14px;
    font-weight: 600;
}

.focus-icon {
    font-size: 20px;
    padding: 8px;
    color: #777;
}

.tech-stack {
    position: relative;
    margin-top: 36px;
    padding: 35px 0 55px;
}

.tech-stack::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    border-top: 1px dashed rgba(255, 255, 255, 0.25);
}

.tech-stack-container {
    max-width: 820px;
    margin: 0 auto;
}

.section-label {
    display: block;
    margin-bottom: 8px;

    color: #777;
    font-size: 13px;
    font-weight: 600;
}

.tech-stack h2 {
    margin: 0 0 28px 0;

    color: #f0f0f0;
    font-size: 28px;
    font-weight: 600;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #292929;
    border-radius: 12px;

    background: #111;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.tech-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.tech-icon:hover {
    transform: translateY(-3px);
    border-color: #555;
    background-color: #181818;
}

.tech-stack::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 100vw;

    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);

    transform: translateX(-50%);
}

.tech-icon::after {
    content: attr(data-tech);

    position: absolute;
    left: 50%;
    bottom: -34px;

    transform: translateX(-50%) translateY(-4px);

    padding: 5px 8px;

    background: #151515;
    border: 1px solid #2d2d2d;
    border-radius: 5px;

    color: #aaa;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;

    z-index: 20;
}

.tech-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.experience {
    position: relative;
    margin-top: 36px;
    padding: 35px 0 55px;
}

.experience::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    border-top: 1px dashed rgba(255, 255, 255, 0.25);
}

.experience-container {
    max-width: 820px;
    margin: 0 auto;
}

.experience h2 {
    margin: 0 0 28px 0;
    color: #f0f0f0;
    font-size: 28px;
    font-weight: 600;
}

.experience-list {
    border: 1px solid #292929;
    border-radius: 18px;
    overflow: hidden;
    background-color: #111;
}

.experience-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 82px;
    padding: 0 24px;

    border-bottom: 1px solid #292929;
}

.experience-item:last-of-type {
    border-bottom: none;
}

.experience-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.experience-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #292929;
    border-radius: 50%;

    background: #111;

    font-size: 18px;
    line-height: 1;

    flex-shrink: 0;
}

.experience-info h3 {
    margin: 0 0 5px;

    color: #e0e0e0;
    font-size: 15px;
    font-weight: 600;
}

.experience-info p {
    margin: 0;

    color: #777;
    font-size: 13px;
    font-weight: 600;
}

.experience-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;

    margin-left: auto;
    margin-right: 20px;
}

.experience-meta span {
    color: #999;
    font-size: 13px;
    white-space: nowrap;
}

.experience-meta small {
    color: #555;
    font-size: 10px;
    letter-spacing: 0.8px;
}

.experience-arrow {
    color: #777;
    font-size: 18px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;

    cursor: pointer;
}

.experience-item:hover .experience-arrow {
    color: white;
}

.experience-item:has(+ .experience-description.open) .experience-arrow {
    transform: rotate(180deg);
}

.experience-description {
    max-height: 0;
    overflow: hidden;

    padding: 0 24px 0 78px;

    color: #777;
    font-size: 13px;
    line-height: 1.7;

    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
}

.experience-description.open {
    max-height: 100px;
    padding: 0 24px 18px 78px;
}

.experience::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 100vw;

    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);

    transform: translateX(-50%);
}

.projects {
    position: relative;
    margin-top: 36px;
    padding: 35px 0 55px;
}

.projects::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    border-top: 1px dashed rgba(255, 255, 255, 0.25);
}

.projects::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 100vw;

    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);

    transform: translateX(-50%);
}

.projects-container {
    max-width: 820px;
    margin: 0 auto;
}

.projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 28px;
}

.projects-header h2 {
    margin: 0;

    color: #f0f0f0;
    font-size: 28px;
    font-weight: 600;
}

.projects-github {
    color: #777;
    font-size: 12px;
    text-decoration: none;

    transition: color 0.2s ease;
}

.projects-github:hover {
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.project-card {
    overflow: hidden;

    border: 1px solid #292929;
    border-radius: 14px;

    background: #111;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    border-color: #444;
}


.project-image {
    width: 100%;
    height: 160px;

    overflow: hidden;

    background: #0b0b0b;
    border-bottom: 1px solid #292929;
}

.project-image {
    width: 100%;
    height: 170px;

    overflow: hidden;

    background: #0b0b0b;
    border-bottom: 1px solid #292929;
}

.project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.03);
}

.project-info {
    padding: 14px 16px 16px;
}

.project-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.project-title h3 {
    margin: 0;

    color: #e0e0e0;
    font-size: 15px;
    font-weight: 600;
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #777;
    font-size: 12px;
    white-space: nowrap;
}

.project-status span {
    width: 5px;
    height: 5px;
    flex-shrink: 0;

    border-radius: 50%;
}

.project-status.live {
    color: #777;
}

.project-status.live span {
    background: #20c96b;
}

.project-status.development {
    color: #777;
}

.project-status.development span {
    background: #f0b232;
}

.project-type {
    display: block;

    margin-top: 6px;

    color: #666;
    font-size: 11px;
}

.project-info p {
    margin: 10px 0 14px;

    color: #777;
    font-size: 12px;
    line-height: 1.7;
}

.project-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-tags {
    display: flex;
    gap: 6px;
    display: flex !important;
    align-items: center;
    gap: 6px !important;
}

.project-tags span {

    display: inline-block;
    flex-shrink: 0;
    padding: 3px 6px;


    border: 1px dashed #3d3d3d;
    border-radius: 5px;

    color: #777;
    font-size: 10px;
    line-height: 1.2;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.project-tags span:hover {
    color: #aaa;
    border-color: #555;
}

.project-links {
    display: flex;
    gap: 8px;
}

.project-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;

    transition: color 0.2s ease;
}

.project-links a:hover {
    color: white;
}

.project-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-links a {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #666;
    text-decoration: none;

    border: 1px solid #292929;
    border-radius: 6px;

    font-size: 13px;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.project-links a:hover {
    color: white;
    border-color: #444;
    background-color: #181818;
}

.about-section {
    position: relative;
    margin-top: 32px;
    padding: 35px 0 55px;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    border-top: 1px dashed rgba(255, 255, 255, 0.25);
}

.about-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 100vw;

    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);

    transform: translateX(-50%);
}

.about-container {
    max-width: 820px;
    margin: 0 auto;
    padding-left: 12px;
}

.about-container h2 {
    margin: 0 0 32px;

    color: #f0f0f0;
    font-size: 28px;
    font-weight: 600;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.about-image {
    width: 220px;
    height: 220px;

    flex-shrink: 0;

    overflow: hidden;
    border-radius: 18px;

    background: #111;
    border: 1px solid #292929;
}

.about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.about-info {
    padding-top: 2px;
}

.about-info h3 {
    margin: 0 0 10px;

    color: #f0f0f0;
    font-size: 30px;
    font-weight: 600;
}

.about-info p {
    max-width: 500px;

    margin: 0;

    color: #888;
    font-size: 14px;
    line-height: 1.8;
}

.about-skills-title {
    display: block;

    margin-top: 20px;
    margin-bottom: 10px;

    color: #d0d0d0;
    font-size: 13px;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-skills span {
    padding: 5px 8px;

    border: 1px dashed #444;
    border-radius: 6px;

    color: #888;
    font-size: 11px;
}

.github-section {
    position: relative;
    margin-top: 32px;
    padding: 35px 0 55px;
}

.github-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    border-top: 1px dashed rgba(255, 255, 255, 0.25);
}

.github-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 100vw;

    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);

    transform: translateX(-50%);
}

.github-container {
    max-width: 820px;
    margin: 0 auto;
}

.github-container h2 {
    margin: 0 0 22px;

    color: #f0f0f0;
    font-size: 28px;
    font-weight: 600;
}

.github-contributions {
    padding: 28px 32px;

    border: 1px solid #292929;
    border-radius: 14px;

    background: #111;
}

.github-contributions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #888;
    font-size: 13px;
}

.github-contributions-header strong {
    color: #20c96b;
    font-weight: 600;
}

.github-profile-btn {
    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    border: 1px solid #444;
    border-radius: 18px;

    color: #888;
    text-decoration: none;
    font-size: 11px;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.github-profile-btn:hover {
    color: white;
    border-color: #555;
    background: #181818;
}

.github-months {
    position: relative;

    width: 100%;
    height: 14px;

    margin-top: 22px;
    margin-bottom: 6px;

    color: #888;
    font-size: 11px;
    line-height: 1;

    white-space: nowrap;
}

.github-month {
    position: absolute;
    top: 0;

    color: #888;
    font-size: 11px;
    line-height: 1;
}

.github-graph {
    display: flex;
    gap: 4px;

    margin-top: 0;

    overflow: hidden;
}

.github-week {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.github-day {
    width: 10px;
    height: 10px;

    border-radius: 2px;

    background: #1b1b1b;
}

.github-day.level-1 {
    background: #0e4429;
}

.github-day.level-2 {
    background: #006d32;
}

.github-day.level-3 {
    background: #26a641;
}

.github-day.level-4 {
    background: #39d353;
}

.github-calendar-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    margin-top: 14px;

    color: #777;
    font-size: 10px;
    line-height: 1;
}

.github-calendar-footer>span {
    color: #777;
}

.github-legend {
    display: flex;
    align-items: center;
    gap: 4px;
}

.github-legend>span:first-child,
.github-legend>span:last-child {
    color: #777;
    margin: 0 3px;
}

.legend-cell {
    width: 10px;
    height: 10px;

    flex-shrink: 0;

    border-radius: 2px;
    background: #1b1b1b;
}

.legend-cell.level-1 {
    background: #0e4429;
}

.legend-cell.level-2 {
    background: #006d32;
}

.legend-cell.level-3 {
    background: #26a641;
}

.legend-cell.level-4 {
    background: #39d353;
}

.github-activity-card {
    margin-top: 24px;
    padding: 32px;

    border: 1px solid #292929;
    border-radius: 14px;

    background: #111;
}

.github-tabs {
    display: inline-flex;
    align-items: center;

    margin-bottom: 20px;

    padding: 4px;

    border: 1px solid #292929;
    border-radius: 10px;

    background: #111;
}

.github-tabs button {
    padding: 8px 12px;
    border: none;
    outline: none;
    border-radius: 7px;

    background: transparent;
    color: #777;

    font-family: inherit;
    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    /* Smooth hover + active transition */
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

/* Hover */
.github-tabs button:hover {
    background: #222;
    color: #aaa;
    transform: translateY(-1px);
}

/* Selected tab */
.github-tabs button.active {
    background: #292929;
    color: #d0d0d0;
}

/* Don't let the browser add the ugly white outline */
.github-tabs button:focus,
.github-tabs button:focus-visible {
    outline: none;
    box-shadow: none;
}

/* Tiny press animation */
.github-tabs button:active {
    transform: scale(0.96);
}

.github-tabs button:focus,
.github-tabs button:focus-visible,
.github-tabs button:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.github-tabs button.active {
    background: #292929;
    color: #d0d0d0;
}

.github-tabs button:focus,
.github-tabs button:focus-visible {
    outline: none;
}

.github-tabs button span {
    margin-left: 3px;
    color: #666;
}



.github-activity-list {
    display: flex;
    flex-direction: column;
}

.github-activity-item {
    display: flex;
    align-items: center;

    min-height: 48px;

    border-bottom: 1px solid #242424;

    color: #d0d0d0;
    font-size: 12px;
}

.github-activity-item:last-child {
    border-bottom: none;
}

.github-activity-icon {
    width: 28px;

    color: #b66cff;
    font-size: 15px;
}

.github-activity-title {
    flex: 1;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.github-activity-repo {
    margin-left: 8px;

    color: #666;
    font-size: 11px;
}

.github-activity-date {
    margin-left: 20px;

    color: #666;
    font-size: 11px;
}

.github-show-more {
    margin-top: 16px;

    padding: 0;

    border: none;
    background: transparent;

    color: #777;
    font-family: inherit;
    font-size: 11px;

    cursor: pointer;
}

.github-show-more:hover {
    color: white;
}

.quote-section {
    position: relative;
    margin-top: 32px;
    padding: 35px 0 40px;
}

.quote-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    border-top: 1px dashed rgba(255, 255, 255, 0.25);
}

.quote-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -32px;

    width: 100vw;

    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);

    transform: translateX(-50%);
}

.quote-container {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    box-sizing: border-box;
}



.quote-card {
    padding: 26px 28px;

    border: 1px solid #2d2d2d;
    border-radius: 10px;
    background: #151515;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 0 10px rgba(255, 255, 255, 0.03);

    box-sizing: border-box;
}


.quote-text {
    margin: 0;
    color: #aaa;
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.quote-author {
    display: block;
    margin-top: 18px;

    color: #777;
    font-size: 13px;
    font-style: italic;
    text-align: right;

    transition: opacity 0.35s ease;
}

.quote-card.changing .quote-text,
.quote-card.changing .quote-author {
    opacity: 0;
    transform: translateY(4px);
}


.site-footer {
    border-top: 1px dashed rgba(255, 255, 255, 0.25);
    padding: 28px 0;
    text-align: center;
    font-size: 12px;
    color: #777;
}



/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 700px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* =========================
       NAVBAR
       ========================= */

    nav {
        padding: 8px 20px;
        box-sizing: border-box;
    }

    body::before,
    body::after,
    nav::before,
    nav::after {
        display: none;
    }

    .nav-container {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .nav-content {
        display: flex;
        width: 100%;
        min-width: 0;
        align-items: center;
    }

    .nav-logo {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: 14px;
        min-width: 0;
        flex: 1;
    }

    .nav-links a {
        font-size: 11px;
        white-space: nowrap;
    }

    .nav-content button {
        flex-shrink: 0;
        margin-left: 8px;
    }

    .theme-btn {
        padding: 3px;
        font-size: 17px;
    }


    /* =========================
       HERO
       ========================= */

    .hero {
        padding-top: 78px;
    }

    .hero-container {
        width: auto;
        max-width: none;
        margin: 0 20px;
        padding-bottom: 25px;
    }

    .hero-banner {
        width: 100%;
        border-radius: 18px;
    }

    .hero-banner>img:first-child {
        width: 100%;
        height: auto;
        border-radius: 18px;
    }

    .profile-wrapper {
        left: 14px;
        bottom: -42px;
    }

    .hero-banner .hero-profile {
        width: 90px;
        height: 90px;
    }

    #discord-status {
        width: 14px;
        height: 14px;
        right: 1px;
        bottom: 1px;
        border-width: 2px;
    }

    .hero-name {
        margin: 62px 0 0 2px;
        font-size: 30px;
    }

    .hero-role {
        margin: 8px 0 0 2px;
        font-size: 18px;
        line-height: 1.5;
    }

    .hero-description {
        margin: 16px 0 0 2px;
        max-width: none;
        font-size: 13px;
        line-height: 1.8;
    }

    .tech-badge {
        font-size: 12px;
        padding: 4px 6px;
        margin: 0 2px;
    }

    .tech-badge img {
        width: 14px;
        height: 14px;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 10px;
        margin: 20px 0 0 2px;
    }

    .hero-actions a {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero-socials {
        gap: 14px;
        margin: 24px 0 0 2px;
    }

    .hero-socials a {
        font-size: 21px;
    }


    /* =========================
       ACTIVITY
       ========================= */

    .activity {
        margin: 15px 20px 0;
    }

    .activity-container {
        width: 100%;
        max-width: none;
    }

    .spotify-card {
        padding: 12px;
    }

    .spotify-cover {
        width: 42px;
        height: 42px;
    }

    .focus-card {
        padding: 12px;
    }


    /* =========================
       SECTION CONTAINERS
       ========================= */

    .tech-stack-container,
    .experience-container,
    .projects-container,
    .about-container,
    .github-container {
        width: auto;
        max-width: none;
        margin-left: 20px;
        margin-right: 20px;
    }


    /* =========================
       TECH STACK
       ========================= */

    .tech-stack {
        padding: 28px 0 40px;
    }

    .tech-stack h2,
    .experience h2,
    .projects-header h2,
    .about-container h2,
    .github-container h2 {
        font-size: 24px;
    }

    .tech-grid {
        gap: 8px;
    }

    .tech-icon {
        position: relative;
        width: 42px;
        height: 42px;
    }

    .tech-icon img {
        width: 22px;
        height: 22px;
    }


    /* =========================
       EXPERIENCE
       ========================= */

    .experience {
        padding: 28px 0 40px;
    }

    .experience-item {
        position: relative;
        min-height: 70px;
        padding: 10px 14px;
    }



    .experience-main {
        gap: 10px;
        min-width: 0;
    }

    .experience-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .experience-info h3 {
        font-size: 13px;
    }

    .experience-info p {
        font-size: 9px;
    }

    .experience-meta {
        margin-right: 0;
        min-width: 92px;
        text-align: right;
        padding-right: 4px;
    }

    .experience-meta span,
    .experience-meta small {
        display: block;
        text-align: right;
    }

    .experience-item>i,
    .experience-meta i {
        margin-left: 4px;
    }

    .experience-arrow {
        margin-left: 8px;
    }

    .experience-meta span {
        font-size: 10px;
    }

    .experience-meta small {
        font-size: 8px;
    }

    .experience-description {
        padding-top: 3px;
        padding-left: 18px;
        padding-right: 14px;
    }

    .experience-description.open {
        padding-top: 3px;
        padding-left: 18px;
        padding-right: 14px;
        font-size: 11px;
    }


    /* =========================
       PROJECTS
       ========================= */

    .projects {
        padding: 28px 0 40px;
    }

    .projects-header {
        align-items: flex-start;
        gap: 10px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-image {
        height: 170px;
    }


    /* =========================
       ABOUT
       ========================= */

    .about-section {
        padding: 28px 0 40px;
    }

    .about-container {
        padding-left: 0;
    }

    .about-content {
        flex-direction: column;
        gap: 20px;
        margin-left: -1px;
    }

    .about-image {
        width: 100%;
        max-width: 220px;
        height: 220px;

        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .about-info h3 {
        font-size: 26px;
    }

    .about-info p {
        max-width: none;
        font-size: 13px;
        line-height: 1.7;
    }


    /* =========================
       GITHUB
       ========================= */

    .github-section {
        padding: 28px 0 40px;
    }

    .github-contributions {
        padding: 18px;
        overflow: hidden;
    }

    .github-contributions-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }


    .github-contributions-header span {
        font-size: 10px;
        line-height: 1.35;
        flex: 1;
    }

    .github-profile-btn {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 9px;
        padding: 7px 10px;
    }


    .github-calendar {
        display: none;
    }

    .github-activity-card {
        padding: 18px;
        overflow: hidden;
    }

    .github-activity-item {
        min-width: 0;
    }

    .github-activity-title {
        min-width: 0;
    }

    .github-activity-repo,
    .github-activity-date {
        display: none;
    }


    /* =========================
       QUOTE
       ========================= */


    .quote-container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .quote-card {
        height: 80px;
        padding: 16px 18px;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .quote-text {
        font-size: 12px;
        line-height: 1.5;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .quote-author {
        margin-top: 0;
        font-size: 10px;
        flex-shrink: 0;
    }

    .quote-section {
        padding-bottom: 72px;
    }



    /* =========================
       FOOTER
       ========================= */

    .site-footer {
        margin: 0;
        padding: 28px 20px 35px;
        text-align: center;
        font-size: 11px;
        box-sizing: border-box;
    }



}