.cookieConsentContainer {
    z-index: 9999;
    width: 320px;
    box-sizing: border-box;
    padding: 20px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cookieConsentContainer .cookieTitle a {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookieConsentContainer .cookieTitle i {
    color: #d4af37;
    font-size: 1rem;
}

.cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.5;
    display: block;
    margin-top: 10px;
}

.cookieConsentContainer .cookieDesc a {
    font-family: 'Poppins', sans-serif;
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookieConsentContainer .cookieDesc a:hover {
    color: #f4d03f;
    text-decoration: underline;
}

.cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    color: #1a1a2e;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    box-sizing: border-box;
    padding: 10px 20px;
    text-align: center;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cookieConsentContainer .cookieButton a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 480px) {
    .cookieConsentContainer {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: calc(100% - 20px);
    }
}
