/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    height: 100%;
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial;
    background: #133004; /* fallback solid color */
    background: radial-gradient(
        circle,
        rgba(19, 48, 4, 0.88) 0%,
        rgba(0, 0, 0, 1) 100%
    );
    color: #202124;
}

/* Layout */
.wrap {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
}

/* Logo */
.logo {
    font-size: 64px;
    font-weight: 700;
    display: flex;
    gap: 6px;
    letter-spacing: 2px;
    position: relative;
    background: linear-gradient(90deg, #34a853, #2e8b57, #000000, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
}

/* Shine Effect only inside logo text */
.logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: skewX(-20deg);
    animation: shine 3s infinite;
    pointer-events: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

/* Search box */
.search {
    width: min(920px, 92vw);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    transition:
        box-shadow 0.15s,
        border-color 0.15s;
    background: #fff;
    position: relative; /* for icons inside */
}
.search:focus-within {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.18);
}
.search input[type="search"] {
    border: none;
    outline: none;
    font-size: 18px;
    width: 100%;
    padding-right: 60px; /* space for icons */
}
.search .icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

/* Search right icons container */
.search-icons {
    position: absolute;
    right: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.search-icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}
.search-icons img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Buttons */
.buttons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}
button {
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #dadce0;
    background: #f8f9fa;
    font-size: 14px;
    cursor: pointer;
}
button:hover {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.primary {
    border: 2px solid transparent;
    background: #fff;
    color: linear-gradient(90deg, #34a853, #2e8b57, #001f3f);
    font-weight: bold;
}
.secondary {
    background: #fff;
    color: linear-gradient(90deg, #001f3f, #2e8b57, #34a853);
    font-weight: bold;
}

/* Placeholder text gradient */
input::placeholder {
    background: linear-gradient(90deg, #001f3f 0%, #2e8b57 80%, #34a853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Left Vertical Menu attached to left wall */
.left-menu {
    position: fixed;
    top: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
    gap: 20px;
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial;
    z-index: 1000;
    background: transparent;
}
.left-menu .user-account img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid whitesmoke;
}
.left-menu a {
    text-decoration: none;
    font-size: 16px;
    background: whitesmoke;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: transform 0.2s ease;
}
.left-menu a:hover {
    transform: scale(1.05);
}

/* Footer */
.foot {
    position: relative;
    width: 100%;
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial;
}
/* Tagline stays centered bottom */
.foot .tagline {
    position: fixed;
    bottom: 16px;
    width: 100%;
    text-align: center;
    color: #ccc;
    font-size: 13px;
}
/* Bottom-left links */
.foot .footer-links {
    position: fixed;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    font-size: 13px;
}
.foot .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}
.foot .footer-links a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 480px) {
    .logo {
        font-size: 40px;
    }
    .search {
        padding: 10px 12px;
    }
    .search input[type="search"] {
        padding-right: 50px;
    }
    .search-icons img {
        width: 20px;
        height: 20px;
    }
}
