/* === home.css – nowoczesny styl CTA dla skracacza linków === */

.shortener {
    background: #1c1c2b;
}

.shortener p.lead {
    color: #bbb;
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.short-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #232334;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    margin-bottom: 0;
}

.short-form input[type="url"],
.short-form input[type="text"] {
    padding: 20px 18px;
    border-radius: 10px;
    border: 1px solid #444;
    background: #2a2a3d;
    color: #fff;
    font-size: 17px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.short-form input:focus {
    border-color: #00d9ff;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.25);
    outline: none;
}

.short-form input::placeholder {
    color: #aaa;
    font-size: 15px;
}

.premium-options {
    background: #1f1f2d;
    padding: 25px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid #333;
    margin-top: 20px;
}

.premium-options label {
    color: #ccc;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.premium-options small,
.premium-options a {
    font-size: 13px;
    color: #888;
}

.premium-options a {
    color: #00d9ff;
    text-decoration: underline;
}

.options-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.options-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    font-size: 15px;
}

.short-form button[type="submit"] {
    padding: 18px;
    background: linear-gradient(to right, #00d9ff, #00b4cc);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.short-form button[type="submit"]:hover {
    background: linear-gradient(to right, #00b4cc, #00d9ff);
    transform: scale(1.03);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.lasts-posts h2{
    text-align: center;
}

.desc{
    padding-top: 60px;
}

.desc ul{
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.desc ul li{
    margin-bottom: 15px;
}

.desc ul li:last-child{
    margin-bottom: 0;
}

.expiry-options select {
    background-color: #1e1e2e;
    color: #fff;
    border: 1px solid #2b2d3c;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    max-width: 220px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23ccc' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    border-color: #00d9ff;
    transition: border-color 0.2s ease;
    margin-top: 10px;
    cursor: pointer;
}

.expiry-options select:focus {
    border-color: #00d9ff;
    outline: none;
}