* {    margin: 0;    padding: 0;    box-sizing: border-box;}:root {    --bg: #1a1a1e;    --bg-card: rgba(255, 255, 255, 0.07);    --bg-card-hover: rgba(255, 255, 255, 0.12);    --text: #ffffff;    --text-secondary: #9a9a9a;    --border: rgba(255, 255, 255, 0.15);    --accent: #e8e8e8;}::selection {    background: rgba(255, 255, 255, 0.25);    color: #fff;}::-moz-selection {    background: rgba(255, 255, 255, 0.25);    color: #fff;}html.lenis, html.lenis body {    height: auto;}.lenis.lenis-smooth {    scroll-behavior: auto !important;}.lenis.lenis-smooth [data-lenis-prevent] {    overscroll-behavior: contain;}.lenis.lenis-stopped {    overflow: hidden;}::-webkit-scrollbar {    width: 8px;    height: 8px;}::-webkit-scrollbar-track {    background: transparent;}::-webkit-scrollbar-thumb {    background: rgba(255, 255, 255, 0.15);    border-radius: 10px;    transition: background 0.3s ease;}::-webkit-scrollbar-thumb:hover {    background: rgba(255, 255, 255, 0.25);}::-webkit-scrollbar-corner {    background: transparent;}* {    scrollbar-width: thin;    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;}body {    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;    background: var(--bg);    color: var(--text);    min-height: 100vh;    display: flex;    flex-direction: column;    align-items: center;    overflow-x: hidden;    -webkit-font-smoothing: antialiased;    -moz-osx-font-smoothing: grayscale;    text-rendering: optimizeLegibility;}body::before {    content: '';    position: fixed;    inset: 0;    background:         radial-gradient(ellipse 60% 40% at 25% 0%, rgba(255,255,255,0.06) 0%, transparent 70%),        radial-gradient(ellipse 50% 35% at 75% 0%, rgba(255,255,255,0.05) 0%, transparent 70%),        radial-gradient(ellipse 80% 75% at 50% 40%, transparent 40%, rgba(0,0,0,0.5) 100%);    pointer-events: none;    z-index: 0;}.bg-grid {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;    background-image:         linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);    background-size: 50px 50px;    pointer-events: none;    z-index: 0;    will-change: transform;    transform: translateZ(0);}.cursor-glow {    position: fixed;    width: 600px;    height: 600px;    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);    pointer-events: none;    z-index: 1;    border-radius: 50%;    transform: translate(-50%, -50%);    will-change: transform;}#particles-js {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;    pointer-events: none;    z-index: 0;}.controls {    position: fixed;    top: 20px;    right: 20px;    display: flex;    gap: 10px;    z-index: 100;}.control-btn {    width: 40px;    height: 40px;    border: 1px solid var(--border);    background: var(--bg-card);    backdrop-filter: blur(10px);    color: var(--text);    border-radius: 10px;    cursor: pointer;    transition: all 0.2s ease;    display: flex;    align-items: center;    justify-content: center;    font-size: 0.85rem;    font-weight: 600;}.control-btn:hover {    background: var(--bg-card-hover);    border-color: var(--text-secondary);}.container {    position: relative;    z-index: 1;    width: 100%;    max-width: 700px;    margin: 0 auto;    padding: 80px 36px 80px;    display: flex;    flex-direction: column;    align-items: center;    gap: 40px;    box-sizing: border-box;}.container > * {    max-width: 100%;    box-sizing: border-box;}.avatar-wrapper {    position: relative;    display: flex;    flex-direction: column;    align-items: center;    gap: 12px;}.visitor-count {    position: fixed;    bottom: 24px;    right: 24px;    z-index: 100;    display: flex;    align-items: center;    gap: 10px;    padding: 12px 18px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 14px;    backdrop-filter: blur(10px);    font-size: 1.1rem;    font-weight: 700;    color: var(--text);}.visitor-count i {    font-size: 1.2rem;    color: var(--text-secondary);}.avatar {    position: relative;    width: 180px;    height: 180px;    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);    cursor: pointer;}.avatar:hover {    transform: scale(1.05) rotate(-3deg);}.avatar:hover .avatar-ring {    animation-duration: 1.5s;    filter: brightness(1.2);}.avatar-ring {    position: absolute;    inset: -3px;    border-radius: 50%;    background: linear-gradient(135deg, #666, #ffffff, #bbb, #666);    animation: rotate 3s linear infinite;}@keyframes rotate {    from { transform: rotate(0deg); }    to { transform: rotate(360deg); }}.avatar-img {    position: absolute;    inset: 3px;    width: calc(100% - 6px);    height: calc(100% - 6px);    object-fit: cover;    border-radius: 50%;    border: 3px solid var(--bg);    user-select: none;    -webkit-user-drag: none;    pointer-events: none;}.status-badge {    display: flex;    align-items: center;    gap: 8px;    padding: 8px 16px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 20px;    font-size: 0.85rem;    color: var(--text-secondary);}.status-moon {    color: #faa61a;    font-size: 0.9rem;}@keyframes pulse {    0%, 100% { opacity: 1; }    50% { opacity: 0.5; }}.info {    text-align: center;    width: 100%;    display: flex;    flex-direction: column;    align-items: center;}.name {    font-size: 3.5rem;    font-weight: 700;    letter-spacing: -0.5px;    margin-bottom: 10px;}.username {    font-size: 1.4rem;    color: var(--text-secondary);    margin-bottom: 14px;}.tagline {    font-size: 1.25rem;    color: var(--text-secondary);    font-style: italic;}.roles {    width: 100%;    display: flex;    flex-wrap: wrap;    justify-content: center;    align-items: center;    gap: 8px;}.role {    display: flex;    align-items: center;    gap: 12px;    padding: 14px 26px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 14px;    font-size: 1.1rem;    color: var(--text-secondary);    transition: all 0.2s ease;    backdrop-filter: blur(12px);    -webkit-backdrop-filter: blur(12px);    box-shadow: 0 2px 12px rgba(0,0,0,0.2);}.role:hover {    border-color: var(--text-secondary);    color: var(--text);}.role i {    font-size: 1rem;}.tech-stack {    width: 100%;    max-width: 100%;    display: flex;    flex-wrap: wrap;    gap: 8px;    justify-content: center;    align-items: center;    box-sizing: border-box;}.tech-badge {    display: inline-flex !important;    align-items: center;    gap: 8px;    padding: 10px 16px !important;    border-radius: 10px !important;    font-size: 0.9rem;    font-weight: 600;    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                 filter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);    white-space: nowrap;    cursor: pointer;    position: relative;}.tech-badge:hover {    transform: translateY(-4px) scale(1.1);    filter: brightness(1.15);}.tech-badge i {    font-size: 1.1rem;    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);}.tech-badge:hover i {    transform: scale(1.15);}.tech-stack .tech-badge.java {    background-color: #f89820 !important;    color: #000 !important;    box-shadow: 0 8px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(248, 152, 32, 0);    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                 filter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;}.tech-stack .tech-badge.java:hover {    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(248, 152, 32, 0.5) !important;}.tech-stack .tech-badge.javascript {    background-color: #F7DF1E !important;    color: #000 !important;    box-shadow: 0 8px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(247, 223, 30, 0);    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                 filter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;}.tech-stack .tech-badge.javascript:hover {    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(247, 223, 30, 0.5) !important;}.tech-stack .tech-badge.nodejs {    background-color: #339933 !important;    color: #fff !important;    box-shadow: 0 8px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(51, 153, 51, 0);    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                 filter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;}.tech-stack .tech-badge.nodejs:hover {    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(51, 153, 51, 0.5) !important;}.tech-stack .tech-badge.python {    background-color: #3776AB !important;    color: #fff !important;    box-shadow: 0 8px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(55, 118, 171, 0);    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                 filter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;}.tech-stack .tech-badge.python:hover {    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(55, 118, 171, 0.5) !important;}.tech-stack .tech-badge.lua {    background-color: #000080 !important;    color: #fff !important;    box-shadow: 0 8px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(0, 0, 128, 0);    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                 filter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;}.tech-stack .tech-badge.lua:hover {    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 0, 128, 0.5) !important;}.tech-stack .tech-badge.mysql {    background-color: #4479A1 !important;    color: #fff !important;    box-shadow: 0 8px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(68, 121, 161, 0);    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                 filter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;}.tech-stack .tech-badge.mysql:hover {    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(68, 121, 161, 0.5) !important;}.tech-stack .tech-badge.html {    background-color: #E34F26 !important;    color: #fff !important;    box-shadow: 0 8px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(227, 79, 38, 0);    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                 filter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),                box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;}.tech-stack .tech-badge.html:hover {    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(227, 79, 38, 0.5) !important;}.links {    width: 100%;    display: flex;    flex-direction: column;    gap: 14px;}.link-card {    display: flex;    align-items: center;    gap: 20px;    padding: 24px 30px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 18px;    text-decoration: none;    color: var(--text);    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);    position: relative;    overflow: hidden;    backdrop-filter: blur(16px);    -webkit-backdrop-filter: blur(16px);    box-shadow: 0 2px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);}.link-card::before {    content: '';    position: absolute;    top: 0;    left: -100%;    width: 100%;    height: 100%;    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);    transition: left 0.5s ease;}.link-card:hover::before {    left: 100%;}.link-card:hover {    background: var(--bg-card-hover);    border-color: rgba(255, 255, 255, 0.3);    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.1);}.link-card i:first-child {    font-size: 1.5rem;    width: 32px;    height: 32px;    display: flex;    align-items: center;    justify-content: center;    flex-shrink: 0;    transition: all 0.3s ease;}.link-card:hover i:first-child {    transform: scale(1.2);    filter: drop-shadow(0 0 8px currentColor);}.link-card span {    flex: 1;    font-weight: 500;    font-size: 1.3rem;    overflow: hidden;    text-overflow: ellipsis;    white-space: nowrap;}.link-card i:last-child {    transition: transform 0.3s ease;}.link-card:hover i:last-child {    transform: translateX(6px);}.link-card i:last-child {    font-size: 0.9rem;    color: var(--text-secondary);    transition: transform 0.2s ease;    flex-shrink: 0;}.link-card:hover i:last-child {    transform: translateX(4px);}.link-card.discord i:first-child {    color: #5865F2;}.link-card.discord:hover {    border-color: #5865F2;}.link-card.spotify i:first-child {    color: #1DB954;    font-size: 1.75rem;}.link-card.spotify:hover {    border-color: #1DB954;}.link-card.youtube i:first-child {    color: #FF0000;    font-size: 1.75rem;}.link-card.youtube:hover {    border-color: #FF0000;}.link-card.youtube:hover i:first-child {    filter: drop-shadow(0 0 4px rgba(255, 0, 0, 0.5));}.link-card.instagram i:first-child {    color: #E4405F !important;}.link-card.instagram:hover {    border-color: #E4405F;}.link-card.github i:first-child {    color: #f0f6fc;    font-size: 1.75rem;}.link-card.github:hover {    border-color: #8b949e;}.link-card.steam i:first-child {    color: #66c0f4;    font-size: 1.75rem;}.link-card.steam:hover {    border-color: #66c0f4;    box-shadow: 0 12px 40px rgba(102, 192, 244, 0.15), 0 0 0 1px rgba(102, 192, 244, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);}.link-card.steam:hover i:first-child {    filter: drop-shadow(0 0 6px rgba(102, 192, 244, 0.5));}.link-card.patreon .patreon-icon {    color: #f0f6fc;    width: 24px;    height: 24px;    flex-shrink: 0;}.link-card.patreon:hover {    border-color: #f0f6fc;}.link-card.locked {    background: rgba(255, 66, 77, 0.1);    border-color: rgba(255, 66, 77, 0.3);    opacity: 0.7;    pointer-events: none;    cursor: not-allowed;    position: relative;}.link-card.locked:hover {    transform: none;    border-color: rgba(255, 66, 77, 0.3);}.link-card.locked .patreon-icon {    color: rgba(255, 66, 77, 0.6);}.link-card.locked span:first-of-type {    color: var(--text-secondary);}.link-card.locked i:last-child {    color: rgba(255, 66, 77, 0.6);    animation: clockPulse 2s ease-in-out infinite;}@keyframes clockPulse {    0%, 100% {        opacity: 0.5;        transform: scale(1);    }    50% {        opacity: 0.8;        transform: scale(1.1);    }}.coming-soon-badge {    font-size: 0.6rem;    font-weight: 600;    color: #FF424D;    padding: 2px 6px;    letter-spacing: 1px;    white-space: nowrap;    text-transform: uppercase;    position: absolute;    top: -8px;    left: 50%;    transform: translateX(-50%);    background: var(--bg-primary);    border-radius: 4px;    z-index: 1;}.link-card.email i:first-child {    color: #e8e8e8;}.link-card.email:hover {    border-color: rgba(255,255,255,0.3);}.section-title {    width: 100%;    display: flex;    align-items: center;    justify-content: center;    gap: 16px;    margin: 24px 0 16px 0;}.section-title span {    font-size: 1.05rem;    font-weight: 700;    text-transform: uppercase;    letter-spacing: 2.5px;    color: var(--text-secondary);    white-space: nowrap;}.section-title::before,.section-title::after {    content: '';    flex: 1;    height: 1px;    background: var(--border);}.section-divider {    width: 100%;    height: 1px;    background: var(--border);    margin: 24px 0 16px 0;}.projects {    width: 100%;    display: flex;    flex-direction: column;    gap: 14px;}.project-item {    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 18px;    overflow: hidden;    backdrop-filter: blur(16px);    -webkit-backdrop-filter: blur(16px);    box-shadow: 0 2px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);    transition: border-color 0.3s ease, box-shadow 0.3s ease;}.project-item:hover,.project-item.active {    border-color: rgba(255, 255, 255, 0.28);    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.1);}.project-card {    display: flex;    align-items: center;    gap: 20px;    padding: 24px 28px;    text-decoration: none;    color: var(--text);    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);    cursor: pointer;    position: relative;}.project-card::after {    content: '';    position: absolute;    top: 50%;    left: 50%;    width: 0;    height: 0;    border-radius: 50%;    background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent);    transform: translate(-50%, -50%);    transition: width 0.5s ease, height 0.5s ease;}.project-item:hover .project-card::after {    width: 200%;    height: 200%;}.project-item:hover .project-card {    background: var(--bg-card-hover);}.project-icon {    width: 64px;    height: 64px;    background: linear-gradient(135deg, #2a2a2a, #4a4a4a);    border-radius: 16px;    display: flex;    align-items: center;    justify-content: center;    font-size: 1.7rem;    color: #fff;    transition: all 0.3s ease;    z-index: 1;    border: 1px solid rgba(255,255,255,0.12);}.project-item:hover .project-icon {    transform: rotate(-3deg) scale(1.1);    box-shadow: 0 0 24px rgba(255, 255, 255, 0.15);}.project-icon i {    display: block;    line-height: 0;    transform: translate(1px, -2px);}.project-info {    flex: 1;    z-index: 1;}.project-info h3 {    font-size: 1.35rem;    font-weight: 600;    margin-bottom: 6px;    transition: color 0.3s ease;}.project-item:hover .project-info h3 {    color: var(--text);}.project-info p {    font-size: 1.1rem;    color: var(--text-secondary);}.project-chevron {    font-size: 0.9rem;    color: var(--text-secondary);    transition: all 0.3s ease;    z-index: 1;}.project-card:hover .project-chevron {    color: var(--text);}.project-item.active .project-chevron {    transform: rotate(180deg);    color: var(--text);}.project-dropdown {    max-height: 0;    overflow: hidden;    transition: max-height 0.35s ease;}.project-dropdown-inner {    padding: 20px 28px 24px;}.project-item.active .project-dropdown-inner {    border-top: 1px solid var(--border);}.project-dropdown .project-status-badge {    display: inline-flex;    align-items: center;    gap: 6px;    padding: 4px 12px;    border-radius: 20px;    font-size: 0.75rem;    font-weight: 600;    margin-bottom: 16px;}.project-status-badge.active {    background: rgba(87, 242, 135, 0.15);    color: #57F287;}.project-status-badge.development {    background: rgba(250, 166, 26, 0.15);    color: #faa61a;}.project-dropdown .project-desc {    color: var(--text-secondary);    line-height: 1.7;    font-size: 0.95rem;    margin-bottom: 20px;}.project-dropdown .project-section {    margin-bottom: 20px;}.project-dropdown .project-section h4 {    font-size: 0.8rem;    font-weight: 600;    text-transform: uppercase;    letter-spacing: 1px;    color: var(--text-secondary);    margin-bottom: 10px;}.project-dropdown .project-features {    list-style: none;    display: flex;    flex-direction: column;    gap: 6px;}.project-dropdown .project-features li {    display: flex;    align-items: center;    gap: 10px;    color: var(--text);    font-size: 0.9rem;}.project-dropdown .project-features li::before {    content: '\2713';    color: #57F287;    font-weight: bold;    font-size: 0.8rem;}.project-dropdown .project-tech-list {    display: flex;    flex-wrap: wrap;    gap: 8px;}.vizyon-container {    width: 100%;    display: grid;    grid-template-columns: 1fr 1fr;    gap: 16px;    margin-top: 4px;}.vizyon-card {    padding: 20px;    border-radius: 16px;    border: 1px solid var(--border);    background: var(--bg-card);    display: flex;    flex-direction: column;    gap: 16px;}.vizyon-card.vizyon-old {    border-color: rgba(255, 99, 99, 0.25);    background: rgba(255, 99, 99, 0.04);}.vizyon-card.vizyon-new {    border-color: rgba(255, 255, 255, 0.18);    background: rgba(255, 255, 255, 0.04);}.vizyon-card-header {    display: flex;    align-items: center;    justify-content: space-between;}.vizyon-badge {    display: inline-flex;    align-items: center;    gap: 7px;    padding: 5px 12px;    border-radius: 20px;    font-size: 0.78rem;    font-weight: 700;    letter-spacing: 0.5px;    text-transform: uppercase;}.vizyon-badge.old {    background: rgba(255, 99, 99, 0.15);    color: #ff7b7b;    border: 1px solid rgba(255, 99, 99, 0.3);}.vizyon-badge.new {    background: rgba(255, 255, 255, 0.1);    color: #fff;    border: 1px solid rgba(255, 255, 255, 0.2);}.vizyon-tree {    display: flex;    flex-direction: column;    gap: 5px;    background: var(--bg-primary);    border-radius: 10px;    padding: 14px;    font-family: 'Courier New', monospace;    font-size: 0.78rem;    flex: 1;}.tree-item {    display: flex;    align-items: center;    gap: 7px;    color: var(--text-secondary);    line-height: 1.6;}.tree-item.root {    color: var(--text-primary);    font-weight: 600;    margin-bottom: 2px;}.tree-item.l1 {    padding-left: 16px;    color: var(--text-secondary);}.tree-item.l2 {    padding-left: 32px;    color: var(--text-muted);    font-size: 0.74rem;}.tree-item i {    width: 14px;    flex-shrink: 0;    font-size: 0.72rem;}.tree-item.root i { color: var(--accent); }.tree-item.l1 i { color: #6b9bd2; }.tree-item.l2 i { color: #8fbcbb; }.tree-tag {    margin-left: auto;    font-size: 0.65rem;    font-weight: 700;    padding: 0;    width: 18px;    height: 18px;    border-radius: 4px;    font-family: sans-serif;    display: inline-flex;    align-items: center;    justify-content: center;    flex-shrink: 0;    line-height: 1;}.tree-tag.ok {    background: rgba(29, 185, 84, 0.15);    color: #1db954;}.tree-tag.warn {    background: rgba(250, 166, 26, 0.15);    color: #faa61a;}.tree-tag.error {    background: rgba(255, 99, 99, 0.15);    color: #ff7b7b;}.vizyon-tags {    display: flex;    flex-wrap: wrap;    gap: 7px;}.vtag {    display: inline-flex;    align-items: center;    gap: 5px;    font-size: 0.72rem;    font-weight: 600;    padding: 4px 10px;    border-radius: 20px;    white-space: nowrap;}.old-tags .vtag {    background: rgba(255, 99, 99, 0.1);    color: #ff9999;    border: 1px solid rgba(255, 99, 99, 0.2);}.new-tags .vtag {    background: rgba(255, 255, 255, 0.08);    color: var(--accent);    border: 1px solid rgba(255, 255, 255, 0.15);}@media (max-width: 520px) {    .vizyon-container {        grid-template-columns: 1fr;    }}.time-widget {    position: fixed;    top: 20px;    left: 24px;    z-index: 100;    display: flex;    align-items: center;    gap: 12px;    padding: 12px 18px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 14px;    backdrop-filter: blur(10px);}.stats-section {    width: 100%;    display: flex;    flex-direction: column;    gap: 16px;    margin-bottom: 20px;}.time-widget i {    font-size: 1.2rem;    color: var(--text-secondary);}.time-info {    display: flex;    flex-direction: column;    gap: 2px;}.time-label {    font-size: 0.7rem;    text-transform: uppercase;    letter-spacing: 0.5px;    color: var(--text-secondary);    font-weight: 600;}.time-value {    font-size: 1.1rem;    font-weight: 700;    color: var(--text);    font-variant-numeric: tabular-nums;}.stats-section {    width: 100%;    max-width: 100%;    display: flex;    flex-direction: column;    align-items: center;    gap: 24px;    margin-bottom: 20px;    box-sizing: border-box;}.spotify-widget {    width: 100%;    max-width: 100%;    display: flex;    align-items: center;    gap: 12px;    padding: 10px;    padding-top: 14px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 14px;    backdrop-filter: blur(10px);    transition: all 0.3s ease;    box-sizing: border-box;    cursor: pointer;}.spotify-widget:hover {    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);}.spotify-widget.playing {    border-color: rgba(29, 185, 84, 0.4);    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.1);}.spotify-widget.playing:hover {    border-color: rgba(29, 185, 84, 0.6);    box-shadow: 0 12px 40px rgba(29, 185, 84, 0.3);}.spotify-cover-wrapper {    position: relative;    flex-shrink: 0;    transition: transform 0.3s ease;}.spotify-widget:hover .spotify-cover-wrapper {    transform: scale(1.08) rotate(-3deg);}.spotify-cover {    width: 72px;    height: 72px;    border-radius: 8px;    object-fit: cover;    background: var(--bg);    display: block;}.spotify-badge {    position: absolute;    top: -10px;    right: 10px;    display: flex;    align-items: center;    gap: 5px;    padding: 4px 10px;    background: #1DB954;    border-radius: 12px;    box-shadow: 0 2px 8px rgba(29, 185, 84, 0.4);}.spotify-badge i {    font-size: 0.75rem;    color: #fff;    order: 2;}.spotify-badge .spotify-status {    font-size: 0.65rem;    text-transform: uppercase;    letter-spacing: 0.3px;    color: #fff;    font-weight: 700;    order: 1;}.spotify-widget.offline .spotify-badge {    background: var(--bg-card-hover);}.spotify-widget.offline .spotify-badge i,.spotify-widget.offline .spotify-badge .spotify-status {    color: var(--text-secondary);}.spotify-widget.offline .spotify-cover-wrapper {    display: none;}.spotify-info {    flex: 1;    min-width: 0;    display: flex;    flex-direction: column;    gap: 3px;    justify-content: center;}.spotify-track-info {    display: flex;    flex-direction: column;    gap: 1px;}.spotify-track {    font-size: 0.95rem;    font-weight: 600;    color: var(--text);    white-space: nowrap;    overflow: hidden;    text-overflow: ellipsis;    line-height: 1.3;}.spotify-artist {    font-size: 0.8rem;    color: var(--text-secondary);    white-space: nowrap;    overflow: hidden;    text-overflow: ellipsis;    line-height: 1.3;}.spotify-time-row {    display: flex;    align-items: center;    gap: 8px;    margin-top: 4px;}.spotify-time,.spotify-duration {    font-size: 0.7rem;    color: var(--text-secondary);    font-variant-numeric: tabular-nums;    min-width: 30px;}.spotify-duration {    text-align: right;}.spotify-progress {    flex: 1;    height: 4px;    background: var(--border);    border-radius: 2px;    overflow: hidden;}.spotify-progress-bar {    height: 100%;    background: #1DB954;    border-radius: 2px;    width: 0%;    transition: width 0.5s linear;}.spotify-widget.offline .spotify-time-row {    display: none;}.spotify-widget.offline .spotify-artist {    display: none;}.activity-widget {    width: 100%;    max-width: 100%;    display: flex;    align-items: center;    gap: 12px;    padding: 10px;    padding-top: 14px;    margin-top: 10px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 14px;    backdrop-filter: blur(10px);    transition: all 0.3s ease;    box-sizing: border-box;    border-color: rgba(88, 101, 242, 0.4);    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.1);    position: relative;    cursor: pointer;}.activity-widget:hover {    transform: translateY(-4px) scale(1.02);    border-color: rgba(88, 101, 242, 0.6);    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.3);}.activity-widget:hover .activity-image {    transform: scale(1.08) rotate(-3deg);}.activity-badge {    position: absolute;    top: -10px;    right: 10px;    display: flex;    align-items: center;    gap: 5px;    padding: 4px 10px;    background: #5865F2;    border-radius: 12px;    box-shadow: 0 2px 8px rgba(88, 101, 242, 0.4);}.activity-badge i {    font-size: 0.75rem;    color: #fff;    order: 2;}.activity-badge .activity-type {    font-size: 0.65rem;    text-transform: uppercase;    letter-spacing: 0.3px;    color: #fff;    font-weight: 700;    order: 1;}.activity-image {    width: 72px;    height: 72px;    border-radius: 8px;    object-fit: cover;    background: transparent;    flex-shrink: 0;    transition: transform 0.3s ease;}.activity-info {    flex: 1;    min-width: 0;    display: flex;    flex-direction: column;    gap: 2px;    justify-content: center;}.activity-name {    font-size: 0.95rem;    font-weight: 600;    color: var(--text);    white-space: nowrap;    overflow: hidden;    text-overflow: ellipsis;    line-height: 1.3;}.activity-details {    font-size: 0.8rem;    color: var(--text-secondary);    white-space: nowrap;    overflow: hidden;    text-overflow: ellipsis;    line-height: 1.3;}.activity-state {    font-size: 0.75rem;    color: var(--text-secondary);    opacity: 0.8;    white-space: nowrap;    overflow: hidden;    text-overflow: ellipsis;    line-height: 1.3;}.activity-elapsed {    font-size: 0.75rem;    color: var(--text-secondary);    font-weight: 600;    white-space: nowrap;    display: flex;    align-items: center;    gap: 4px;    margin-top: 2px;}.activity-elapsed::before {    content: 'â±';    font-size: 0.7rem;}.tech-tag {    padding: 6px 14px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 6px;    font-size: 0.85rem;    color: var(--text-secondary);}@media (max-width: 480px) {    .project-dropdown-inner {        padding: 0 20px 20px;    }}@media (max-width: 480px) {    .container {        padding: 50px 16px 30px;    }    .name {        font-size: 1.7rem;    }    .typing-container {        font-size: 0.95rem;    }    .tech-stack {        flex-wrap: wrap;        justify-content: center;    }    .tech-badge {        padding: 6px 12px;        font-size: 0.75rem;    }    .link-card {        padding: 18px 20px;        gap: 14px;    }    .link-card i:first-child {        font-size: 1.5rem;        width: 28px;    }    .link-card span {        font-size: 1rem;    }    .discord-activity {        padding: 12px;    }    .music-widget {        padding: 10px 14px;    }    .guestbook-form {        padding: 16px;    }}#particles-js {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;    pointer-events: none;    z-index: 0;}.roles {    display: flex;    flex-wrap: wrap;    justify-content: center;    gap: 10px;    margin-bottom: 20px;}.role {    display: flex;    align-items: center;    gap: 8px;    padding: 8px 16px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 20px;    font-size: 0.85rem;    color: var(--text-secondary);    transition: all 0.2s ease;}.role:hover {    border-color: rgba(255, 255, 255, 0.3);    color: var(--text);    background: rgba(255, 255, 255, 0.08);    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.06);}.role i {    color: var(--text-secondary);    font-size: 0.9rem;}.status-badge {    display: flex;    align-items: center;    gap: 8px;    padding: 8px 16px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 20px;    font-size: 0.85rem;    color: var(--text-secondary);}.status-dot {    width: 14px;    height: 14px;    border-radius: 50%;    background: #747f8d;    position: relative;    flex-shrink: 0;}.status-dot.online {     background: #3ba55c; }.status-dot.idle {     background: #faa61a;    border-radius: 50%;    -webkit-mask: radial-gradient(circle 5px at 11px 3px, transparent 98%, #000 100%);    mask: radial-gradient(circle 5px at 11px 3px, transparent 98%, #000 100%);}.status-dot.dnd {     background: #ed4245; }.status-dot.dnd::after {    content: '';    position: absolute;    top: 50%;    left: 50%;    transform: translate(-50%, -50%);    width: 8px;    height: 3px;    background: var(--bg);    border-radius: 1px;}.status-dot.offline {     background: transparent;    border: 3px solid #747f8d;}@keyframes pulse-status {    0%, 100% { transform: scale(1); opacity: 1; }    50% { transform: scale(1.1); opacity: 0.8; }}.guestbook {    width: 100%;    margin-bottom: 60px;}.guestbook-form {    display: flex;    flex-direction: column;    gap: 20px;    padding: 28px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 20px;    margin-bottom: 20px;}.guestbook-header {    display: flex;    align-items: center;    gap: 16px;    padding-bottom: 16px;    border-bottom: 1px solid var(--border);}.guestbook-header > i {    font-size: 2.3rem;    color: var(--text-secondary);}.guestbook-header h3 {    font-size: 1.3rem;    font-weight: 600;    color: var(--text);    margin-bottom: 4px;}.guestbook-header p {    font-size: 0.95rem;    color: var(--text-secondary);}.guestbook-inputs {    display: flex;    flex-direction: column;    gap: 14px;}.guestbook-form input,.guestbook-form textarea {    width: 100%;    padding: 16px 20px;    background: var(--bg);    border: 1px solid var(--border);    border-radius: 14px;    color: var(--text);    font-size: 1.1rem;    font-family: inherit;    outline: none;    transition: all 0.2s ease;}.guestbook-form input:focus,.guestbook-form textarea:focus {    border-color: rgba(255, 255, 255, 0.35);    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);}.guestbook-form textarea {    height: 220px;    resize: none;    padding-bottom: 50px !important;    overflow: hidden;}.guestbook-form input::placeholder,.guestbook-form textarea::placeholder {    color: var(--text-secondary);}.guestbook-submit {    display: flex;    align-items: center;    justify-content: center;    gap: 8px;    padding: 10px 20px;    background: transparent;    border: 1px solid var(--border);    border-radius: 10px;    color: var(--text);    font-size: 0.9rem;    font-weight: 500;    cursor: pointer;    transition: all 0.2s ease;}.guestbook-submit:hover {    background: var(--bg-card-hover);    border-color: var(--text-secondary);}.guestbook-submit:disabled {    opacity: 0.5;    cursor: not-allowed;    transform: none;}.guestbook-input-group {    position: relative;    display: flex;    align-items: flex-start;}.guestbook-input-group i {    position: absolute;    left: 16px;    top: 16px;    color: var(--text-secondary);    font-size: 1rem;    z-index: 1;}.guestbook-input-group input,.guestbook-input-group textarea {    padding-left: 48px !important;}.guestbook-input-group.textarea-group {    position: relative;}.guestbook-input-group.textarea-group .char-counter {    position: absolute;    right: 14px;    bottom: 14px;    font-size: 0.8rem;    color: var(--text-secondary);    font-weight: 500;    background: var(--bg-card);    padding: 4px 10px;    border-radius: 6px;    border: 1px solid var(--border);    pointer-events: none;}.guestbook-input-group.textarea-group .char-counter.warning {    color: #faa61a;    border-color: rgba(250, 166, 26, 0.3);}.guestbook-input-group.textarea-group .char-counter.danger {    color: #ed4245;    border-color: rgba(237, 66, 69, 0.3);}.guestbook-form-footer {    display: flex;    justify-content: space-between;    align-items: center;    gap: 16px;    padding-top: 16px;}.guestbook-notice {    display: flex;    align-items: center;    gap: 8px;    font-size: 0.85rem;    color: var(--text-secondary);}.guestbook-notice i {    color: var(--text-secondary);    font-size: 0.9rem;}.guestbook-info {    display: flex;    flex-direction: column;    gap: 4px;}.char-counter {    font-size: 0.9rem;    color: var(--text-secondary);    font-weight: 500;}.char-counter.warning {    color: #faa61a;}.char-counter.danger {    color: #ed4245;}.guestbook-note {    font-size: 0.8rem;    color: var(--text-secondary);    opacity: 0.7;}.guestbook-divider {    display: flex;    align-items: center;    justify-content: center;    gap: 10px;    padding: 16px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 14px;    margin-bottom: 16px;    font-size: 1rem;    font-weight: 500;    color: var(--text-secondary);}.guestbook-divider i {    color: var(--text-secondary);}.guestbook-messages {    display: flex;    flex-direction: column;    gap: 14px;}.guestbook-message {    padding: 24px;    background: var(--bg-card);    border: 1px solid var(--border);    border-radius: 18px;    transition: all 0.2s ease;    animation: messageSlideIn 0.3s ease;}@keyframes messageSlideIn {    from {        opacity: 0;        transform: translateY(10px);    }    to {        opacity: 1;        transform: translateY(0);    }}.guestbook-message:hover {    border-color: var(--text-secondary);}.guestbook-message-header {    display: flex;    justify-content: space-between;    align-items: center;    margin-bottom: 12px;}.guestbook-message-name {    display: flex;    align-items: center;    gap: 10px;    font-weight: 600;    font-size: 1.15rem;    color: var(--text);}.guestbook-message-name i {    font-size: 1rem;}.guestbook-message-time {    font-size: 0.9rem;    color: var(--text-secondary);}.guestbook-message-text {    font-size: 1.1rem;    color: var(--text);    line-height: 1.7;    word-wrap: break-word;}.guestbook-empty {    text-align: center;    padding: 40px 20px;    color: var(--text-secondary);}.guestbook-empty i {    font-size: 3rem;    margin-bottom: 16px;    color: var(--text-secondary);    opacity: 0.5;}.guestbook-empty p {    font-size: 1.1rem;}.guestbook-loading {    text-align: center;    padding: 30px;    color: var(--text-secondary);}.guestbook-loading i {    font-size: 1.5rem;    animation: spin 1s linear infinite;}@keyframes spin {    from { transform: rotate(0deg); }    to { transform: rotate(360deg); }}@media (max-width: 600px) {    .stats-section {        gap: 12px;    }    .spotify-widget {        width: 100%;        padding: 12px;        min-width: unset;        flex-direction: row;        align-items: center;    }    .spotify-cover-wrapper {        flex-shrink: 0;    }    .spotify-cover {        width: 56px;        height: 56px;    }    .spotify-badge {        top: -8px;        right: 8px;        padding: 3px 8px;    }    .spotify-badge .spotify-status {        font-size: 0.55rem;    }    .spotify-badge i {        font-size: 0.65rem;    }    .spotify-info {        flex: 1;        min-width: 0;        overflow: hidden;    }    .spotify-track {        font-size: 0.9rem !important;        white-space: nowrap;        overflow: hidden;        text-overflow: ellipsis;    }    .spotify-artist {        font-size: 0.75rem !important;        white-space: nowrap;        overflow: hidden;        text-overflow: ellipsis;    }    .spotify-time-row {        gap: 6px;    }    .spotify-time,    .spotify-duration {        font-size: 0.65rem !important;    }    .visitor-count {        bottom: 16px;        right: 16px;        padding: 10px 14px;        gap: 8px;        font-size: 0.95rem;    }    .visitor-count i {        font-size: 1rem;    }    .time-widget {        top: 16px;        left: 16px;        padding: 8px 12px;        gap: 8px;        max-width: calc(100% - 100px);    }    .time-widget i {        font-size: 1rem;    }    .time-label {        font-size: 0.6rem;    }    .time-value {        font-size: 0.9rem;    }    .controls {        top: 16px;        right: 16px;        gap: 8px;    }    .control-btn {        width: 36px;        height: 36px;        font-size: 0.75rem;    }    .tech-stack {        gap: 6px;    }    .tech-badge {        padding: 8px 12px;        font-size: 0.8rem;        gap: 6px;    }    .tech-badge i {        font-size: 0.9rem;    }}.footer {    position: fixed;    bottom: 20px;    left: 20px;    font-size: 0.8rem;    color: var(--text-secondary);    opacity: 0.6;    z-index: 100;    transition: opacity 0.3s ease;}.footer:hover {    opacity: 1;}.footer-link {    color: var(--text-secondary);    text-decoration: none;    transition: opacity 0.2s ease;}.footer-link:hover {    opacity: 0.8;}@media (max-width: 768px) {    .footer {        display: none;    }}.footer-mobile {    display: none;}@media (max-width: 768px) {    .footer-mobile {        display: block;        width: 100%;        text-align: center;        padding: 20px 0;        margin-top: 20px;        font-size: 0.8rem;        color: var(--text-secondary);        opacity: 0.5;    }    .footer-mobile .footer-link {        color: var(--text-secondary);        text-decoration: none;    }}
.project-action-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 15px;
}
.project-action-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}
.project-action-text span {
  font-size: 1.1rem;
  color: var(--text);
  animation: pointerMoveRight 1.5s infinite ease-in-out;
}
@keyframes pointerMoveRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.project-go-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}
.project-go-btn:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.project-go-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.project-go-btn:hover i {
  transform: translateX(3px) translateY(-3px);
}.project-go-btn.discord-color:hover {
  border-color: #5865F2;
  background: rgba(88, 101, 242, 0.1);
}
.project-go-btn.discord-color i {
  color: #5865F2;
}.discord-vanity {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.2s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.discord-vanity:hover {
  opacity: 1;
  color: var(--text);
  transform: translateY(-1px);
}

/* --- Audio Player --- */
.audio-control-wrapper {
  position: relative;
  display: inline-block;
}

/* Invisible bridge so mouse hover doesn't break when moving to dropdown */
.audio-control-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
  z-index: 9;
}

.volume-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 0;
  width: 40px;
  height: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}



.audio-control-wrapper:hover .volume-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

#volumeSlider {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  width: 90px;
  height: 4px;
  outline: none;
  transform: rotate(-90deg);
  cursor: pointer;
}

#volumeSlider::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

#volumeSlider::-moz-range-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

#volumeSlider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #fff;
  margin-top: -5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#volumeSlider::-moz-range-thumb {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#volumeSlider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

#volumeSlider::-moz-range-thumb:hover {
  transform: scale(1.3);
}
