/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fcfcfc;
    background-color: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #fcfcfc;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

header .container {
    max-width: unset;
}

p {
    margin-bottom: 1rem;
    color: #fcfcfc;
    opacity: 0.9;
}

a {
    color: #03936d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #02b37a;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: #03936d;
    color: #fcfcfc;
}

.btn-primary:hover {
    background-color: #02b37a;
    color: #fcfcfc;
    box-shadow: 0 8px 25px rgba(3, 147, 109, 0.3);
}

.btn-cta {
    background: linear-gradient(135deg, #03936d, #02b37a);
    color: #fcfcfc;
    font-size: 1.1rem;
    padding: 16px 32px;
    box-shadow: 0 4px 15px rgba(3, 147, 109, 0.3);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #02b37a, #03936d);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(3, 147, 109, 0.4);
}

/* Header */
.header {
    background-color: #121419;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: #fcfcfc;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-list a:hover,
.nav-list a.active {
    background-color: #03936d;
    color: #fcfcfc;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fcfcfc;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* Main Content */
.main {
    min-height: 100vh;
}

.btn-secondary {
    background: #fcfcfc;
    color: #000;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-secondary:hover {
    background: transparent;
    color: #fcfcfc;
    border: 1px solid #fcfcfc;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000, #121419);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(3, 147, 109, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fcfcfc, #03936d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Sections */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: #1a1a1c;
}

/* Testing Approach */
.testing-approach {
    background-color: #121419;
}

.testing-approach h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testing-approach p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* Metrics */
.metrics {
    background-color: #000;
}

.metrics h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.metrics-table {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.metrics-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #121419;
    border-radius: 12px;
    overflow: hidden;
}

.metrics-table th,
.metrics-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2a2c;
}

.metrics-table th {
    background-color: #03936d;
    color: #fcfcfc;
    font-weight: 600;
}

.metrics-table tr:hover {
    background-color: #1a1a1c;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Games Section */
.games-section {
    background-color: #121419;
}

.games-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.games-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.game-card {
    background-color: #1a1a1c;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #03936d;
}

.game-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    opacity: 0.8;
}

/* Pros Cons */
.pros-cons {
    background-color: #000;
}

.pros-cons h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pros h3,
.cons h3 {
    color: #03936d;
    margin-bottom: 1rem;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pros li::before {
    content: '✓';
    color: #03936d;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cons li::before {
    content: '✗';
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Compliance */
.compliance {
    background-color: #121419;
    text-align: center;
}

.compliance h2 {
    margin-bottom: 2rem;
}

.compliance p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* FAQ */
.faq {
    background-color: #1a1a1c;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: #121419;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item h3 {
    color: #03936d;
    margin-bottom: 1rem;
}

.faq-item p {
    margin: 0;
    opacity: 0.9;
}

/* Conclusion */
.conclusion {
    background-color: #000;
    text-align: center;
}

.conclusion h2 {
    margin-bottom: 2rem;
}

.conclusion p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Login Page Specific Styles */
.login-checklist {
    background-color: #121419;
}

.login-checklist h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.login-checklist p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    background-color: #1a1a1c;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #03936d, #02b37a);
    color: #fcfcfc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    color: #03936d;
    margin-bottom: 1rem;
}

.step-content p {
    margin: 0;
    opacity: 0.8;
}

.security {
    background-color: #000;
    text-align: center;
}

.security h2 {
    margin-bottom: 2rem;
}

.security p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.advantages {
    background-color: #1a1a1c;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.advantages-table {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.advantages-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #121419;
    border-radius: 12px;
    overflow: hidden;
}

.advantages-table th,
.advantages-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2a2c;
}

.advantages-table th {
    background-color: #03936d;
    color: #fcfcfc;
    font-weight: 600;
}

.advantages-table tr:hover {
    background-color: #1a1a1c;
}

.responsible-access {
    background-color: #121419;
    text-align: center;
}

.responsible-access h2 {
    margin-bottom: 2rem;
}

.responsible-access p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* APP Page Specific Styles */
.setup {
    background-color: #121419;
}

.setup h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.setup p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.setup-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.setup-step {
    background-color: #1a1a1c;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.setup-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.setup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #03936d, #02b37a);
    color: #fcfcfc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.setup-content h3 {
    color: #03936d;
    margin-bottom: 1rem;
}

.setup-content p {
    margin: 0;
    opacity: 0.8;
}

.performance {
    background-color: #000;
    text-align: center;
}

.performance h2 {
    margin-bottom: 2rem;
}

.performance p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.security-feature {
    background-color: #1a1a1c;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.security-feature i {
    font-size: 3rem;
    color: #03936d;
    margin-bottom: 1rem;
}

.security-feature h3 {
    color: #03936d;
    margin-bottom: 1rem;
}

.security-feature p {
    margin: 0;
    opacity: 0.8;
}

/* Games Page Specific Styles */
.testing {
    background-color: #121419;
    text-align: center;
}

.testing h2 {
    margin-bottom: 2rem;
}

.testing p {
    max-width: 800px;
    margin: 0 auto;
}

.popular-games {
    background-color: #000;
}

.popular-games h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.games-table {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.games-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #121419;
    border-radius: 12px;
    overflow: hidden;
}

.games-table th,
.games-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2a2c;
}

.games-table th {
    background-color: #03936d;
    color: #fcfcfc;
    font-weight: 600;
}

.games-table tr:hover {
    background-color: #1a1a1c;
}

.game-navigation {
    background-color: #1a1a1c;
    text-align: center;
}

.game-navigation p {
    max-width: 800px;
    margin: 0 auto;
}

.providers {
    background-color: #121419;
}

.providers h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.providers p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.provider-card {
    background-color: #1a1a1c;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.provider-card h3 {
    color: #03936d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.provider-card p {
    margin-bottom: 1rem;
    text-align: left;
}

.provider-card p:last-child {
    margin-bottom: 0;
}

/* Slots Page Specific Styles */
.checklist {
    background-color: #121419;
    text-align: center;
}

.checklist h2 {
    margin-bottom: 2rem;
}

.checklist p {
    max-width: 800px;
    margin: 0 auto;
}

.top-slots {
    background-color: #000;
}

.top-slots h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.top-slots p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.slots-table {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.slots-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #121419;
    border-radius: 12px;
    overflow: hidden;
}

.slots-table th,
.slots-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2a2c;
}

.slots-table th {
    background-color: #03936d;
    color: #fcfcfc;
    font-weight: 600;
}

.slots-table tr:hover {
    background-color: #1a1a1c;
}

.strategy {
    background-color: #1a1a1c;
    text-align: center;
}

.strategy h2 {
    margin-bottom: 2rem;
}

.strategy p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Bonus Page Specific Styles */
.bonus-types {
    background-color: #121419;
}

.bonus-types h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-types p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.bonus-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.bonus-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1c;
    border-radius: 12px;
    overflow: hidden;
}

.bonus-table th,
.bonus-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2a2c;
}

.bonus-table th {
    background-color: #03936d;
    color: #fcfcfc;
    font-weight: 600;
}

.bonus-table tr:hover {
    background-color: #121419;
}

.wagering {
    background-color: #000;
    text-align: center;
}

.wagering h2 {
    margin-bottom: 2rem;
}

.wagering p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.wagering-steps {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: left;
    display: inline-block;
}

.wagering-steps li {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.why-y6bet {
    background-color: #1a1a1c;
}

.why-y6bet h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.why-y6bet p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Betting Page Specific Styles */
.cricket-betting {
    background-color: #121419;
    text-align: center;
}

.cricket-betting h2 {
    margin-bottom: 2rem;
}

.cricket-betting p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.sports-coverage {
    background-color: #000;
}

.sports-coverage h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.sports-table {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.sports-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #121419;
    border-radius: 12px;
    overflow: hidden;
}

.sports-table th,
.sports-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2a2c;
}

.sports-table th {
    background-color: #03936d;
    color: #fcfcfc;
    font-weight: 600;
}

.sports-table tr:hover {
    background-color: #1a1a1c;
}

.mobile-betting {
    background-color: #1a1a1c;
    text-align: center;
}

.mobile-betting h2 {
    margin-bottom: 2rem;
}

.mobile-betting p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.betting-tips {
    background-color: #121419;
}

.betting-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.tip-card {
    background-color: #1a1a1c;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tip-card h3 {
    color: #03936d;
    margin-bottom: 1rem;
}

.tip-card p {
    margin: 0;
    opacity: 0.8;
}

/* Aviator Page Specific Styles */
.game-rules {
    background-color: #121419;
    text-align: center;
}

.game-rules h2 {
    margin-bottom: 2rem;
}

.game-rules p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.strategy {
    background-color: #000;
}

.strategy h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.strategy-table {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.strategy-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #121419;
    border-radius: 12px;
    overflow: hidden;
}

.strategy-table th,
.strategy-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2a2c;
}

.strategy-table th {
    background-color: #03936d;
    color: #fcfcfc;
    font-weight: 600;
}

.strategy-table tr:hover {
    background-color: #1a1a1c;
}

.mobile-experience {
    background-color: #1a1a1c;
    text-align: center;
}

.mobile-experience h2 {
    margin-bottom: 2rem;
}

.mobile-experience p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.risk-management {
    background-color: #121419;
}

.risk-management h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.risk-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.risk-tip {
    background-color: #1a1a1c;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.risk-tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.risk-tip h3 {
    color: #03936d;
    margin-bottom: 1rem;
}

.risk-tip p {
    margin: 0;
    opacity: 0.8;
}

/* Live Casino Page Specific Styles */
.live-games {
    background-color: #121419;
}

.live-games h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.live-games-table {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.live-games-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1c;
    border-radius: 12px;
    overflow: hidden;
}

.live-games-table th,
.live-games-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2a2c;
}

.live-games-table th {
    background-color: #03936d;
    color: #fcfcfc;
    font-weight: 600;
}

.live-games-table tr:hover {
    background-color: #121419;
}

.live-casino-tips {
    background-color: #000;
}

.live-casino-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison {
    background-color: #1a1a1c;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #121419;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2a2a2c;
}

.comparison-table th {
    background-color: #03936d;
    color: #fcfcfc;
    font-weight: 600;
}

.comparison-table tr:hover {
    background-color: #1a1a1c;
}

/* Showcase Sections for Images */
.login-images {
    background-color: #000;
}

.login-images h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.login-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.login-image-card {
    background-color: #1a1a1c;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.login-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.login-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.login-image-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #03936d;
}

.login-image-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    opacity: 0.8;
}

.app-features {
    background-color: #000;
}

.app-features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.app-feature-card {
    background-color: #1a1a1c;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.app-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.app-feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.app-feature-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #03936d;
}

.app-feature-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    opacity: 0.8;
}

.games-showcase {
    background-color: #000;
}

.games-showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.games-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.game-showcase-card {
    background-color: #1a1a1c;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.game-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-showcase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-showcase-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #03936d;
}

.game-showcase-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    opacity: 0.8;
}

.slots-showcase {
    background-color: #121419;
}

.slots-showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.slots-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.slot-showcase-card {
    background-color: #1a1a1c;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.slot-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.slot-showcase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slot-showcase-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #03936d;
}

.slot-showcase-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    opacity: 0.8;
}

.bonus-showcase {
    background-color: #000;
}

.bonus-showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-showcase-card {
    background-color: #1a1a1c;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.bonus-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bonus-showcase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bonus-showcase-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #03936d;
}

.bonus-showcase-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    opacity: 0.8;
}

.betting-showcase {
    background-color: #121419;
}

.betting-showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.betting-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.betting-showcase-card {
    background-color: #1a1a1c;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.betting-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.betting-showcase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.betting-showcase-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #03936d;
}

.betting-showcase-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    opacity: 0.8;
}

.aviator-showcase {
    background-color: #000;
}

.aviator-showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.aviator-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.aviator-showcase-card {
    background-color: #1a1a1c;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.aviator-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.aviator-showcase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.aviator-showcase-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #03936d;
}

.aviator-showcase-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    opacity: 0.8;
}

.live-casino-showcase {
    background-color: #121419;
}

.live-casino-showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.live-casino-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.live-casino-showcase-card {
    background-color: #1a1a1c;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.live-casino-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.live-casino-showcase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.live-casino-showcase-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #03936d;
}

.live-casino-showcase-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: #121419;
    padding: 3rem 0 2rem;
    border-top: 1px solid #2a2a2c;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #03936d;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fcfcfc;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: #03936d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .setup-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .risk-tips {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .login-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .games-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .slots-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .betting-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .aviator-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .live-casino-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .header-content {
        gap: 10px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .metrics-table {
        font-size: 0.9rem;
    }
    
    .metrics-table th,
    .metrics-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .advantages-table {
        font-size: 0.9rem;
    }
    
    .advantages-table th,
    .advantages-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .games-table {
        font-size: 0.9rem;
    }
    
    .games-table th,
    .games-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .slots-table {
        font-size: 0.9rem;
    }
    
    .slots-table th,
    .slots-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .bonus-table {
        font-size: 0.9rem;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .sports-table {
        font-size: 0.9rem;
    }
    
    .sports-table th,
    .sports-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .strategy-table {
        font-size: 0.9rem;
    }
    
    .strategy-table th,
    .strategy-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .live-games-table {
        font-size: 0.9rem;
    }
    
    .live-games-table th,
    .live-games-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .metrics-table {
        font-size: 0.8rem;
    }
    
    .metrics-table th,
    .metrics-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .advantages-table {
        font-size: 0.8rem;
    }
    
    .advantages-table th,
    .advantages-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .games-table {
        font-size: 0.8rem;
    }
    
    .games-table th,
    .games-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .slots-table {
        font-size: 0.8rem;
    }
    
    .slots-table th,
    .slots-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .bonus-table {
        font-size: 0.8rem;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .sports-table {
        font-size: 0.8rem;
    }
    
    .sports-table th,
    .sports-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .strategy-table {
        font-size: 0.8rem;
    }
    
    .strategy-table th,
    .strategy-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .live-games-table {
        font-size: 0.8rem;
    }
    
    .live-games-table th,
    .live-games-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .setup-step {
        padding: 1.5rem;
    }
    
    .setup-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .security-feature {
        padding: 1.5rem;
    }
    
    .security-feature i {
        font-size: 2rem;
    }
    
    .provider-card {
        padding: 1.5rem;
    }
    
    .tip-card {
        padding: 1.5rem;
    }
    
    .risk-tip {
        padding: 1.5rem;
    }
    
    .login-image-card {
        padding: 1.5rem;
    }
    
    .app-feature-card {
        padding: 1.5rem;
    }
    
    .game-showcase-card {
        padding: 1.5rem;
    }
    
    .slot-showcase-card {
        padding: 1.5rem;
    }
    
    .bonus-showcase-card {
        padding: 1.5rem;
    }
    
    .betting-showcase-card {
        padding: 1.5rem;
    }
    
    .aviator-showcase-card {
        padding: 1.5rem;
    }
    
    .live-casino-showcase-card {
        padding: 1.5rem;
    }
}

@media (max-width: 390px) {
    .header-content {
        flex-wrap: wrap;
        gap: 0;
    }

    .header-buttons {
        width: 100%;
        order: 3;
        margin-top: 10px;
        justify-content: center;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #121419;
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fcfcfc;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu .nav-list {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.mobile-menu .header-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Mobile Navigation Styles */
@media (max-width: 1410px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #121419;
        z-index: 2000;
        transition: left 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .nav-list a {
        font-size: 1.2rem;
        padding: 10px;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-list a:hover,
    .nav-list a.active {
        background-color: #03936d;
        color: #fcfcfc;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 2001;
        position: relative;
    }
    
    .mobile-menu-toggle.active {
        color: #03936d;
    }
    
    .mobile-menu-toggle.active i::before {
        content: "\f00d";
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-list a:focus {
    outline: 2px solid #03936d;
    outline-offset: 2px;
}

/* Loading states */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1c;
}

::-webkit-scrollbar-thumb {
    background: #03936d;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #02b37a;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #03936d;
    color: #fcfcfc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 147, 109, 0.3);
}

.scroll-to-top:hover {
    background-color: #02b37a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(3, 147, 109, 0.4);
} 