:root {
 --primary: #d4af37;
 --primary-hover: #f1c40f;
 --secondary: #8e44ad;
 --bg-dark: #0f0f0f;
 --bg-card: #1a1a1a;
 --text-main: #e0e0e0;
 --text-muted: #a0a0a0;
 --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
}

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

body {
 font-family: 'Montserrat', sans-serif;
 background-color: var(--bg-dark);
 color: var(--text-main);
 line-height: 1.6;
 overflow-x: hidden;
}

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

/* Header */
header {
 background: rgba(0, 0, 0, 0.9);
 padding: 15px 0;
 position: sticky;
 top: 0;
 z-index: 1000;
 border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.logo img {
 height: 50px;
}

.nav-links {
 display: flex;
 list-style: none;
}

.nav-links li {
 margin-left: 25px;
}

.nav-links a {
 color: #fff;
 text-decoration: none;
 font-weight: 600;
 transition: 0.3s;
 font-size: 0.9rem;
 text-transform: uppercase;
}

.nav-links a:hover {
 color: var(--primary);
}

/* Hero */
.hero {
 padding: 100px 0 60px;
 text-align: center;
 background: radial-gradient(circle at center, #2c1a36 0%, #0f0f0f 100%);
}

.hero h1 {
 font-size: 3.5rem;
 font-weight: 800;
 margin-bottom: 20px;
 background: var(--gold-gradient);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 line-height: 1.2;
}

.hero p {
 font-size: 1.2rem;
 color: var(--text-muted);
 max-width: 800px;
 margin: 0 auto 40px;
}

.btn {
 display: inline-block;
 padding: 15px 40px;
 border-radius: 50px;
 text-decoration: none;
 font-weight: 700;
 transition: 0.3s;
 cursor: pointer;
 text-transform: uppercase;
 font-size: 0.9rem;
}

.btn-primary {
 background: var(--gold-gradient);
 color: #000;
}

.btn-primary:hover {
 box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
 transform: translateY(-2px);
}

/* Casino Listing */
.casino-listing {
 padding: 80px 0;
}

.section-title {
 text-align: center;
 font-size: 2.5rem;
 margin-bottom: 50px;
 position: relative;
}

.section-title::after {
 content: '';
 display: block;
 width: 60px;
 height: 3px;
 background: var(--primary);
 margin: 15px auto 0;
}

.casino-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
}

.casino-card {
 background: var(--bg-card);
 border-radius: 20px;
 padding: 30px;
 text-align: center;
 border: 1px solid rgba(255, 255, 255, 0.05);
 transition: 0.3s;
 position: relative;
 overflow: hidden;
}

.casino-card:hover {
 border-color: var(--primary);
 transform: translateY(-5px);
}

.casino-rank {
 position: absolute;
 top: 10px;
 left: 10px;
 background: var(--primary);
 color: #000;
 width: 30px;
 height: 30px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-weight: 800;
 font-size: 0.8rem;
}

.casino-logo {
 width: 100px;
 height: 100px;
 object-fit: contain;
 margin-bottom: 20px;
 border-radius: 15px;
 background: #fff;
 padding: 5px;
}

.casino-name-wrap h3 {
 font-size: 1.3rem;
 margin-bottom: 5px;
}

.casino-rating {
 color: #f1c40f;
 font-size: 0.9rem;
 margin-bottom: 15px;
}

.casino-bonus-wrap {
 margin-bottom: 25px;
 min-height: 50px;
 display: flex;
 align-items: center;
 justify-content: center;
}

.casino-bonus {
 font-weight: 700;
 color: var(--primary);
 font-size: 1.1rem;
}

.btn-play {
 width: 100%;
 background: var(--gold-gradient);
 color: #000;
}

/* Content Sections */
.content-section {
 padding: 60px 0;
}

.content-section h2 {
 font-size: 2rem;
 margin: 40px 0 20px;
 color: var(--primary);
}

.content-section p {
 margin-bottom: 20px;
 color: var(--text-main);
}

table {
 width: 100%;
 border-collapse: collapse;
 margin: 30px 0;
 background: var(--bg-card);
 border-radius: 15px;
 overflow: hidden;
}

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

th {
 background: rgba(212, 175, 55, 0.1);
 color: var(--primary);
}

.features-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
 gap: 30px;
 margin: 40px 0;
}

.feature-item {
 background: var(--bg-card);
 padding: 30px;
 border-radius: 20px;
 text-align: center;
 border-bottom: 3px solid var(--primary);
}

.feature-item img {
 width: 80px;
 margin-bottom: 20px;
}

.feature-item h3 {
 margin-bottom: 15px;
}

/* FAQ */
.faq-container {
 margin-top: 30px;
}

.faq-item {
 background: var(--bg-card);
 margin-bottom: 15px;
 border-radius: 10px;
 overflow: hidden;
}

.faq-question {
 padding: 20px;
 cursor: pointer;
 font-weight: 700;
 display: flex;
 justify-content: space-between;
 align-items: center;
 transition: 0.3s;
}

.faq-question:hover {
 background: rgba(212, 175, 55, 0.1);
}

.faq-question::after {
 content: '+';
 font-size: 1.5rem;
 color: var(--primary);
}

.faq-item.active .faq-question::after {
 content: '-';
}

.faq-answer {
 padding: 0 20px 20px;
 color: var(--text-muted);
 display: none;
}

/* Expert Box */
.expert-box {
 background: linear-gradient(to right, #2c1a36, #1a1a1a);
 padding: 40px;
 border-radius: 20px;
 display: flex;
 align-items: center;
 gap: 30px;
 border-left: 5px solid var(--primary);
}

.expert-avatar img {
 width: 100px;
 height: 100px;
 border-radius: 50%;
 border: 3px solid var(--primary);
}

.expert-info h4 {
 font-size: 1.5rem;
 margin-bottom: 10px;
 color: var(--primary);
}

.expert-info p {
 font-style: italic;
 margin: 0;
}

/* Footer */
footer {
 padding: 60px 0;
 background: #050505;
 text-align: center;
 border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
 margin-bottom: 30px;
}

.footer-links a {
 color: var(--text-muted);
 text-decoration: none;
 margin: 0 15px;
 transition: 0.3s;
}

.footer-links a:hover {
 color: var(--primary);
}

.copyright {
 color: #555;
 font-size: 0.9rem;
}

/* Re Mida gallery */
.remida-gallery {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 24px;
 margin: 40px 0;
}

.remida-gallery figure {
 margin: 0;
 background: var(--bg-card);
 border-radius: 16px;
 overflow: hidden;
 border: 1px solid rgba(212, 175, 55, 0.15);
}

.remida-gallery img {
 width: 100%;
 height: auto;
 display: block;
}

.remida-gallery figcaption {
 padding: 14px 16px;
 font-size: 0.9rem;
 color: var(--text-muted);
 text-align: center;
}

/* SEO & symbols blocks */
.remida-seo-block,
.remida-symbols-block {
 background: #0f172a;
 color: #e2e8f0;
 border-radius: 14px;
 padding: 32px 28px;
 margin: 50px 0;
}

.remida-seo-block h2,
.remida-symbols-block h2 {
 color: var(--primary);
 font-size: 1.75rem;
 margin: 0 0 20px;
}

.remida-seo-block h3,
.remida-symbols-block h3 {
 color: #f1c40f;
 font-size: 1.25rem;
 margin: 28px 0 12px;
}

.remida-seo-block h4 {
 color: #e2e8f0;
 font-size: 1.05rem;
 margin: 20px 0 8px;
}

.remida-seo-block p,
.remida-symbols-block p {
 color: #cbd5e1;
 margin-bottom: 16px;
}

.remida-seo-faq {
 margin-top: 32px;
 padding-top: 24px;
 border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.table-responsive {
 overflow-x: auto;
 margin: 24px 0;
}

.remida-symbols-table {
 width: 100%;
 border-collapse: collapse;
 background: rgba(0, 0, 0, 0.25);
 border-radius: 12px;
}

.remida-symbols-table th,
.remida-symbols-table td {
 padding: 12px 14px;
 border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 color: #e2e8f0;
}

.remida-symbols-table th {
 background: rgba(212, 175, 55, 0.12);
 color: var(--primary);
}

.remida-symbols-note {
 margin-top: 16px;
 font-size: 0.9rem;
 color: #94a3b8 !important;
}

@media (max-width: 768px) {
 .hero h1 { font-size: 2.5rem; }
 .header-inner { flex-direction: column; gap: 20px; }
 .nav-links li { margin: 0 10px; }
 .expert-box { flex-direction: column; text-align: center; }
}
