@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600;900&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #FDFCF5;
    --text-color: #333333;
    --accent-color: #EAE9E1;
    --border-color: #DEDCD3;
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
    /* Hide system cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: 0.1em;
    font-weight: 600;
    user-select: none;
    /* Disable text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}



/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-color);
}

.snap-container {
    height: 100vh;
    height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scroll-padding: 0;
}

.snap-section {
    height: 100vh;
    height: 100dvh;
    width: 100%;
    scroll-snap-align: start;
    display: flex;
    position: relative;
    padding: 4rem 2rem; /* Consistent left padding of 2rem */
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    overflow: hidden;
}

.snap-section:last-child {
    border-bottom: none;
}

/* INTRO SECTION */
#intro {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Remove special override, handle it globally below */
#intro .content-wrapper {
    margin: 0;
}

.intro-left h1 {
    font-size: 8.5vw;
    line-height: 0.8;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: 0.02em; /* Added a tiny bit of space instead of negative */
}

.origin-badge {
    font-size: 1rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    display: inline-block;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.badge-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    width: 2px;
    height: 2px;
    background: var(--text-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
}



.cursor-blob {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--text-color);
    /* Concrete matte grey */
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    /* Behind everything */
    transition: width 0.3s, height 0.3s;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.cursor-blob.magnetic {
    width: 20px;
    height: 20px;
}






.log-line {
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
    white-space: nowrap;
}




.server-tag-wrapper {
    margin-top: 1rem;
}

.server-tag {
    display: inline-flex;
    align-items: center;
    background: var(--text-color);
    color: var(--bg-color);
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 900;
    gap: 0.8rem;
    transition: all var(--transition-speed);
}

.server-tag:hover {
    background: var(--bg-color);
    color: var(--text-color);
    outline: 1px solid var(--text-color);
}

.status-online {
    width: 8px;
    height: 8px;
    background: #2ECC71;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.4);
}




/* TOAST NOTIFICATION */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-color);
    color: var(--bg-color);
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 900;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}







/* DETAILS SECTION */
.content-wrapper {
    width: 100%;
    max-width: 1400px; /* Increased a bit since we are left-aligned */
    margin: 0; /* Global left alignment */
    display: flex;
    flex-direction: column;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 4rem;
    margin-top: 5vh;
}

.description-box h2,
.playlist-box h2,
.languages-box h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.description-box p {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
}

.playlist-list {
    list-style: none;
}

.playlist-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    transition: padding-left 0.3s;
}

.playlist-list li:hover {
    padding-left: 1rem;
    background: var(--accent-color);
}

.lang-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
}

/* EXPERTISE SECTION */
.expertise-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    height: 100%;
    align-items: center;
}

.skill-item {
    font-size: 4vw;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.skill-item:hover {
    color: #999;
}

.help-card {
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.help-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* FOOTER SECTION */
.footer-section {
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.contact-header h2 {
    font-size: 5vw;
}

.contact-email {
    font-size: 3vw;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 2px solid var(--text-color);
    transition: opacity 0.3s;
}

.contact-email:hover {
    opacity: 0.5;
}

.sitemap-footer {
    margin-top: auto;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    color: #888;
    font-weight: 900;
}

.footer-col a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}