/* Cabalagana - Layout Replica */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Inter:wght@400;500&display=swap');

:root {
    --primary-color: #ffc107;
    --secondary-color: #2b0f0a;
    --accent-color: #3a140d;
    --highlight-color: #ff5722;
    --bg-color: #2b0f0a;
    --text-color: #ffffff;
    --text-muted: #cbd5e1;
    --card-bg: rgba(58, 20, 13, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);

    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    --max-width: 1200px;
    --section-padding: 60px 20px;
    --card-padding: 24px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 50% 50%, rgba(255, 87, 34, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-primary {
    font-family: var(--font-primary);
}

h1 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #ff5722, #ffc107);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Header */
header {
    height: 90px;
    background-color: transparent;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    height: 50px;
}

.logo-icon {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--highlight-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto 20px;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Casino Listings */
.listing-container {
    padding-bottom: 60px;
}

.listing-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
    transition: var(--transition);
    position: relative;
}

.listing-card:hover {
    border-color: var(--primary-color);
    background: rgba(58, 20, 13, 0.8);
}

.rank-badge {
    font-size: 42px;
    font-weight: 900;
    color: #4a1c12;
    font-style: italic;
    min-width: 80px;
}

.casino-logo-wrap {
    width: 140px;
    height: 90px;
    background: #000;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.casino-info {
    flex: 1;
}

.casino-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.verified-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
}

.casino-offer {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: #3a140d;
    border-radius: 3px;
    margin-bottom: 12px;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    width: 85%;
}

.feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--text-muted);
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
}

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

/* Footer Refined */
footer {
    background-color: #000;
    padding: 60px 0 30px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-row {
    margin-bottom: 40px;
}

.footer-row h3 {
    margin-bottom: 20px;
    color: #ffc107;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.footer-nav a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffc107;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.trust-logos a:hover {
    opacity: 0.8;
}

.trust-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.trust-logos a:hover img {
    transform: scale(1.1);
}

.trustpilot {
    font-weight: bold;
    font-size: 1.2rem;
    color: #00b67a;
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 32px;
    }

    .listing-card {
        flex-direction: column;
        text-align: center;
    }

    .casino-logo-wrap {
        width: 200px;
    }

    .feature-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 10px;
    }
}