/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #1A1A1A;
    border-radius: 1rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-header h3 {
    color: #f6f6f8;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f6f6f8;
}

.cookie-modal-body {
    padding: 1.25rem;
}

.cookie-option {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-option-title {
    color: #f6f6f8;
    font-size: 0.938rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-option-desc {
    color: #9ca3af;
    font-size: 0.813rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-badge {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.cookie-badge-necessary {
    background: rgba(197, 160, 89, 0.2);
    color: #C5A059;
}

.cookie-badge-analytics {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.cookie-modal-footer {
    display: flex;
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    justify-content: center;
}

.cookie-btn-primary {
    background: #C5A059;
    color: #1A1A1A;
    padding: 0.625rem 2rem;
    font-size: 0.813rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-primary:hover {
    background: #d4af6a;
}

/* Mobile */
@media (max-width: 480px) {
    .cookie-modal {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
    }
}

/* Windows 10 Notification Style */
.win10-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    max-width: calc(100vw - 40px);
    background: rgba(32, 32, 32, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 9998;
    overflow: hidden;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.win10-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.win10-notification.hiding {
    transform: translateX(400px);
    opacity: 0;
}

.win10-notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.win10-notification-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.win10-notification-icon {
    width: 18px;
    height: 18px;
    background: rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.win10-notification-icon svg {
    width: 11px;
    height: 11px;
    fill: #C5A059;
}

.win10-notification-body {
    padding: 12px 14px;
}

.win10-notification-text {
    color: #ddd;
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 12px 0;
    font-weight: 400;
}

.win10-notification-text a {
    color: #C5A059;
    text-decoration: none;
}

.win10-notification-text a:hover {
    text-decoration: underline;
}

.win10-notification-buttons {
    display: flex;
    gap: 6px;
}

.win10-notification-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.win10-notification-btn-primary {
    background: #C5A059;
    color: #1A1A1A;
}

.win10-notification-btn-primary:hover {
    background: #d4af6a;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* Mobile */
@media (max-width: 480px) {
    .win10-notification {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
    }

    .win10-notification-buttons {
        flex-direction: column;
    }
}
