* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px 20px 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.notify-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.notify-form input {
    padding: 14px 20px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    width: 260px;
    outline: none;
    transition: border-color 0.3s ease;
}

.notify-form input:focus {
    border-color: #cfa65d;
}

.notify-form button {
    padding: 14px 28px;
    font-size: 1rem;
    background-color: #cfa65d;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.notify-form button:hover {
    background-color: #b8914d;
    transform: translateY(-2px);
}

.notify-form button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.cf-turnstile {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.form-message {
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 24px;
}

.form-message.success {
    color: #4caf50;
}

.form-message.error {
    color: #e53935;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-3px);
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

footer {
    padding: 20px 0;
    color: #999;
    font-size: 0.875rem;
}

footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #cfa65d;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.cookie-consent p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-buttons button {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cookie-accept {
    background-color: #cfa65d;
    color: #fff;
    border: none;
}

#cookie-accept:hover {
    background-color: #b8914d;
}

#cookie-decline {
    background-color: transparent;
    color: #666;
    border: 1px solid #ccc;
}

#cookie-decline:hover {
    border-color: #999;
    color: #333;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .logo {
        max-width: 200px;
    }

    footer {
        margin-top: 40px;
    }
}
