* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    font-size: 13px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 40px;
}

/* Header */
header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px;
    z-index: 100;
    background: rgba(245, 245, 245, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: none;
    border-radius: 20px;
    box-shadow: none;
    width: fit-content;
    gap: 20px;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

header.scrolled {
    background: rgba(245, 245, 245, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-logo-image {
    width: 30px;
    height: 30px;
}

.nav-links-left {
    display: flex;
    gap: 20px;
    order: 1;
}

.header-logo {
    order: 2;
}

.nav-links-right {
    display: flex;
    gap: 20px;
    align-items: center;
    order: 3;
}

.social-dropdown {
    position: relative;
    display: flex;
    align-items: baseline;
}

.dropdown-btn {
    background: none;
    border: none;
    color: #666;
    text-decoration: underline;
    font-family: inherit;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
    align-self: center;
}

.dropdown-btn:hover {
    color: #333;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.social-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 8px;
    background: #f5f5f5;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    min-width: 120px;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown-content a {
    color: #666;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-content a:hover {
    background-color: #eee;
    color: #333;
}



.nav-links-left a,
.nav-links-right a {
    color: #666;
    text-decoration: underline;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links-left a:hover,
.nav-links-right a:hover {
    color: #333;
}



/* Typography */
h1 {
    font-size: 17px;
    font-weight: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 14px;
    font-weight: normal;
    margin: 40px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: 15px;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

.location {
    color: #00D084;
    text-decoration: underline;
}

.highlight {
    color: #00D084;
    text-decoration: underline;
}

.highlight:hover {
    color: #00B86F;
}

/* Lists */
ul {
    list-style: none;
    margin-left: 0;
}

li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

/* Sections */
.intro {
    margin-bottom: 40px;
}

.disclaimer {
    font-style: italic;
    color: #666;
    margin-top: 20px;
    font-size: 12px;
}

/* Expandable sections */
.expandable-sections {
    margin-top: 30px;
}

.expandable-item {
    margin-bottom: 5px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.section-header:hover {
    background-color: #f9f9f9;
    margin: 0 -10px;
    padding: 15px 10px;
}

.section-header span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-btn {
    background: none;
    border: none;
    color: #00D084;
    text-decoration: underline;
    font-family: inherit;
    font-size: 11px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-btn:hover {
    color: #00B86F;
}

.section-content {
    display: none;
    padding: 8px 0 5px 0;
    border-top: 1px solid #eee;
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.6;
}

.section-content.expanded {
    display: block;
}

/* Directory section */
.directory ul li {
    padding-left: 20px;
}

.directory ul li:before {
    content: "•";
}

/* Footer */
footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    margin-top: 60px;
    font-size: 11px;
    color: #666;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-small {
    width: 16px;
    height: 16px;
    display: inline-block;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 100px 15px 40px;
    }
    
    header {
        top: 10px;
        padding: 8px 15px;
        flex-wrap: nowrap;
        gap: 12px;
        border-radius: 12px;
        max-width: calc(100vw - 20px);
        font-size: 10px;
    }
    
    .header-logo-image {
        width: 25px;
        height: 25px;
    }
    
    .header-logo-image {
        width: 25px;
        height: 25px;
    }
    
    .nav-links-left,
    .nav-links-right {
        gap: 10px;
    }
    
    .nav-links-left a,
    .nav-links-right a,
    .dropdown-btn {
        font-size: 10px;
    }
    
    .dropdown-content {
        position: fixed;
        right: 15px;
        left: auto;
    }
    h1 {
        font-size: 17px;
    }
    
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .section-header span {
        font-size: 13px;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .toggle-btn {
        font-size: 10px;
        flex-shrink: 0;
    }
    
    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background-color: #00D084;
    color: white;
}

/* Landing Screen */
.landing-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    min-height: 100vh;
    width: 100vw;
}

.landing-content {
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
    position: relative;
}

.intro-text h1 {
    font-size: 42px;
    font-weight: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    min-height: 50px;
}

.subtitle {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 30px;
    text-transform: lowercase;
    letter-spacing: 1px;
    color: #666;
    text-align: center;
}

.landing-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    animation: fadeIn 0.6s ease 0.3s both;
}

.option-btn {
    background: none;
    border: 2px solid #333;
    color: #333;
    padding: 15px 40px;
    font-family: inherit;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    min-width: 200px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.option-btn:hover {
    background-color: #333;
    color: #f5f5f5;
    transform: translateY(-2px);
}

.option-btn:active {
    transform: translateY(0);
}

/* Primary button (main/philosophy button) - larger */
.option-btn.primary {
    padding: 20px 60px;
    font-size: 16px;
    min-width: 300px;
    font-weight: 500;
}

/* Secondary button (portfolio button) - smaller */
.option-btn.secondary {
    padding: 10px 30px;
    font-size: 11px;
    min-width: 150px;
    font-weight: normal;
}

/* Philosophy Page */
.philosophy-header {
    text-align: left;
    margin-bottom: 30px;
}

.philosophy-header h1 {
    font-size: 17px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.subtitle {
    color: #666;
    font-size: 12px;
    font-style: italic;
}

.page-subtitle {
    color: #666;
    font-size: 12px;
    font-style: italic;
    text-align: left;
}

.philosophy-list {
    margin: 0 0 40px 0;
}

.philosophy-item {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    opacity: 1;
    margin-left: 0;
    padding-left: 0;
}

.philosophy-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    padding-left: 0;
}



.continue-btn {
    background: none;
    border: none;
    color: #666;
    font-family: inherit;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    margin: 0;
    text-decoration: none;
    display: inline-block;
}

.continue-btn:hover {
    color: #333;
}

/* Pages with headers visible */
body:not(.landing-page) header {
    display: flex;
}

.page-header {
    position: relative;
    margin-bottom: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-btn {
    background: none;
    border: none;
    color: #666;
    font-family: inherit;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    text-decoration: none;
}

.back-btn:hover {
    color: #333;
}

/* Typewriter Effect */
.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #333;
    animation: blink 1s infinite;
    margin-left: 2px;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Glitch Effect for Typewriter */
.glitch {
    animation: glitch 0.1s;
}

@keyframes glitch {
    0% { transform: translateX(0); }
    20% { transform: translateX(-1px); }
    40% { transform: translateX(1px); }
    60% { transform: translateX(-1px); }
    80% { transform: translateX(1px); }
    100% { transform: translateX(0); }
}

/* Mobile Responsiveness for New Screens */
@media (max-width: 768px) {
    .landing-content {
        padding: 0 15px;
    }
    
    .intro-text h1 {
        font-size: 32px;
        letter-spacing: 1px;
        min-height: 40px;
    }
    
    .subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .option-btn {
        padding: 12px 30px;
        font-size: 12px;
        min-width: 180px;
    }
    
    .option-btn.primary {
        padding: 16px 40px;
        font-size: 14px;
        min-width: 240px;
    }
    
    .option-btn.secondary {
        padding: 8px 20px;
        font-size: 10px;
        min-width: 120px;
    }
    
    .philosophy-screen {
        padding: 60px 0;
    }
    
    .philosophy-header {
        margin-bottom: 40px;
    }
    
    .philosophy-header h1 {
        font-size: 17px;
        margin-top: 20px;
    }
    
    .back-btn {
        font-size: 11px;
    }
    
    .philosophy-item {
        padding: 15px 0;
    }
    
    .philosophy-item p {
        font-size: 13px;
    }
    
    .continue-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
    
    .philosophy-footer {
        margin-top: 40px;
    }
    
    .page-header {
        margin-bottom: 30px;
        padding-top: 15px;
    }
}