* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #E0E5EC;
    color: #555E69;
    line-height: 1.6;
    font-weight: 400;
}

.soft-ui-container {
    max-width: 100%;
    min-height: 100vh;
    padding: 40px 20px;
}

.raised-header {
    text-align: center;
    padding: 40px;
    margin-bottom: 60px;
    background: #E0E5EC;
    border-radius: 30px;
    box-shadow: 9px 9px 16px #A3B1C6, -9px -9px 16px #FFFFFF;
}

.site-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #555E69;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vitals-monitor {
    width: 100%;
    margin-bottom: 60px;
}

.gauge-cluster {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.vitals-gauge {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #E0E5EC;
    box-shadow: 12px 12px 20px #A3B1C6, -12px -12px 20px #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.gauge-icon {
    font-size: 3rem;
}

.gauge-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8B95A3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gauge-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #555E69;
}

.content-well {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 50px;
    background: #E0E5EC;
    border-radius: 30px;
    box-shadow: inset 8px 8px 16px #A3B1C6, inset -8px -8px 16px #FFFFFF;
}

.navigation-drawer {
    margin-bottom: 40px;
}

.menu-trigger {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555E69;
    cursor: pointer;
    padding: 15px 30px;
    background: #E0E5EC;
    border-radius: 15px;
    box-shadow: 6px 6px 12px #A3B1C6, -6px -6px 12px #FFFFFF;
    display: inline-block;
    transition: all 0.3s ease;
}

.menu-trigger:hover {
    box-shadow: 4px 4px 8px #A3B1C6, -4px -4px 8px #FFFFFF;
}

.menu-trigger:active {
    box-shadow: inset 4px 4px 8px #A3B1C6, inset -4px -4px 8px #FFFFFF;
}

.menu-list {
    list-style: none;
    margin-top: 20px;
    padding-left: 20px;
}

.menu-list li {
    padding: 10px 0;
    font-size: 1rem;
}

.menu-list a {
    color: #555E69;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-list a:hover {
    color: #7B8794;
}

.article-container {
    font-size: 1.05rem;
    color: #555E69;
}

.cultivation-gallery {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #555E69;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 20px;
}

.cultivation-tile {
    border-radius: 25px;
    background: #E0E5EC;
    box-shadow: 10px 10px 20px #A3B1C6, -10px -10px 20px #FFFFFF;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cultivation-tile:hover {
    box-shadow: inset 8px 8px 16px #A3B1C6, inset -8px -8px 16px #FFFFFF;
    transform: translateY(2px);
}

.cultivation-tile img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.genetics-panel {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 50px 20px;
}

.lineage-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: #E0E5EC;
    border-radius: 30px;
    box-shadow: inset 6px 6px 12px #A3B1C6, inset -6px -6px 12px #FFFFFF;
}

.parent-strains {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.strain-tag {
    padding: 15px 35px;
    background: #E0E5EC;
    border-radius: 50px;
    box-shadow: 6px 6px 12px #A3B1C6, -6px -6px 12px #FFFFFF;
    font-weight: 600;
    color: #555E69;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.strain-tag:hover {
    box-shadow: 8px 8px 16px #A3B1C6, -8px -8px 16px #FFFFFF;
    transform: translateY(-2px);
}

.strain-tag.result {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 45px;
    box-shadow: 8px 8px 16px #A3B1C6, -8px -8px 16px #FFFFFF;
}

.genetics-operator {
    font-size: 2rem;
    font-weight: 700;
    color: #8B95A3;
}

.genetics-arrow {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B95A3;
}

.soft-footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
    background: #E0E5EC;
    border-radius: 30px;
    box-shadow: 8px 8px 16px #A3B1C6, -8px -8px 16px #FFFFFF;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555E69;
}

.contact-info a {
    color: #555E69;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #7B8794;
}

.copyright-text {
    font-size: 0.9rem;
    color: #8B95A3;
}

@media (max-width: 768px) {
    .soft-ui-container {
        padding: 20px 10px;
    }

    .site-logo {
        font-size: 1.8rem;
    }

    .gauge-cluster {
        gap: 30px;
    }

    .vitals-gauge {
        width: 160px;
        height: 160px;
    }

    .gauge-icon {
        font-size: 2.5rem;
    }

    .content-well {
        padding: 30px 20px;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lineage-diagram {
        padding: 30px 20px;
    }

    .parent-strains {
        flex-direction: column;
    }
}
