:root {
    --rosewater: #f5e0dc;
    --flamingo:  #f2cdcd;
    --pink:      #f5c2e7;
    --mauve:     #cba6f7;
    --red:       #f38ba8;
    --maroon:    #eba0ac;
    --peach:     #fab387;
    --yellow:    #f9e2af;
    --green:     #a6e3a1;
    --teal:      #94e2d5;
    --sky:       #89dceb;
    --sapphire:  #74c7ec;
    --blue:      #89b4fa;
    --lavender:  #b4befe;
    --text:      #cdd6f4;
}

.neofetch {
    color: var(--text);
    font-family: "JetBrains Mono", monospace;
}

.user {
    color: var(--green);
    font-weight: 700;
}

.line {
    color: var(--surface2);
}

.cpu  { color: var(--red); }
.gpu  { color: var(--green); }
.mb   { color: var(--yellow); }

.ram  { color: var(--blue); }
.ssd  { color: var(--peach); }

.aio  { color: var(--mauve); }
.fan  { color: var(--teal); }

.case { color: var(--sky); }
.psu  { color: var(--pink); }


.mouse {
    color: var(--red);
}

.headphones {
    color: var(--peach);
}

.interface {
    color: var(--yellow);
}

.keyboard {
    color: var(--green);
}

.microphone {
    color: var(--teal);
}

.gamepad {
    color: var(--sky);
}

.phone {
    color: var(--blue);
}

.earbuds {
    color: var(--lavender);
}

.monitors {
    color: var(--mauve);
}

.laptop {
    color: var(--pink);
}

.palette {
    display: flex;
    gap: 4px;
    margin-top: 12px;
}

.palette span {
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

body{
    background: black;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.main{
    cursor: pointer;
    position: relative;
    margin: auto;
    margin-top: 15%;
    width: 500px;
    height: 300px;
    background: linear-gradient(135deg, rgb(18 18 18 / 25%) 0%, rgba(100, 100, 100, 0.15) 100%);
    box-shadow: 
        inset 1px 1px 2px rgba(255,255,255,0.15),
        inset -1px -1px 2px rgba(0,0,0,0.1);
          
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shine {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(138,43,226,0.3) 0%,
        rgba(30,144,255,0.2) 25%,
        rgba(0,255,127,0.1) 50%,
        rgba(0,255,127,0) 100%
    );
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.side-highlight {
    cursor: pointer;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.left-highlight {
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background: radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.1) 0%,rgba(255, 255, 255, 0) 70%);
}

.right-highlight {
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.1)  0%, rgba(255, 255, 255, 0) 70%);
}

.top-highlight {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1)  0%,rgba(255, 255, 255, 0) 70%);
}

.bottom-highlight {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1)   0%, rgba(255, 255, 255, 0) 70%);
}

.top_text{
    width: 80%;
    height: 30%;
    margin: auto;
    margin-top: 2%;
    padding-top: 5%;
    font-size: 20px;
    color: white;
    font-family: sans-serif;
    position: relative;
    z-index: 1;
}
.center_text{
    width: 80%;
    height: 93%;
    margin: auto;
    margin-top: -21%;
    text-align: right;
    font-size: 6.5px;
    color: white;
    font-family: sans-serif;
    position: relative;
    z-index: 1;
     background: linear-gradient(
        180deg,
        #ff4d4d,
        #ffcc00,
        #00ff88,
        #00bfff,
        #8a2be2
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.bottom_text{
    width: 80%;
    height: 30%;
    margin: auto;
    margin-top: 2%;
    font-size: 15px;
    color: white;
    font-family: sans-serif;
    position: relative;
    z-index: 1;
}

.js-tilt{
    max: 5;
}

.text{
    cursor: default;
    font-family: "JetBrains Mono", monospace;
     text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.side-text {
    position: absolute;
    font-family: sans-serif;
    font-size: 14px;
    color: white;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    text-shadow: 0px 0px 10px white;
}

.left-text {
    left: -80px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
}

.right-text {
    right: -80px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
}

.top-text {
    top: -50px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
}

.bottom-text {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}

.main:hover .side-text {
    opacity: 1;
}

.main:hover .left-text {
    transform: translateY(-50%) translateX(0);
}

.main:hover .right-text {
    transform: translateY(-50%) translateX(0);
}

.main:hover .top-text {
    transform: translateX(-50%) translateY(0);
}

.main:hover .bottom-text {
    transform: translateX(-50%) translateY(0);
}

.content-area {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    max-width: 30%;
    min-width: 300px;
    color: rgba(255, 255, 255, 0.8);
    font-family: sans-serif;
    line-height: 1.6;
    transition: all 0.5s ease-in-out;
        border: 1px solid rgba(255, 255, 255, .1);
}

.content-area p {
    cursor: pointer;
    margin: 0;
    font-size: 16px;
}

.content-area.active {
    opacity: 1;
    pointer-events: all;
}

.left-area {
    left: 25%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
}

.right-area {
    padding: 20px;
    left: 75%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    p {
        margin-bottom: 20px;
        text-align: center;
        margin-inline: auto;
    }
}

.top-area {
    padding: 20px;
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%) scale(0.5);
}

.bottom-area {
    left: 50%;
    top: 75%;
    padding: 20px;
    transform: translate(-50%, -50%) scale(0.5);
}

.return-arrow {
    cursor: pointer;
    position: fixed;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.8);
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.return-arrow:hover {
    svg {
        filter: drop-shadow(0 0 5px #ffffff)
                drop-shadow(0 0 15px #ffffff);
    }
}



.return-arrow.active {
    opacity: 1;
    pointer-events: all;
}

.left-arrow {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.left-arrow:hover {
    transform: translateY(-50%) scale(1.5);
}

.right-arrow {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.right-arrow:hover {
    transform: translateY(-50%) scale(1.5);
}

.top-arrow {
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}

.top-arrow:hover {
    transform: translateX(-50%) scale(1.5);
}

.bottom-arrow {
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
}

.bottom-arrow:hover {
    transform: translateX(-50%) scale(1.5);
}

.ambient-balls {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.ambient-ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.8;
    box-shadow:  0 0 16px 1px rgba(255, 255, 255, 1);
    will-change: transform;
}

table {
    border-collapse: separate;
    border-spacing: 50px 0;
}

.neofetch {
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.1);
    white-space: pre-wrap;
    margin: 0px;
        width: 400px;
    height: 400px;

}


.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    position: absolute;
        bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.tab-btn {
    font-family: "JetBrains Mono", monospace;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: .3s;
      font-size: 14px;
}

.tab-btn:hover {
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.8), 0px 0px 20px rgba(255, 255, 255, 0.8);
    
}

.tab-btn.active {
        text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
}

.tab-content {

    display: none;
}

.tab-content.active {
    display: block;
}

.terminal {
    position: relative;
}

.github {
}
.discord {
    
}
.tiktok {
    
}
.steam {

}

.links-block {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.link {
    cursor: pointer;
        box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.15), inset -1px -1px 2px rgba(0, 0, 0, 0.1);
       background: rgb(0 0 0 / 24%);
    padding: 10px;
    border-radius: 8px;
    max-width: 50px;
    max-height: 50px;
    transition: transform 0.3s ease-in-out,box-shadow 0.3s ease-in-out;
    svg {
        width: 50px;
        height: 50px;
        max-width: 50px;
        max-height: 50px;
    }
}

.link:hover {
    transform: scale(1.2);
}

.alert {
        font-family: "JetBrains Mono", monospace;
    position: fixed;
    bottom: 10%;
    right: 50%;
    transform: translateX(50%);
    padding: 10px 20px;
    color: white;
    border-radius: 8px;
     box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.15), inset -1px -1px 2px rgba(0, 0, 0, 0.1);
       background: rgb(0 0 0 / 24%);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}


.alert.show {
    opacity: 1;
}

.content-area-title {
    text-align: left;
    font-size: 18px;
    margin-inline: 0 auto;
    font-family: "JetBrains Mono", monospace;
}

ul {
    padding-left: 22px;
    font-family: "JetBrains Mono", monospace;
}