* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    overflow: hidden;
    position: relative;
    height: 100vh;
    width: 100vw;
    color: #fff;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/back.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(1px);
    z-index: -1;
}

@media (max-width: 768px) {
    .background {
        background-image: url('../assets/back-mb.jpg');
    }
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.content p {
    font-size: 1.2rem;
    max-width: 800px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(245, 245, 245, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    z-index: 1000;
    padding: 0;
    overflow: hidden;
    animation: slideUp 0.5s ease-out forwards;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #333;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.cookie-header {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-header h2 {
    color: #333;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.close-link {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.close-link:hover {
    color: #333;
    text-decoration: underline;
}

.cookie-content {
    padding: 20px 25px;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-content a:hover {
    text-decoration: underline;
    color: #3d8b40;
}

.button-container {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 0 25px 20px;
}

.button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.accept {
    background-color: #4CAF50;
    color: white;
}

.accept:hover {
    background-color: #3d8b40;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.reject {
    background-color: transparent;
    color: #555;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.reject:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}
