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

body {
    background-color: #000;
    color: #E4E4E4;
    font-family: 'pt-sans', Verdana, sans-serif;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 2px solid #333;
}

.header-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-images img {
    height: auto;
    max-width: 48%;
}

/* Layout */
.main-layout {
    display: flex;
    margin-top: 20px;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    flex: 0 0 250px;
}

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-nav a {
    color: #E4E4E4;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 5px 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s;
}

.side-nav a:hover {
    color: #3498db;
}

/* Main Content */
.content {
    flex: 1;
    background: #111;
    padding: 30px;
    border-radius: 8px;
}

h1, h2, h3 {
    color: #fff;
    margin-bottom: 20px;
}

h1 { font-size: 2.2rem; border-bottom: 2px solid #333; padding-bottom: 10px; }
h2 { font-size: 1.6rem; margin-top: 40px; }

p { margin-bottom: 20px; }

/* Casino Affiliate Grid */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.casino-card {
    background: #222;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #444;
}

.casino-card img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.casino-card h3 { font-size: 1.1rem; margin-bottom: 5px; }

.cta-btn {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    min-width: 500px;
}

th, td {
    border: 1px solid #444;
    padding: 12px;
    text-align: left;
}

th { background: #333; color: #fff; }

/* Review Sections */
.review-block {
    margin-top: 50px;
    border-left: 4px solid #3498db;
    padding-left: 20px;
}

.review-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .main-layout { flex-direction: column; }
    .sidebar { order: 2; flex: 1; }
    .content { order: 1; }
    .header-images img { max-width: 40%; }
}

@media (max-width: 600px) {
    .header-images { flex-direction: column; gap: 10px; }
    .header-images img { max-width: 80%; }
}