/* Universal Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #0056b3;
}

a:hover {
    text-decoration: underline;
}

/* -------------------
   Header Styling 
   ------------------- */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 12px 5%;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area .brand-img {
    height: 45px;
    max-width: 100%;
}

.center-menu {
    display: flex;
    gap: 20px;
}

.center-menu a {
    color: #555;
    font-weight: bold;
    font-size: 15px;
}

.center-menu a:hover {
    color: #d32f2f;
    text-decoration: none;
}

.header-auth {
    display: flex;
    gap: 12px;
}

.btn-red-header {
    background-color: #d32f2f;
    color: #ffffff !important;
    padding: 8px 20px;
    font-weight: bold;
    border-radius: 4px;
    white-space: nowrap;
}

.btn-red-header:hover {
    background-color: #b71c1c;
    text-decoration: none;
}

/* -------------------
   Main Container 
   ------------------- */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
}

.page-title {
    font-size: 28px;
    font-weight: normal;
    color: #222;
    margin-bottom: 30px;
    text-align: left;
}

.center-section {
    text-align: center;
    margin-bottom: 40px;
}

.center-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Center Buttons */
.btn {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 15px auto;
    padding: 10px 15px;
    color: #fff !important;
    font-size: 15px;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
}

.btn:hover {
    text-decoration: none;
    opacity: 0.9;
}

.btn-red {
    background-color: #d32f2f;
}

.btn-telegram {
    background: linear-gradient(90deg, #007bff, #8a2be2);
    font-style: italic;
    margin-top: 25px;
}

/* Giftcode & Links */
.giftcode-box {
    margin: 20px 0;
    font-size: 15px;
    color: #333;
}

.text-link-box {
    margin: 15px 0;
}

.blue-link {
    font-weight: bold;
    text-decoration: underline;
    text-transform: uppercase;
}

/* Table Design */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.info-table td {
    border: 1px solid #444;
    padding: 12px 15px;
    font-size: 15px;
}

.info-table td:first-child {
    width: 30%;
    color: #333;
    font-weight: bold;
}

/* Article Content */
.article-content p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.article-content h2, .article-content h3 {
    margin: 20px 0 10px;
    color: #222;
}

.article-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.article-content li {
    margin-bottom: 8px;
    color: #444;
}

/* Footer */
.bottom-footer {
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.bottom-footer p {
    color: #333;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: #0056b3;
    font-size: 14px;
}

/* ====================================================
   MOBILE RESPONSIVE DESIGN (Ab phone par ekdum fit aayega)
   ==================================================== */
@media (max-width: 768px) {
    /* Header adjustments */
    .top-header {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }
    .logo-area .brand-img {
        height: 38px; /* Logo thoda chhota hoga mobile par */
    }
    .center-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .center-menu a {
        font-size: 13px; /* Menu links chhote honge */
    }
    .header-auth {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    .btn-red-header {
        padding: 6px 15px;
        font-size: 13px;
        width: 48%; /* Buttons aamne-saamne aayenge */
        text-align: center;
    }

    /* Container & Titles */
    .container {
        margin: 20px auto;
        padding: 0 10px;
    }
    .page-title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    /* Center Section Buttons */
    .center-logo {
        max-width: 120px;
    }
    .btn {
        max-width: 100%; /* Mobile par full width lenge par screen ke andar */
        padding: 10px;
        font-size: 14px;
    }

    /* Table adjustments for phone */
    .info-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
    .info-table td:first-child {
        width: 40%;
    }

    /* Article text size */
    .article-content p {
        font-size: 14px;
    }

    /* Footer */
    .bottom-footer {
        padding: 25px 15px;
    }
    .footer-links {
        gap: 10px;
    }
    .footer-links a {
        font-size: 13px;
    }
}