/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(27, 23, 32, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.is-visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.7;
    -webkit-user-select: text;
    user-select: text;
}

.cookie-consent-text a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-text a:hover {
    color: #ffffff;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
}

.cookie-consent-btn--accept {
    background: rgba(255, 255, 255, 0.95);
    color: #1b1720;
}

.cookie-consent-btn--accept:hover {
    background: #ffffff;
}

.cookie-consent-btn--decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent-btn--decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 16px 16px;
    }

    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-consent-text {
        font-size: 12px;
    }

    .cookie-consent-actions {
        justify-content: flex-end;
    }

    .cookie-consent-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}
