.hero {
    text-align: center;
}

.hero-desc {
    max-width: 600px;
    margin: 20px auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
}

.accent-card {
    background: #EFDBC5;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
}

:root[data-theme="dark"] .accent-card {
    background: #3a332b;
}

.icon-music {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.good-news-card {
    background: var(--card-bg);
    padding: 25px 30px;
    border-radius: 8px;
}

.good-news-title {
    font-size: 11px;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.meaning-list {
    list-style: none;
    text-align: left;
}

.meaning-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(203, 165, 119, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(203, 165, 119, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(203, 165, 119, 0);
    }
}

.meaning-icon {
    font-size: 20px;
    color: var(--accent-gold);
    background: var(--accent-light);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-glow 2.5s infinite ease-in-out;
    perspective: 500px;
    transition: all 0.4s ease;
    cursor: default;
}

.meaning-icon:hover,
.meaning-icon.is-active {
    background: var(--accent-gold);
    color: #fff;
    transform: scale(1.1);
}

.meaning-icon svg {
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes icon-spin-once {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.meaning-icon:hover svg,
.meaning-icon.is-active svg {
    animation: icon-spin-once 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
    text-align: left;
}

.path-card {
    background: var(--white);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

:root[data-theme="dark"] .path-card {
    background: var(--card-bg-light);
}

:root[data-theme="dark"] .path-card[style*="background: #FAF7F2"] {
    background: var(--card-bg) !important;
}

.path-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    margin-bottom: 25px;
}

.path-label {
    font-size: 12px;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.path-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.path-list {
    text-align: left;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 30px;
}

.path-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 13px;
}

.path-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CBA577' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.error-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CBA577' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.success-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CBA577' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .why-grid,
    .paths-grid,
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 32px !important;
    }

    .hero-subtitle {
        font-size: 28px !important;
    }

    h2[style*="font-size: 36px"],
    h2[style*="font-size: 40px"] {
        font-size: 28px !important;
    }

    .content-card {
        padding: 30px 20px !important;
    }
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

:root[data-theme="dark"] .sidebar-overlay {
    background: rgba(0, 0, 0, 0.65);
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-color);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    border-left: 1px solid var(--border-color);
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
    margin-bottom: 30px;
    padding: 5px;
}

.sidebar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 600;
}

.sidebar-link {
    display: block;
    padding: 15px 0;
    font-size: 14px;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s;
}

.sidebar-link:hover {
    color: var(--accent-gold);
}

.sidebar-link.active {
    color: var(--accent-gold);
    font-weight: 600;
}

.sidebar-link:last-child {
    border-bottom: none;
}
