* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage-green: #9db4a0;
    --soft-blue: #b8d4e8;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-text: #333333;
    --light-green: #e8f0e8;
    --light-blue: #e8f0ff;
}

body {
    font-family: 'Arial', 'Calibri', sans-serif;
    background: linear-gradient(180deg, #9db4a0 0%, #8fa090 30%, #7a8080 60%, #6a7070 100%);
    color: var(--dark-text);
    line-height: 1.6;
    min-height: 100vh;
}
 
@keyframes bgFadeIn1 {
    0% { opacity: 0; }
    20% { opacity: 0; }
    25% { opacity: 1; }
    45% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes bgFadeIn2 {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes bgFadeIn3 {
    0% { opacity: 0; }
    45% { opacity: 0; }
    50% { opacity: 1; }
    70% { opacity: 1; }
    75% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes bgFadeIn4 {
    0% { opacity: 0; }
    70% { opacity: 0; }
    75% { opacity: 1; }
    95% { opacity: 1; }
    100% { opacity: 0; }
}

 
.header {
    background: linear-gradient(135deg, var(--sage-green) 0%, #8fa090 50%, #7a9080 100%);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(157, 180, 160, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.header-text h1 {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 600;
}

.header-text .tagline {
    font-style: italic;
    color: var(--white);
    font-size: 0.9rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: #ffffcc;
    border-bottom-color: #ffffcc;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.nav-menu a.active {
    color: #ffffcc;
    border-bottom-color: #ffffcc;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.quick-exit {
    background: var(--white);
    border: 2px solid var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--sage-green);
    font-size: 0.95rem;
}

.quick-exit:hover {
    background: #ffffcc;
    color: var(--sage-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.back-btn {
    background: linear-gradient(135deg, var(--soft-blue), #9db4a0);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.95rem;
    margin-right: 0.8rem;
}

.back-btn:hover {
    background: linear-gradient(135deg, #a8c5e0, #8fa090);
    box-shadow: 0 4px 12px rgba(157, 180, 160, 0.3);
    transform: translateY(-2px);
}

.back-btn:active {
    transform: translateY(0);
}

 
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('bg1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: bgFadeIn1 20s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: bgFadeIn2 20s ease-in-out infinite;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('bg3.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: bgFadeIn3 20s ease-in-out infinite;
    z-index: 0;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('bg4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: bgFadeIn4 20s ease-in-out infinite;
    z-index: 0;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(157, 180, 160, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-end;
    padding-bottom: 2rem;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-instruction {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    background: linear-gradient(135deg, var(--sage-green), #8fa090);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 6px 20px rgba(157, 180, 160, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(157, 180, 160, 0.5);
}
 
.mood-tracker-hero {
    background: linear-gradient(135deg, #5a7a6a, #4a6a5a);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--sage-green);
    box-shadow: 0 10px 40px rgba(157, 180, 160, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-left: auto;
    max-width: 400px;
}

.mood-tracker-hero .mood-label {
    font-weight: 700;
    margin: 0;
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
}

.mood-tracker-hero .mood-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mood-tracker-hero .mood-btn {
    background: linear-gradient(135deg, var(--light-green), var(--light-blue));
    border: 2px solid var(--white);
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    text-align: left;
    color: #333;
}

.mood-tracker-hero .mood-btn:hover {
    background: linear-gradient(135deg, var(--sage-green), var(--soft-blue));
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(157, 180, 160, 0.3);
}

 
.main-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}
 
.mission-section {
    background: var(--white);
    border-top: 5px solid var(--sage-green);
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 6px 20px rgba(157, 180, 160, 0.25);
}

.mission-section h2 {
    text-align: center;
    color: var(--sage-green);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.mission-container h3 {
    color: var(--sage-green);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.mission-box {
    background: linear-gradient(135deg, var(--light-green), var(--light-blue));
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--sage-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(157, 180, 160, 0.2);
}

.mission-box h3 {
    color: var(--sage-green);
    margin-top: 0;
}

.mission-box p {
    color: var(--dark-text);
    line-height: 1.8;
    margin: 0;
}

 
.values-section {
    margin: 2rem 0;
}

.values-subtitle,
.attributes-subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sage-green);
    letter-spacing: 3px;
    margin: 0.5rem 0 1.5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.value-card {
    position: relative;
    background: linear-gradient(135deg, var(--sage-green), var(--soft-blue));
    color: var(--white);
    padding: 2rem 1rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 150px;
    box-shadow: 0 4px 15px rgba(157, 180, 160, 0.15);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(157, 180, 160, 0.3);
}

.value-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(93, 122, 110, 0.95);
    color: var(--white);
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.value-card:hover .value-description {
    opacity: 1;
    transform: translateY(0);
}

.value-letter {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-card p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

 
.attributes-section {
    margin: 2rem 0;
}

.attributes-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.attribute-card {
    position: relative;
    background: linear-gradient(135deg, var(--light-green), var(--light-blue));
    border: 2px solid var(--sage-green);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    min-height: 130px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.attribute-card:hover {
    background: linear-gradient(135deg, var(--sage-green), var(--soft-blue));
    color: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(157, 180, 160, 0.25);
}

.attr-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(93, 122, 110, 0.95);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.attribute-card:hover .attr-description {
    opacity: 1;
    transform: translateY(0);
}

.attr-letter {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sage-green);
}

.attribute-card:hover .attr-letter {
    color: var(--white);
}

.attribute-card span:last-child {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-text);
}

.attribute-card:hover span:last-child {
    color: var(--white);
}
 
.about-section {
    background: var(--white);
    padding: 4rem 3rem;
    margin: 0 2rem 3rem 2rem;
    border-top: 5px solid var(--sage-green);
    border-bottom: 5px solid var(--sage-green);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(157, 180, 160, 0.25);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--sage-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-btn {
    background: var(--sage-green);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-btn:hover {
    background: var(--soft-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(157, 180, 160, 0.3);
}

.about-details-btn {
    background: linear-gradient(135deg, var(--sage-green), #8fa090);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.about-details-btn:hover {
    background: linear-gradient(135deg, #8fa090, var(--sage-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(157, 180, 160, 0.3);
}

.about-text p {
    color: var(--dark-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.about-text strong {
    color: #304D03;
    font-weight: 700;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.about-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-img-wrapper:first-child {
    height: 280px;
}

.about-img-wrapper:last-child {
    height: 450px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
}

.about-img:hover {
    transform: scale(1.05);
}

.about-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.about-img-wrapper:hover .about-img-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    text-align: center;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.about-img-wrapper:hover .overlay-text {
    transform: translateY(0);
}

.overlay-text h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.overlay-text p {
    font-size: 0.95rem;
    line-height: 1.6;
}


.main-title {
    font-size: 2rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    margin-top: 3rem;
    font-weight: 700;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #9db4a0 0%, #8fa090 50%, #7a8080 100%);
    border-radius: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(157, 180, 160, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.main-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

 
.slider {
    border-left: 5px solid var(--sage-green);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(157, 180, 160, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #fff;
}

#unwind {
    background: #000;
}

.slider-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slider:hover {
    box-shadow: 0 8px 25px rgba(157, 180, 160, 0.2);
    transform: translateY(-3px);
}

.slider-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 8px;
}

.slider-content h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 700;
}

#unwind .slider-content h3 {
    color: #ffffff;
    text-shadow: none;
}

.slider:not(#unwind) .slider-content h3 {
    color: var(--sage-green);
    text-shadow: none;
}

.slider-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

#unwind .slider-subtitle {
    color: #ffffff;
    text-shadow: none;
}

.slider:not(#unwind) .slider-subtitle {
    color: #000000;
    text-shadow: none;
}

.slider-description {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

#unwind .slider-description {
    color: #ffffff;
    text-shadow: none;
}

.slider:not(#unwind) .slider-description {
    color: #000000;
    text-shadow: none;
}

.slider-next-hint {
    margin-top: 1.5rem;
    color: #ffffff;
    font-style: italic;
    font-size: 0.95rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 600;
}

#unwind .slider-next-hint {
    color: #ffffff;
    text-shadow: none;
}

.slider:not(#unwind) .slider-next-hint {
    color: var(--sage-green);
    text-shadow: none;
}
 
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.game-card {
    background: linear-gradient(135deg, var(--light-green), var(--light-blue));
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    user-select: none;
    position: relative;
}

.game-card:hover {
    border-color: var(--sage-green);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(157, 180, 160, 0.25);
}

.card-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(157, 180, 160, 0.95);
    color: white;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    pointer-events: none;
}

.game-card:hover .card-description {
    opacity: 1;
    transform: translateY(0);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.game-card p {
    font-weight: 600;
    color: var(--dark-text);
}
 
.diary-form {
    background: linear-gradient(135deg, #f5f9f5 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 2px solid var(--sage-green);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--sage-green);
}

.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--soft-blue);
    border-radius: 5px;
    font-family: 'Arial', 'Calibri', sans-serif;
    font-size: 1rem;
    color: var(--dark-text);
    transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 5px rgba(157, 180, 160, 0.3);
}

.color-options {
    display: flex;
    gap: 1rem;
}

.color-options input[type="color"] {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.save-btn {
    background: linear-gradient(135deg, var(--sage-green), var(--soft-blue));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(157, 180, 160, 0.2);
}

.save-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(157, 180, 160, 0.4);
}
 
.diary-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.diary-preview-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9f5 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--soft-blue);
    box-shadow: 0 4px 15px rgba(157, 180, 160, 0.1);
}

.diary-preview-panel h4 {
    color: var(--sage-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.diary-preview-content {
    background: white;
    padding: 1.5rem;
    border-radius: 5px;
    min-height: 400px;
    border-left: 8px solid var(--soft-blue);
    line-height: 1.8;
    word-wrap: break-word;
    font-size: 1.1rem;
}

.preview-placeholder {
    color: #999;
    font-style: italic;
    text-align: center;
    padding-top: 180px;
}
 
.color-customize {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.color-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.color-input-group label {
    margin: 0;
    font-weight: 600;
    color: var(--sage-green);
    font-size: 0.9rem;
    min-width: 120px;
}

.color-input-group input[type="color"] {
    width: 100px;
    height: 100px;
    border: 2px solid var(--soft-blue);
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-input-group input[type="color"]:hover {
    transform: scale(1.1);
}
 
.saved-entries-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #ddd;
    margin-top: 2rem;
}

.saved-entries-section h4 {
    color: #9db4a0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    border-bottom: 3px solid #b8d4e8;
    padding-bottom: 0.5rem;
}

.saved-entries-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
 
.resources-section {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 3px solid #f0ad4e;
    margin-top: 2rem;
}

.resources-section h4 {
    color: #d9650f;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.resources-section p {
    color: #333;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

 
.location-section {
    background: linear-gradient(135deg, #e8f0e8 0%, #d4e8d4 100%);
    padding: 3rem;
    margin: 2rem 0;
    border-top: 5px solid var(--sage-green);
    border-bottom: 5px solid var(--sage-green);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-section h2 {
    color: var(--sage-green);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.location-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(157, 180, 160, 0.2);
}

.location-info h3 {
    color: var(--sage-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.location-info p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(157, 180, 160, 0.2);
}
 

 

.service-card p {
    color: var(--dark-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

 
.faq-section {
    background: linear-gradient(135deg, #e8f0ff 0%, #d4e8f0 100%);
    padding: 3rem;
    margin: 2rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    color: var(--sage-green);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    text-align: center;
}

.faq-subtitle {
    color: var(--soft-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(157, 180, 160, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 6px 20px rgba(157, 180, 160, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.2rem;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    font-size: 1rem;
    text-align: left;
    border-left: 4px solid var(--soft-blue);
}

.faq-question:hover {
    background: #f5f9f5;
    border-left-color: var(--sage-green);
}

.faq-question:focus {
    outline: none;
}

.faq-title {
    font-weight: 600;
    color: var(--sage-green);
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--sage-green);
    font-weight: bold;
    min-width: 30px;
    text-align: right;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    color: var(--soft-blue);
}

.faq-answer {
    padding: 1.5rem 1.2rem;
    background: #fafbfa;
    border-top: 2px solid #e0e0e0;
    color: var(--dark-text);
    line-height: 1.8;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

 
.services-section {
    background: linear-gradient(135deg, #e8f0e8 0%, #d4e8d4 100%);
    padding: 3rem;
    margin: 2rem 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-section h2 {
    color: var(--sage-green);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    text-align: center;
}

.services-subtitle {
    color: var(--soft-blue);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(157, 180, 160, 0.2);
    transition: all 0.3s ease;
    border-top: 4px solid var(--sage-green);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(157, 180, 160, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--sage-green);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--dark-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

 
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--sage-green), var(--soft-blue));
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: none;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(157, 180, 160, 0.4);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(157, 180, 160, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px);
}

 
@media (max-width: 768px) {
    .diary-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .color-customize {
        flex-direction: column;
    }
    
    .color-input-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .color-input-group input[type="color"] {
        width: 60px;
        height: 60px;
    }

    .location-section {
        padding: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-section h2 {
        font-size: 1.5rem;
    }

    .faq-section {
        padding: 2rem;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }

    .services-section {
        padding: 2rem;
    }

    .services-section h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        bottom: 20px;
        right: 20px;
    }
}

 
.footer {
    background: linear-gradient(135deg, var(--sage-green) 0%, #8fa090 50%, #6a8070 100%);
    color: var(--white);
    padding: 4rem 3rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 15px rgba(157, 180, 160, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
}

.hotline-list li {
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.5rem;
}

.footer-disclaimer small {
    opacity: 0.9;
    line-height: 1.5;
}

 
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    .header-right {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu li {
        padding: 0.5rem 0;
    }

    .hero {
        height: 800px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .slider {
        padding: 1.5rem;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mood-options {
        flex-direction: column;
    }

    .mood-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem;
    }

    .hero {
        height: 600px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .main-content {
        padding: 0 1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}
