.google-consent {
    position: fixed;
    z-index: 10000;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    background: #0b0b0b;
    color: #fff;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
    font-family: Inter, Arial, sans-serif;
}

.google-consent[hidden] { display: none; }
.google-consent__copy { max-width: 720px; }
.google-consent__copy strong { display: block; margin-bottom: 6px; font-size: 15px; }
.google-consent__copy p { margin: 0 0 7px; color: #c7c7c7; font-size: 13px; line-height: 1.5; }
.google-consent__copy a { color: #00ff66; font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.google-consent__actions { display: flex; flex: 0 0 auto; gap: 10px; }
.google-consent__actions button {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #00ff66;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    cursor: pointer;
}
.google-consent__actions button:first-child { background: transparent; color: #fff; }
.google-consent__actions button:last-child { background: #00ff66; color: #000; }
.google-consent__actions button:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (max-width: 720px) {
    .google-consent { align-items: stretch; flex-direction: column; gap: 14px; padding: 16px; }
    .google-consent__actions { display: grid; grid-template-columns: 1fr 1fr; }
    .google-consent__actions button { padding: 0 10px; }
}
