* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #050505;
    color: #fff;
    line-height: 1.8;
}

.main-header {
    min-height: 86px;
    padding: 0 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5,5,5,0.96);
    border-bottom: 1px solid rgba(212,175,55,0.28);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 34px;
    font-weight: 900;
    color: #d4af37;
    line-height: 1.1;
}

.logo span {
    display: block;
    font-size: 11px;
    color: #ddd;
    font-weight: 400;
    margin-top: 4px;
}

nav a {
    color: #eee;
    margin-right: 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

nav a:hover {
    color: #d4af37;
}

.menu-toggle {
    display: none;
}

.section {
    padding: 75px 7%;
}

.section-title {
    text-align: center;
    margin-bottom: 38px;
}

.section-title h2 {
    font-size: 36px;
    color: #fff;
}

.section-title p {
    color: #aaa;
}

.gold-table-section {
    padding-top: 70px;
}

.gold-table-wrap {
    width: 95%;
    max-width: 1100px;
    margin: 25px auto;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,.35);
    background: linear-gradient(180deg, #111, #070707);
}

.gold-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.gold-table thead {
    background: #0d0d0d;
}

.gold-table th {
    color: #d4af37;
    padding: 18px 10px;
    font-size: 18px;
    text-align: center;
    border-bottom: 1px solid rgba(212,175,55,0.35);
}

.gold-table td {
    padding: 18px 10px;
    text-align: center;
    font-size: 17px;
    color: #eee;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    word-break: break-word;
}

.gold-table tr:last-child td {
    border-bottom: none;
}

.gold-table tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.035);
}

.gold-table td:first-child {
    font-weight: 900;
    color: #fff;
}

.gold-table td:nth-child(2) {
    color: #f3d46b;
    font-weight: 900;
}

.gold-table-note {
    text-align: center;
    color: #aaa;
    margin-top: 22px;
    font-size: 17px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.price-card {
    background: linear-gradient(180deg, #111, #080808);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 22px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.price-card.featured {
    border-color: #d4af37;
    transform: translateY(-8px);
}

.price-card span {
    background: #d4af37;
    color: #111;
    padding: 5px 18px;
    border-radius: 30px;
    font-weight: 800;
}

.price-card h3 {
    font-size: 42px;
    margin-top: 22px;
}

.price-card p {
    color: #aaa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.news-card {
    background: #101010;
    border: 1px solid rgba(212,175,55,.2);
    border-radius: 20px;
    padding: 28px;
    transition: .25s;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-card-img,
.single-news-img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.news-card-img {
    height: 190px;
    margin-bottom: 16px;
}

.news-card h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.news-card p {
    color: #bbb;
}

.single-news {
    max-width: 900px;
    margin: auto;
}

.single-news-img {
    max-height: 430px;
    margin-bottom: 25px;
}

.single-news h1 {
    color: #d4af37;
    font-size: 42px;
    margin-bottom: 15px;
}

.news-date {
    color: #aaa;
    margin-bottom: 25px;
}

.single-news-content {
    color: #ddd;
    font-size: 20px;
    line-height: 2.1;
}

.ads-banner {
    margin: 50px 7%;
    padding: 55px;
    border-radius: 28px;
    text-align: center;
    background: linear-gradient(135deg,#111,#1b1405);
    border: 1px solid rgba(212,175,55,.3);
}

.ads-banner h2 {
    color: #d4af37;
    margin-top: 20px;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 35px;
    background: #080808;
    border-top: 1px solid rgba(212,175,55,.2);
    color: #aaa;
}

.footer-logo {
    font-size: 34px;
    color: #d4af37;
    font-weight: 900;
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .main-header {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
    }

    .menu-toggle {
        display: block;
        background: transparent;
        border: 1px solid rgba(212,175,55,.5);
        color: #d4af37;
        font-size: 28px;
        width: 48px;
        height: 44px;
        border-radius: 10px;
        cursor: pointer;
    }

    nav {
        display: none;
        width: 100%;
        text-align: center;
    }

    nav.active {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    nav a {
        margin: 0;
        padding: 12px;
        background: #111;
        border: 1px solid rgba(212,175,55,.25);
        border-radius: 10px;
        text-align: center;
    }

    .section {
        padding: 55px 12px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .price-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .gold-table-wrap {
        width: 96%;
        margin: 18px auto;
    }

    .gold-table {
        width: 100%;
        min-width: 100%;
        table-layout: fixed;
    }

    .gold-table th,
    .gold-table td {
        font-size: 10px;
        padding: 9px 2px;
        line-height: 1.5;
        white-space: normal;
        word-break: break-word;
    }

    .gold-table th:nth-child(1),
    .gold-table td:nth-child(1) {
        width: 34%;
    }

    .gold-table th:nth-child(2),
    .gold-table td:nth-child(2),
    .gold-table th:nth-child(3),
    .gold-table td:nth-child(3),
    .gold-table th:nth-child(4),
    .gold-table td:nth-child(4),
    .gold-table th:nth-child(5),
    .gold-table td:nth-child(5) {
        width: 16.5%;
    }

    .ads-banner {
        margin: 30px 15px 60px;
        padding: 35px 15px;
    }
}