:root {
    --primary-color: #2563eb;
    --secondary-color: #9b89c7;
    --accent-color: #b8a9d1;
    --background-color: #f8f7fb;
    --text-color: #4a4a4a;
    --light-text-color: #6b6b6b;
    --shadow-color: rgba(123, 104, 165, 0.15);
    --peaceful-gradient: linear-gradient(135deg, #e8e2f0 0%, #f4f1f8 100%);
    --meditation-gradient: linear-gradient(45deg, #2563eb 0%, #9b89c7 100%);
}

body {
    margin: 0;
    position: absolute;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    inset: 0;
    background: var(--peaceful-gradient);
    color: var(--text-color);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(155, 137, 199, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(184, 169, 209, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    justify-content: flex-end;
    transition: all 0.3s ease;
    padding: 2rem;
    width: 80vw;
    height: 110%;
}

.search-input {
    width: 100%;
    max-width: 850px;
    height: auto;
    font-size: 1rem;
    position: relative;
    border-radius: 2rem;
    border: 2px solid #e8e2f0;
    padding: 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(123, 104, 165, 0.1);
}

.search-input:hover,
.search-input:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px var(--shadow-color);
    transform: translateY(-2px);
}

header {
    height: 80%;
    display: flex;
}

#logo {
    width: 220px;
    max-width: 90%;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(123, 104, 165, 0.2));
}

#logo:hover {
    transform: scale(1.02);
}

.logo {
    display: flex;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.show-results header {
    height: 10%;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8e2f0;
    box-shadow: 0 2px 8px var(--shadow-color);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.show-results .header-container {
    flex-direction: row;
    margin-left: 2.5rem;
}

.show-results .logo {
    margin: 0 1.25rem 0 0;
    width: 115px;
}

#search-input {
    padding: 0;
    width: 300px;
    max-width: 80vw;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 1rem;
    color: var(--text-color);
}

#search-input::placeholder {
    color: var(--light-text-color);
}

.icon.search-icon {
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.icon.search-icon:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.icon.search-icon:after {
    content: "";
    background-repeat: no-repeat;
    background-size: 1.2rem;
    background-image: url(search.png);
    background-position: center;
    display: block;
    width: 100%;
    height: 100%;
    filter: opacity(0.8);
}

.description {
    font-size: 1.25rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(123, 104, 165, 0.1);
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(248, 247, 251, 0.95), transparent);
    border-top: 1px solid #e8e2f0;
    backdrop-filter: blur(10px);
}

.footer {
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer a {
    text-decoration: none;
    color: var(--light-text-color);
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.myButton {
    background: var(--meditation-gradient);
    border-radius: 1rem;
    border: none;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(123, 104, 165, 0.2);
}

.myButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 104, 165, 0.3);
}

.myButton:active {
    transform: translateY(0);
}

.agreement {
    width: min(60vw, 800px);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--light-text-color);
}

@media (min-width: 875px) {
    #content {
        margin-left: 6.25rem;
    }
}

@media (max-width: 420px) {
    .show-results .header-container {
        margin: 0;
        padding: 1rem;
    }

    .search-input {
        padding: 0.8rem 1.2rem;
    }

    .description {
        font-size: 1.1rem;
    }
}

iframe {
    margin-top: 1rem;
    width: 90vw;
    height: 100vh;
    border: none;
    /*border-radius: 0.5rem;*/
    /*box-shadow: 0 2px 8px var(--shadow-color);*/
}