/* FONT & BASE */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #0f172a;
    color: #fff;
    line-height: 1.7;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.nav a {
    margin-left: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    color: #38bdf8;
}

/* MAIN CONTENT */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.update-info {
    opacity: 0.7;
    margin-bottom: 10px;
}

.box-info {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 35px;
}

/* TABLE */
.table-container {
    overflow-x: auto;
    margin: 15px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cookie-table thead tr {
    background: rgba(255,255,255,0.08);
    text-align: left;
}

/* LIST */
.browser-list {
    margin: 10px 0 20px 20px;
}

/* LINKS */
.link {
    color: #38bdf8;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px 20px;
    opacity: 0.8;
}

.footer img {
    height: 40px;
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .nav a {
        margin-left: 12px;
        font-size: 0.9rem;
    }

    .cookie-table {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.15rem;
    }
}
