/* ── Cookie Consent Banner ─────────────────────────────────── */
.gn-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #1a1a2e;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.gn-cookie-banner.visible {
    transform: translateY(0);
}
.gn-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.gn-cookie-text {
    flex: 1;
    min-width: 280px;
    color: #c0c0d0;
    font-size: 14px;
    line-height: 1.6;
}
.gn-cookie-text a {
    color: #e63946;
    text-decoration: underline;
}
.gn-cookie-text a:hover {
    color: #ff4d5a;
}
.gn-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.gn-cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.gn-cookie-accept {
    background: #e63946;
    color: #fff;
}
.gn-cookie-accept:hover {
    background: #ff4d5a;
    transform: translateY(-1px);
}
.gn-cookie-reject {
    background: transparent;
    color: #c0c0d0;
    border: 1px solid rgba(255,255,255,0.2);
}
.gn-cookie-reject:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* ── Legal Pages ──────────────────────────────────────────── */
.gn-page-main {
    padding: 120px 0 60px;
    min-height: 60vh;
}
.gn-page-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #f0f0f5;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e63946;
}
.gn-page-content {
    color: #c0c0d0;
    font-size: 15px;
    line-height: 1.8;
    max-width: 800px;
}
.gn-page-content h2 {
    color: #f0f0f5;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}
.gn-page-content h3 {
    color: #e0e0ea;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
}
.gn-page-content p {
    margin-bottom: 16px;
}
.gn-page-content ul {
    margin: 12px 0 20px 24px;
    padding: 0;
}
.gn-page-content li {
    margin-bottom: 8px;
    padding-left: 4px;
}
.gn-page-content a {
    color: #e63946;
    text-decoration: underline;
}
.gn-page-content a:hover {
    color: #ff4d5a;
}
.gn-page-content strong {
    color: #e0e0ea;
}
.gn-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 14px;
}
.gn-page-content th {
    text-align: left;
    padding: 10px 14px;
    background: rgba(230,57,70,0.15);
    color: #f0f0f5;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gn-page-content td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #c0c0d0;
}

/* Footer cookie settings link */
.gn-footer-cookie-link {
    cursor: pointer;
    color: #888;
    font-size: 13px;
    transition: color 0.2s;
}
.gn-footer-cookie-link:hover {
    color: #e63946;
}

@media (max-width: 768px) {
    .gn-cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    .gn-cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .gn-page-title {
        font-size: 1.8rem;
    }
    .gn-page-content table {
        font-size: 13px;
    }
    .gn-page-content th,
    .gn-page-content td {
        padding: 8px 10px;
    }
}
