/*
 * Casino Partners Styles for Rating Broker Theme
 * Description: Updated styles for clean, stylish review page, matching Tailwind design
 */

body.casino-partners {
    padding: 0;
    margin: 0;
    background: #141c26;
    font: 16px 'Arial', sans-serif;
    color: #ffffff;
}
a{ text-decoration: inherit;}
.casino-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    position: relative;
    min-height: 600px;
   
}
ol, ul {
    list-style: none;
    margin: 0;
	padding: 0;}

.casino-partners-header {
    background: #1f2a3c;
    border-bottom: 1px solid #34495e;
    display: flex;
    justify-content: center;
    height: 70px;
    margin-bottom: 21px;
}

.casino-partners-header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.casino-partners-header nav ul li {
    margin: 0 25px;
}

.casino-partners-header nav ul li a {
    line-height: 70px;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.casino-partners-header nav ul li a:hover {
    color: #f1c40f;
}

.casino-partners-hero {
    position: relative;
    text-align: center;
    margin-bottom: 64px;
}

.hero-bg {
    background: url('https://images.unsplash.com/photo-1604014238259-3cc9456fcbcc?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 16px;
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.hero-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #10b981;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-button:hover {
    background-color: #34d399;
    transform: translateY(-2px);
}

.casino-partners-section {
    margin-bottom: 48px;
}

.casino-partners-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto 24px;
}

.casino-partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 16px;
}

.casino-partner-card {
    background: #1f2a3c;
    border-radius: 8px;
    padding: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.casino-partner-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
}

.card-desc {
    font-size: 14px;
    color: #f1c40f;
    margin: 0 0 12px;
}

.card-info {
    font-size: 13px;
    color: #d1d5db;
    margin-bottom: 12px;
    text-align: left;
}

.card-info span {
    display: block;
    margin-bottom: 4px;
}

.card-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.card-button {
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.card-button.primary {
    background-color: #10b981;
    color: #ffffff;
}

.card-button.primary:hover {
    background-color: #34d399;
}

.card-button.secondary {
    background-color: #34495e;
    color: #ffffff;
}

.card-button.secondary:hover {
    background-color: #4b5563;
}

.casino-partners-footer {
    background: #1f2a3c;
    border-top: 1px solid #34495e;
    text-align: center;
    padding: 20px;
    margin-top: 48px;
    font-size: 14px;
    color: #d1d5db;
}

/* Review Page Styles */
.casino-py-10 {
    padding: 0.5rem 0;
}

.casino-px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.casino-bg-gray-800 {
    background: #1f2937;
}

.casino-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.casino-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.casino-text-center {
    text-align: center;
}

.casino-mb-4 {
    margin-bottom: 1rem;
}

.casino-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.casino-font-bold {
    font-weight: 700;
}

.casino-mb-2 {
    margin-bottom: 0.5rem;
}

.casino-text-yellow-400 {
    color: #facc15;
}

.casino-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.casino-py-12 {
    padding: 1rem 0;
}

.casino-grid {
    display: grid;
}

.casino-md-grid-cols-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .casino-md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.casino-gap-8 {
    gap: 2rem;
}

.casino-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.casino-font-semibold {
    font-weight: 600;    margin-bottom: 31px;
}

.casino-space-y-2 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.5rem;
}

.casino-text-gray-300 {
    color: #d1d5db;
}

.casino-mb-6 {
    margin-bottom: 1.5rem;
}

.casino-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.casino-text-green-400 {
    color: #4ade80;
}

.casino-text-red-400 {
    color: #f87171;
}

.casino-list-disc {
    list-style-type: disc;
}

.casino-list-inside {
    list-style-position: inside;
}

.casino-space-y-1 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.25rem;
}

.casino-bg-green-500 {
    background-color: #22c55e;
}

.casino-hover-bg-green-600:hover {
    background-color: #16a34a;
}

.casino-text-white {
    color: #ffffff;
}

.casino-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.casino-py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.casino-rounded-full {
    border-radius: 11px;
}

@media (max-width: 768px) {
    .casino-main {
        padding: 0.5rem;
    }

    .casino-py-10 {
        padding: 1.5rem 0;
    }

    .casino-py-12 {
        padding: 1.5rem 0;
    }

    .casino-px-4 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .casino-text-4xl {
        font-size: 1.75rem;
    }

    .casino-text-lg {
        font-size: 1rem;
    }

    .casino-text-2xl {
        font-size: 1.25rem;
    }
}