@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

body {
    /* keep min height for scroll if needed */
    min-height: 100vh;
}

.container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 26px;
    box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 12px solid rgba(255, 255, 255, 0.3);
    padding: 40px 40px 50px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    /* text color already on body, can override here if needed */
}

.description {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

h1 {
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 3rem;
    text-shadow: 0 0 6px rgba(0,0,0,0.15);
    color: #fff;
}

form {
    display: flex;
    width: 100%;
    max-width: 600px;
    gap: 12px;
    margin-bottom: 24px;
}

input[type="url"] {
    flex-grow: 1;
    padding: 14px 18px;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    color: #0071A9; /* brighter white */
    box-shadow:
    inset 0 0 8px rgba(255, 255, 255, 0.3);
    transition: background 0.3s, box-shadow 0.3s;
}

input[type="url"]::placeholder {
    color: #0071A9;
}

input[type="url"]:focus {
    background: rgba(255, 255, 255, 0.4);
    box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.6);
}

button {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #E2AD01;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-shadow: 0 0 2px rgba(0,0,0,0.3);
    box-shadow:
    0 4px 10px rgba(255, 255, 255, 0.3);
    transition: background 0.3s, box-shadow 0.3s;
}

button:hover,
button:focus {
    background: rgba(255, 255, 255, 0.5);
    box-shadow:
    0 6px 20px rgba(255, 255, 255, 0.5);
}

#result {
margin-top: 34px;
max-width: 600px;
width: 93%;
word-break: break-word;
font-size: 1.1rem;
color: #1E90FF;
background: rgba(255, 255, 255, 0.25);
padding: 16px 20px;
border-radius: 14px;
border: 1px solid rgba(255, 255, 255, 0.35);
box-shadow:
inset 0 0 10px rgba(255, 255, 255, 0.3);
user-select: all;
text-align: center;
min-height: 24px;
}

#ads-container {
margin-top: 40px;
width: 100%;
max-width: 600px;
background: rgba(255, 255, 255, 0.15);
border-radius: 14px;
min-height: 90px;
display: flex;
justify-content: center;
align-items: center;
color: #e0e0e0cc;
font-style: italic;
font-size: 0.9rem;
text-shadow: 0 0 4px rgba(0,0,0,0.1);
box-shadow:
0 4px 15px rgba(0, 0, 0, 0.1);
}
