:root {
    --primary-color: #0075FF;
    --secondary-color: #00C853;
    --bg-dark: #0F1923;
    --bg-card: #182430;
    --text-main: #FFFFFF;
    --text-muted: #B0B5C1;
    --accent: #FFC107;
    --font-main: 'Rubik', sans-serif;
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding-left: 1.5rem; margin-bottom: 1.5rem; }
ul li { position: relative; margin-bottom: 0.5rem; color: var(--text-muted); }
ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* Layout Container */
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}

.site-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Main Buttons (CTA) */
.header_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 0 40px 0;
    flex-wrap: wrap;
}

.header_buttons a {
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: none;
}

.btn_login {
    background: linear-gradient(135deg, #0075FF 0%, #0056b3 100%);
    color: white !important;
}

.btn_Download {
    background: linear-gradient(135deg, #00C853 0%, #009624 100%);
    color: white !important;
}

.header_buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    filter: brightness(1.1);
}

/* Content Area */
.content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 50px;
}

/* Typography within Posts */
.main_title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-main);
    line-height: 1.2;
}

.entry h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.entry p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.entry strong {
    color: var(--text-main);
}

/* Images */
.wp-image-21 {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    margin: 30px auto;
}

/* Tables */
.table-container {
    width: 100%;
    margin: 30px 0;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #0075FF;
    color: white;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

th { font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
td { color: var(--text-muted); font-size: 0.95rem; }
tr:last-child td { border-bottom: none; }
tr:hover td { background-color: rgba(255,255,255,0.02); }

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: auto;
}

footer .site-logo {
    margin: 20px auto 0;
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wrap { padding: 0 15px; }
    header { padding: 15px 0; margin-bottom: 20px; }
    .site-logo { max-height: 45px; }
    
    .content { padding: 20px 15px; margin-bottom: 30px; border-radius: 12px; }
    
    .header_buttons { 
        flex-direction: column; 
        width: 100%; 
        gap: 12px; 
        margin-bottom: 30px;
    }
    .header_buttons a { 
        width: 100%; 
        padding: 14px;
        font-size: 1rem;
    }
    
    .main_title { font-size: 1.6rem; margin-bottom: 1.5rem; }
    .entry h2 { font-size: 1.3rem; margin-top: 2rem; }
    .entry p { font-size: 0.95rem; }
    
    /* Better table scrolling for mobile */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px -15px; /* Extend to edges */
        padding: 0 15px;
    }
    table { 
        display: table; 
        width: 100%;
        min-width: 500px; /* Force scroll */ 
        margin: 0;
    }
    
    footer { padding: 30px 0; }
}