#cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(20, 25, 45, 0.9);
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 9999;
    display: none; /* Hidden by default, will be set to flex by JS */
    justify-content: space-between;
    align-items: center;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

#cookie-consent span {
    color: #e8e8e8;
    font-size: 0.9rem;
    margin-right: 15px;
}

#cookie-consent button {
    padding: 8px 16px;
    background: linear-gradient(135deg, #3a7bd5, #6a82fb);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.8rem;
}

#cookie-consent button:hover {
    transform: translateY(-2px);
}

#ad-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(20, 25, 45, 0.95);
    padding: 25px;
    border-radius: 8px;
    z-index: 10000;
    display: none; /* Hidden by default, will be set to block by JS */
    width: 350px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    color: #e8e8e8;
    text-align: center;
    font-size: 1rem;
}

#ad-consent button {
    padding: 10px 25px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 5px;
}

#ad-consent button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#ad-consent .ad-consent-title {
    margin-bottom: 10px;
}

#ad-consent .ad-consent-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#ad-consent .ad-consent-yes {
    background: linear-gradient(135deg, #3a7bd5, #6a82fb);
}

#ad-consent .ad-consent-no {
    background: #666;
}

#ad-consent .ad-consent-reset {
    font-size: 0.8rem;
    margin-top: 10px;
    text-align: center;
}
