@font-face {
    font-family: 'Playfair Display';
    src: url('data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAADMAA0AAAAAA+wAAAC5AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhYGVgCBcAgqCAAIFQIkAwELCAQABCAFhGUHSBshC8zswRVGHwAg2oH/cQCD//8AAA==') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAAC0AA0AAAAAA+wAAABwAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGhYGVgCBcAgqCAAIFQIkAwELCAQABCAFhGUHSBshC8zswRVGHwAg2oH/cQCD//8AAA==') format('woff2');
    font-weight: 400;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f8f9fa;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172e;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: #ab8e2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b6e1f;
}

button, .btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background-color: #ab8e2c;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(171, 142, 44, 0.15);
}

.btn-primary:hover {
    background-color: #8b6e1f;
    box-shadow: 0 6px 16px rgba(171, 142, 44, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #0f172e;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #1a2847;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #ab8e2c;
    border: 2px solid #ab8e2c;
}

.btn-outline:hover {
    background-color: #ab8e2c;
    color: #ffffff;
}

.casino-icon {
    width: 48px;
    height: 48px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    fill: currentColor;
}

.casino-icon.large {
    width: 64px;
    height: 64px;
}

/* Header and Navigation */

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-accent {
    color: #ab8e2c;
}

.tagline {
    font-size: 0.75rem;
    color: #ab8e2c;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.25rem;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ab8e2c;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item.active {
    color: #ab8e2c;
}

.nav-item.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #0f172e;
    cursor: pointer;
}

/* Hero Section */

.hero {
    background: linear-gradient(135deg, #0f172e 0%, #1a2847 50%, #2a3d5c 100%);
    color: #ffffff;
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(171, 142, 44, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(171, 142, 44, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-accent {
    color: #ab8e2c;
}

.hero .casino-icon {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section */

.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #0f172e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ab8e2c, transparent);
    margin: 1.5rem auto;
}

/* Cards */

.card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid #ab8e2c;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #0f172e, #1a2847);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3rem;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    color: #0f172e;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card p {
    color: #4a4a4a;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    flex-grow
