/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #faf8f5;
}

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #5d4037 0%, #8d6e63 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    border-radius: 8px;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #5d4037;
    border-radius: 4px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffc107;
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: #ffc107;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8d6e63 0%, #5d4037 50%, #3e2723 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,193,7,0.1)"/><circle cx="80" cy="40" r="0.8" fill="rgba(255,193,7,0.08)"/><circle cx="40" cy="70" r="1.2" fill="rgba(255,193,7,0.06)"/><circle cx="70" cy="10" r="0.6" fill="rgba(255,193,7,0.1)"/><circle cx="10" cy="60" r="0.9" fill="rgba(255,193,7,0.07)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #2c1810;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Table of Contents */
.table-of-contents {
    padding: 4rem 0;
    background: #fff;
}

.table-of-contents h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5d4037;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.toc-item {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.toc-item:hover {
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.toc-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.toc-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #5d4037;
}

.toc-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5d4037;
}

.table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th {
    background: linear-gradient(135deg, #5d4037 0%, #8d6e63 100%);
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #3e2723;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
}

.comparison-table tr:hover {
    background-color: #fafafa;
}

.casino-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.casino-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #2c1810;
    border-radius: 8px;
    padding: 5px;
}

/* Table cell styling for metrics */
.comparison-table td:has(.bonus-tag) {
    background: linear-gradient(45deg, #4caf50, #81c784) !important;
    color: white;
}

.comparison-table td:has(.games-count) {
    background: linear-gradient(45deg, #2196f3, #64b5f6) !important;
    color: white;
}

.comparison-table td:has(.deposit-min) {
    background: linear-gradient(45deg, #ff9800, #ffb74d) !important;
    color: white;
}

.comparison-table td:has(.withdrawal-time) {
    background: linear-gradient(45deg, #9c27b0, #ba68c8) !important;
    color: white;
}

.comparison-table td:has(.license) {
    background: linear-gradient(45deg, #607d8b, #90a4ae) !important;
    color: white;
}

.comparison-table td:has(.rating) {
    background: linear-gradient(45deg, #ffc107, #ffeb3b) !important;
    color: #2c1810;
}

/* Fallback for browsers that don't support :has() */
.comparison-table .bonus-cell {
    background: linear-gradient(45deg, #4caf50, #81c784) !important;
    color: white;
}

.comparison-table .games-cell {
    background: linear-gradient(45deg, #2196f3, #64b5f6) !important;
    color: white;
}

.comparison-table .deposit-cell {
    background: linear-gradient(45deg, #ff9800, #ffb74d) !important;
    color: white;
}

.comparison-table .withdrawal-cell {
    background: linear-gradient(45deg, #9c27b0, #ba68c8) !important;
    color: white;
}

.comparison-table .license-cell {
    background: linear-gradient(45deg, #607d8b, #90a4ae) !important;
    color: white;
}

.comparison-table .rating-cell {
    background: linear-gradient(45deg, #ffc107, #ffeb3b) !important;
    color: #2c1810;
}

.bonus-tag, .games-count, .deposit-min, .withdrawal-time, .license, .rating {
    background: none !important;
    color: inherit !important;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
    font-weight: 600;
}

.table-cta {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #2c1810;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.table-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: #fff;
}

.content-section:nth-child(odd) {
    background: #fafafa;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #5d4037;
    text-align: center;
}

.content-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Pros and Cons Grid */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pros-card, .cons-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pros-card {
    border-left: 4px solid #4caf50;
}

.cons-card {
    border-left: 4px solid #f44336;
}

.pros-card h3 {
    color: #4caf50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.cons-card h3 {
    color: #f44336;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.advantages-list, .disadvantages-list {
    list-style: none;
}

.advantage-item, .disadvantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    background: #fafafa;
}

.advantage-item.speed { background: linear-gradient(45deg, #e8f5e8, #f1f8e9); }
.advantage-item.security { background: linear-gradient(45deg, #e3f2fd, #e8f4f8); }
.advantage-item.convenience { background: linear-gradient(45deg, #fff3e0, #fef7e0); }
.advantage-item.mobile { background: linear-gradient(45deg, #f3e5f5, #fce4ec); }
.advantage-item.bonus { background: linear-gradient(45deg, #fffde7, #f9fbe7); }

.disadvantage-item.withdrawal { background: linear-gradient(45deg, #ffebee, #fce4ec); }
.disadvantage-item.availability { background: linear-gradient(45deg, #f3e5f5, #f8bbd9); }
.disadvantage-item.requirements { background: linear-gradient(45deg, #e0f2f1, #e8f5e8); }

.advantage-item .icon, .disadvantage-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Casino Reviews Section */
.casinos-section {
    padding: 4rem 0;
    background: #fafafa;
}

.casinos-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5d4037;
}

.casino-review-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.casino-review-card:hover {
    transform: translateY(-5px);
}

.casino-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.casino-header .review-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #2c1810;
    border-radius: 12px;
    padding: 8px;
}

.casino-header h3 {
    flex: 1;
    font-size: 1.8rem;
    color: #5d4037;
    margin-left: 1rem;
}

.casino-cta {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #2c1810;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.casino-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.casino-screenshot {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.casino-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.metric {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.metric-value {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.bonus-metric {
    background: linear-gradient(45deg, #4caf50, #81c784);
    color: white;
}

.games-metric {
    background: linear-gradient(45deg, #2196f3, #64b5f6);
    color: white;
}

.deposit-metric {
    background: linear-gradient(45deg, #ff9800, #ffb74d);
    color: white;
}

.withdrawal-metric {
    background: linear-gradient(45deg, #9c27b0, #ba68c8);
    color: white;
}

.license-metric {
    background: linear-gradient(45deg, #607d8b, #90a4ae);
    color: white;
}

.key-points {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-left: 4px solid #ffc107;
}

.key-points h4 {
    color: #5d4037;
    margin-bottom: 1rem;
}

.key-points ul {
    list-style: none;
}

.key-points li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.key-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Evaluation Section */
.evaluation-section {
    padding: 4rem 0;
    background: #fafafa;
}

.evaluation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #5d4037;
}

.evaluation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.evaluation-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid;
}

.evaluation-card:hover {
    transform: translateY(-5px);
}

.security-card { border-top-color: #4caf50; }
.payment-card { border-top-color: #2196f3; }
.games-card { border-top-color: #ff9800; }
.bonus-card { border-top-color: #9c27b0; }
.support-card { border-top-color: #607d8b; }

.evaluation-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.evaluation-card h3 {
    color: #5d4037;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.score-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    border-radius: 4px;
    transition: width 2s ease;
}

.weight-indicator {
    display: inline-block;
    background: linear-gradient(45deg, #5d4037, #8d6e63);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.methodology-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ffc107;
}

.methodology-card h3 {
    color: #5d4037;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: #fafafa;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #2c1810;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #5d4037;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsible Gambling Section */
.responsible-gambling-section {
    padding: 4rem 0;
    background: #fff;
}

.responsible-gambling-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #5d4037;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.responsible-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
}

.warning-card { border-left-color: #f44336; }
.tools-card { border-left-color: #2196f3; }
.tips-card { border-left-color: #4caf50; }

.responsible-card .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.responsible-card h3 {
    color: #5d4037;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.warning-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.warning-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.warning-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.card-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    color: #856404;
    font-weight: 500;
    margin-top: 1rem;
}

.tools-list {
    display: grid;
    gap: 1rem;
}

.tool-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid #2196f3;
}

.tool-item h4 {
    color: #5d4037;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tool-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tip {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #4caf50;
}

.tip-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.tip p {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.help-resources {
    margin: 3rem 0;
    background: #fafafa;
    border-radius: 15px;
    padding: 2rem;
}

.help-resources h3 {
    color: #5d4037;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #ffc107;
}

.resource-card h4 {
    color: #5d4037;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.phone, .website {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2196f3;
    margin: 0.5rem 0;
}

.availability {
    display: inline-block;
    background: linear-gradient(45deg, #4caf50, #81c784);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(45deg, #f44336, #ef5350);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.3);
}

.warning-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.warning-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.warning-content p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #fafafa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5d4037;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #fafafa;
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #ffc107;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #5d4037;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 4rem 0;
    background: #fff;
}

.contact-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5d4037;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #fafafa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid;
}

.email-card { border-top-color: #2196f3; }
.support-card { border-top-color: #ff9800; }
.partnership-card { border-top-color: #4caf50; }

.contact-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #5d4037;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2196f3;
    margin: 1rem 0;
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
    background: #fafafa;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5d4037;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #5d4037;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    margin: 0;
    font-weight: normal;
    color: #555;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    padding: 0;
}

.submit-button {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #2c1810;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Contact FAQ */
.contact-faq-section {
    padding: 4rem 0;
    background: #fff;
}

.contact-faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5d4037;
}

/* Notice Section */
.notice-section {
    padding: 4rem 0;
    background: #fafafa;
}

.notice-card {
    background: linear-gradient(45deg, #ff9800, #ffb74d);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
}

.notice-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.notice-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.notice-content p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
}

/* Privacy Page Styles */
.privacy-overview-section {
    padding: 4rem 0;
    background: #fff;
}

.privacy-overview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5d4037;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.privacy-card {
    background: #fafafa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ffc107;
}

.privacy-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-card h3 {
    color: #5d4037;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.privacy-details-section {
    padding: 4rem 0;
    background: #fafafa;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: #5d4037;
    margin-bottom: 2rem;
    font-size: 2rem;
    border-bottom: 3px solid #ffc107;
    padding-bottom: 0.5rem;
}

.data-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.data-type-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #2196f3;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.data-type-card h3 {
    color: #5d4037;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.data-type-card ul {
    margin-bottom: 1rem;
}

.purpose {
    background: #e3f2fd;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #1976d2;
    font-weight: 500;
}

.legal-basis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.basis-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #4caf50;
}

.basis-item h4 {
    color: #5d4037;
    margin-bottom: 0.5rem;
}

.retention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.retention-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #ff9800;
}

.retention-card h3 {
    color: #5d4037;
    margin-bottom: 1rem;
}

.duration {
    font-size: 2rem;
    font-weight: 700;
    color: #ff9800;
    display: block;
    margin: 1rem 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.right-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #4caf50;
}

.right-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.right-card h3 {
    color: #5d4037;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.rights-exercise {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
    border: 2px solid #4caf50;
}

.security-measures h3 {
    color: #5d4037;
    margin: 2rem 0 1rem 0;
}

.sharing-cases h3 {
    color: #5d4037;
    margin: 1.5rem 0 1rem 0;
}

.cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-category {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #9c27b0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.cookie-category h3 {
    color: #5d4037;
    margin-bottom: 1rem;
}

.cookie-management {
    background: #fff3e0;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #ff9800;
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-method {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #2196f3;
}

.contact-method h3 {
    color: #5d4037;
    margin-bottom: 1rem;
}

/* Terms Page Styles */
.terms-overview-section {
    padding: 4rem 0;
    background: #fff;
}

.terms-overview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5d4037;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.terms-card {
    background: #fafafa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ffc107;
}

.terms-details-section {
    padding: 4rem 0;
    background: #fafafa;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    color: #5d4037;
    margin-bottom: 2rem;
    font-size: 2rem;
    border-bottom: 3px solid #ffc107;
    padding-bottom: 0.5rem;
}

.definitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.definition-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #2196f3;
}

.definition-item h4 {
    color: #5d4037;
    margin-bottom: 0.5rem;
}

.service-description h3 {
    color: #5d4037;
    margin: 2rem 0 1rem 0;
}

.access-conditions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.condition-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #f44336;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.condition-card h3 {
    color: #5d4037;
    margin-bottom: 1rem;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.usage-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.usage-card.allowed {
    border-left: 4px solid #4caf50;
}

.usage-card.prohibited {
    border-left: 4px solid #f44336;
}

.usage-card h3 {
    color: #5d4037;
    margin-bottom: 1rem;
}

.accuracy-policy h3 {
    color: #5d4037;
    margin: 2rem 0 1rem 0;
}

.verification-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    color: #856404;
}

.third-party-links h3 {
    color: #5d4037;
    margin: 2rem 0 1rem 0;
}

.ip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ip-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #9c27b0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.ip-card h3 {
    color: #5d4037;
    margin-bottom: 1rem;
}

.liability-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.liability-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #ff9800;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.liability-card h3 {
    color: #5d4037;
    margin-bottom: 1rem;
}

.responsibility-notice {
    background: #ffebee;
    border: 2px solid #f44336;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    color: #c62828;
    text-align: center;
}

.responsible-gambling-terms h3 {
    color: #5d4037;
    margin: 2rem 0 1rem 0;
}

.help-resources-link {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #4caf50;
}

.modifications-policy h3 {
    color: #5d4037;
    margin: 2rem 0 1rem 0;
}

.review-recommendation {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #2196f3;
}

.termination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.termination-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #607d8b;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.termination-card h3 {
    color: #5d4037;
    margin-bottom: 1rem;
}

.jurisdiction-info h3 {
    color: #5d4037;
    margin: 2rem 0 1rem 0;
}

.alternative-dispute {
    background: #f3e5f5;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #9c27b0;
}

.alternative-dispute h4 {
    color: #5d4037;
    margin-bottom: 0.5rem;
}

.contact-terms {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #2196f3;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* Last Updated Section */
.last-updated-section {
    padding: 2rem 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.update-notice {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.update-notice p {
    margin: 0.5rem 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #5d4037 0%, #8d6e63 100%);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-nav h4, .footer-legal h4, .footer-info h4 {
    margin-bottom: 1rem;
    color: #ffc107;
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
}

.footer-nav a, .footer-legal a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover, .footer-legal a:hover {
    opacity: 1;
    color: #ffc107;
}

.footer-nav li, .footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #5d4037;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .toc-grid {
        grid-template-columns: 1fr;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .casino-header {
        flex-direction: column;
        text-align: center;
    }

    .casino-header h3 {
        margin-left: 0;
        margin-top: 1rem;
    }

    .casino-metrics {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .evaluation-grid {
        grid-template-columns: 1fr;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .responsible-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .age-warning {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem;
    }

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

    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .data-types-grid {
        grid-template-columns: 1fr;
    }

    .legal-basis-grid {
        grid-template-columns: 1fr;
    }

    .retention-grid {
        grid-template-columns: 1fr;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .cookies-grid {
        grid-template-columns: 1fr;
    }

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .definitions-grid {
        grid-template-columns: 1fr;
    }

    .access-conditions {
        grid-template-columns: 1fr;
    }

    .usage-grid {
        grid-template-columns: 1fr;
    }

    .ip-grid {
        grid-template-columns: 1fr;
    }

    .liability-cards {
        grid-template-columns: 1fr;
    }

    .termination-grid {
        grid-template-columns: 1fr;
    }

    .table-wrapper {
        border-radius: 10px;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }

    .casino-cell {
        min-width: 120px;
    }

    .casino-logo {
        width: 30px;
        height: 30px;
    }

    .table-cta {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .content-section,
    .comparison-section,
    .table-of-contents,
    .casinos-section,
    .faq-section {
        padding: 2rem 0;
    }

    .content-section h2,
    .comparison-section h2,
    .table-of-contents h2,
    .casinos-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }

    .casino-review-card,
    .content-card,
    .faq-item {
        padding: 1.5rem;
    }

    .toc-item {
        padding: 1.5rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 100px;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Print styles */
@media print {
    .header, .footer, .menu-toggle {
        display: none;
    }
    
    main {
        margin-top: 0;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero {
        background: #fff;
        color: #000;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        background: none;
        -webkit-text-fill-color: initial;
        color: #5d4037;
    }
}