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

body {
    background-color: #275448;
    color: #c1d6d0;
    font-family: 'Consolas', 'Menlo', 'Monaco', monospace;
    line-height: 1.6;
    padding: 40px 60px;
}

/* Welcome Screen */
#welcomeScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.5s;
}

.welcome-content {
    text-align: center;
    color: #fff;
}

.welcome-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
}

.welcome-content p {
    font-size: 18px;
    color: #888;
    margin: 10px 0;
}

.music-hint {
    font-size: 14px !important;
    margin-top: 20px !important;
}

/* Skip Button */
.skip-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    z-index: 10000;
}

.skip-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

/* Essays Section */
.essays-section h1,
.essays-section h3 {
    color: #c1d6d0;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
}

.essay-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Essay Item Links */
.essay-item {
    color: #c1d6d0;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
    position: relative;
    padding-bottom: 5px;
}

.essay-item:hover {
    color: #ffffff;
    padding-left: 10px;
}

/* Animated underline effect */
.essay-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.essay-item:hover::after {
    width: 100%;
}

/* Essay Link (for About section links) */
.essay-link {
    color: #c1d6d0;
    text-decoration: none;
    transition: color 0.3s;
}

.essay-link:hover {
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 30px;
    }

    header {
        flex-direction: column;
        gap: 20px;
    }

    .essays-section h1,
    .essays-section h3 {
        font-size: 32px;
    }
}

/* Mywhys Section */
.mywhys-section h1,
.mywhys-section h3 {
    color: #c1d6d0;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
}

.mywhys-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* My Whys Item Links */
.mywhys-item {
    color: #c1d6d0;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
    position: relative;
    padding-bottom: 5px;
}

.mywhys-item:hover {
    color: #ffffff;
    padding-left: 10px;
}

/* Animated underline effect */
.mywhys-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.mywhys-item:hover::after {
    width: 100%;
}

/* My Whys Link (for About section links) */
.mywhys-link {
    color: #c1d6d0;
    text-decoration: none;
    transition: color 0.3s;
}

.mywhys-link:hover {
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 30px;
    }

    header {
        flex-direction: column;
        gap: 20px;
    }

    .mywhys-section h1,
    .mywhys-section h3 {
        font-size: 32px;
    }
}
/* Projects Section */
.projects-section h1,
.projects-section h3 {
    color: #c1d6d0;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Projects Item Links */
.projects-item {
    color: #c1d6d0;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
    position: relative;
    padding-bottom: 5px;
}

.projects-item:hover {
    color: #ffffff;
    padding-left: 10px;
}

/* Animated underline effect */
.projects-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.projects-item:hover::after {
    width: 100%;
}

/* Projects Link (for About section links) */
.projects-link {
    color: #c1d6d0;
    text-decoration: none;
    transition: color 0.3s;
}

.projects-link:hover {
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 30px;
    }

    header {
        flex-direction: column;
        gap: 20px;
    }

    .projects-section h1,
    .projects-section h3 {
        font-size: 32px;
    }
}

