/* Base Styles */
:root {
    --primary-color: #4a6bff;
    --secondary-color: #ff6b4a;
    --accent-color: #ffc107;
    --dark-color: #1a1a2e;
    --light-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #777777;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--secondary-color);
}

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

.img-responsive {
    display: block;
    width: 100%;
    border-radius: var(--border-radius);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.cta-button, .header-cta-button, .footer-cta-button, .next-steps-button, .learn-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.cta-button:hover, .header-cta-button:hover, .footer-cta-button:hover, .next-steps-button:hover, .learn-more-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.learn-more-btn {
    background-color: var(--primary-color);
    margin-top: 20px;
}

.learn-more-btn:hover {
    background-color: var(--secondary-color);
}

/* Header Styles */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--dark-color);
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-highlight {
    color: var(--secondary-color);
}

.main-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-item.active .nav-link {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.header-cta-button {
    padding: 10px 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    display: block;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    margin: 10px 0;
}

.mobile-nav-link {
    color: var(--text-color);
    font-weight: 500;
    display: block;
    padding: 10px 0;
}

.mobile-nav-item.active .mobile-nav-link {
    color: var(--primary-color);
}

.mobile-cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

/* Hero Section */
.hero-section {
      background-image: url('../images/bar.jpg');
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bar.jpg');
    background-size: cover;
    opacity: 0.1;
}

.hero-small {
    padding: 60px 0 40px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    margin-top: 30px;
}

.hero-image {
    margin-top: 40px;
    text-align: center;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: #f0f0f0;
    padding: 10px 0;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
}

.breadcrumbs-list li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: var(--text-light);
}

.breadcrumbs-list li:last-child {
    color: var(--text-light);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Intro Section */
.intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-image, .intro-features {
    flex: 1;
    min-width: 300px;
}

.feature-box {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* How It Works Section */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.learn-more-container {
    text-align: center;
    margin-top: 30px;
}

/* Why Choose Us Section */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.reason-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-author {
    text-align: right;
    font-style: italic;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Quick Links Section */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.link-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    display: block;
    color: var(--text-color);
}

.link-card:hover {
    transform: translateY(-5px);
    color: var(--text-color);
}

.link-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Game Objective Section */
.objective-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.highlight-box {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Placing Bets Section */
.betting-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.option-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.option-features {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.betting-steps {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 30px;
}

.betting-steps ol {
    padding-left: 20px;
}

/* Multipliers Section */
.multiplier-example {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
}

.multiplier-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.fact-box {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.fact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Cashing Out Section */
.cashout-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.method-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.method-pros-cons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.pros, .cons {
    flex: 1;
    min-width: 200px;
}

.pros h4 {
    color: var(--success-color);
}

.cons h4 {
    color: var(--danger-color);
}

.pros ul, .cons ul {
    list-style: disc;
    padding-left: 20px;
}

.auto-cashout-tip {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
}

/* Common Mistakes Section */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mistake-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.mistake-icon {
    font-size: 2rem;
    color: var(--danger-color);
    margin-bottom: 15px;
}

/* Next Steps Section */
.next-steps-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.next-steps-cta {
    margin: 30px 0;
}

.or-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    z-index: 1;
}

.or-divider span {
    position: relative;
    background-color: var(--light-color);
    padding: 0 20px;
    z-index: 2;
    color: var(--text-light);
}

.play-now-cta {
    margin-top: 30px;
}

/* Popular Strategies Section */
.strategy-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.strategy-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.strategy-details {
    margin-top: 20px;
}

.strategy-details ul {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.strategy-example {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
}

.strategy-disclaimer {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 4px solid var(--warning-color);
    margin: 20px 0;
}

/* Bankroll Management Section */
.management-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tip-box {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.tip-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bankroll-example {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
}

/* Psychology of the Game Section */
.psychology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.psychology-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
}

/* Responsible Gaming Section */
.responsible-practices {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.practice-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.practice-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
    text-align: center;
}

.practice-text {
    flex: 1;
}

.responsible-resources {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
}

.responsible-resources ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

/* Advanced Tips Section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq-categories {
    margin-bottom: 40px;
}

.categories-nav {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 10px;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category-link {
    padding: 10px 20px;
    margin: 5px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.category-link.active, .category-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.faq-section {
    padding-top: 20px;
    padding-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.question-toggle {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul, .faq-answer ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.faq-answer ul {
    list-style: disc;
}

.faq-answer ol {
    list-style: decimal;
}

.faq-more {
    text-align: center;
    margin-top: 30px;
}

.faq-more-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.faq-more-link:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* More Questions Section */
.guide-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.guide-link {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    display: block;
    color: var(--text-color);
}

.guide-link:hover {
    transform: translateY(-5px);
    color: var(--text-color);
}

.guide-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links-column {
    flex: 1;
    min-width: 150px;
}

.footer-links-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-menu a:hover {
    color: white;
}

.footer-cta {
    flex: 1;
    min-width: 250px;
}

.footer-cta h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-disclaimer {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: center;
}
