/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(47, 79, 79, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-family: 'Noto Sans CJK JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', sans-serif;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #F4A460;
    font-weight: 600;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #E0E0E0;
}

.cookie-text a {
    color: #D2691E;
    text-decoration: underline;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background-color: #D2691E;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #E6864B;
    transform: translateY(-1px);
}

.cookie-btn.necessary {
    background-color: #8B4513;
    color: white;
}

.cookie-btn.necessary:hover {
    background-color: #A0522D;
    transform: translateY(-1px);
}

.cookie-btn.reject {
    background-color: transparent;
    color: #F4A460;
    border: 1px solid #F4A460;
}

.cookie-btn.reject:hover {
    background-color: #F4A460;
    color: #2F4F4F;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-text h3 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-banner {
        padding: 15px;
    }
}