@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #ffecd2);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

main {
    display: flex;
    gap: 2rem;
}

section {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

button {
    background: #ff9a9e;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #ff7e82;
}

#sites-list {
    display: grid;
    gap: 1rem;
}

.site-card {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.site-card:hover {
    transform: scale(1.05);
}

.site-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.site-card a {
    color: #ff9a9e;
    text-decoration: none;
}

.site-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
}
