html,
/* Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: url('../images/landing_page/uv-checker-background-with-text.png') top left repeat;
    color: #333;
    margin: 0;
    padding: 40px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease-in-out;
    overflow: hidden;
}

.reflection {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(240,240,240,0.1), transparent);
    pointer-events: none; /* Disable mouse events */
}

header, footer {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

header {
    top: 0;
}

footer {
    bottom: 0;
}

button {
    font-size: 20px;
    color: #f0f0f0;
    background-color: #333;
    padding: 10px;
    cursor:pointer;
}

/* Header Styles */
.header-left h1 {
    margin: 0;
    font-size: 36px;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    font-size: 18px;
}

.header-right .nav-text a {
    color: #333;
    text-decoration: none;
    padding: 8px 10px;
    font-weight: 500;
}

.header-right .nav-button a {
    color: #f0f0f0;
    background-color: #222222;
    padding: 8px 10px;
    font-weight: 600;
    text-decoration: none;
}

/* Main Content */
main {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

main h2 {
    margin-top: 0;
    font-size: 36px;
    margin-bottom: 20px;
}

main p {
    font-size: 20px;
    margin-bottom: 0;
}

.install {
    margin-top: 25px;
}

.install h3 {
    margin: 5px;
}

.install p {
    margin-top: 10px;
    font-size: 18px;
}

.install code {
    padding: 8px 10px;
    background-color: #222222;
    color: #f0f0f0;
    white-space: nowrap;
    display: inline-block;
    font-size: 20px;
}

.install .underline {
    text-decoration: underline;
}

/* Copy Button Styles */
.copy-button {
    display: inline-flex;
    align-items: center;
    border: none;
    padding: 0;
    cursor: pointer;
    vertical-align: middle;
    background-color: #222222;
}

.copy-icon:hover {
    stroke: #cccccc;
}

.copy-icon, .check-icon {
    width: 24px;
    height: 24px;
}

.hidden {
    display: none;
}

/* Footer Styles */
footer {
    font-size: 14px;
    color: #666666;
}

footer p {
    margin: 0;
    display: flex;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 600px) {
    header, footer {
        padding: 15px 20px;
    }

    footer {
        flex-direction: column;
    }

    footer p, .footer-links {
        flex: 1 1 100%;
        justify-content: center;
        order: 1;
    }

    footer p {
        padding: 10px;
        order: 2;
    }

    .header-left h1, main h2 {
        font-size: 28px;
    }

    .nav-button-link, .footer-links a, main p, .install p {
        font-size: 16px;
    }

    .header-right nav ul {
        font-size: 14px;
    }

    .container {
        padding: 20px;
    }
}