#tw-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.tw-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.tw-cookie-text { flex: 1; min-width: 260px; }
.tw-cookie-text strong { font-size: 15px; }
.tw-cookie-text p { margin: 4px 0 0; font-size: 13px; color: #e0e0e0; line-height: 1.5; }
.tw-cookie-text a { color: #7ec8e3; text-decoration: underline; }
.tw-cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
#tw-cookie-accept {
    background: #0284c7;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
}
#tw-cookie-accept:hover { background: #0369a1; }
#tw-cookie-decline {
    background: #374151;
    color: #fff;
    border: 1px solid #6b7280;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
#tw-cookie-decline:hover { background: #4b5563; border-color: #9ca3af; }