/* style.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
}

header {
    background-color: #ff69b4;
    padding: 10px;
    color: white;
    text-align: center;
}

header .logo {
    width: 150px;
}

.menu {
    display: inline-block;
    margin-left: 20px;
}

.menu .dropdown {
    position: relative;
    display: inline-block;
}

.menu .dropdown-content {
    display: none;
    position: absolute;
    background-color: #16213e;
    min-width: 160px;
    z-index: 1;
}

.menu .dropdown:hover .dropdown-content {
    display: block;
}

.menu a, .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.menu a:hover, .dropdown-content a:hover {
    background-color: #ff1493;
}

footer {
    background-color: #ff69b4;
    color: white;
    text-align: center;
    padding: 10px;
    position: absolute;
    width: 100%;
    bottom: 0;
}

main {
    margin: 20px;
}

/* Popup de cookies */
.cookie-popup {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 20px 0;
    z-index: 9999;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    text-align: center;
}
.cookie-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.cookie-popup button {
    background: #ff69b4;
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}
.cookie-popup button:hover {
    background: #ff1493;
}
.footer-links {
    margin-bottom: 5px;
}
.footer-links a {
    color: #fff;
    text-decoration: underline;
    margin: 0 5px;
    font-size: 0.95em;
}
.footer-links a:hover {
    color: #ff69b4;
}
.footer-copy {
    font-size: 0.85em;
    color: #eee;
}
