/* MOYNA777 Website Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 28px;
    color: #ffd700;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo a {
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

nav a:hover,
nav a.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

.btn-login {
    background-color: #ffd700;
    color: #1a1a2e !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 600;
}

.btn-login:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-primary {
    background-color: #ffd700;
    color: #1a1a2e;
}

.btn-primary:hover {
    background-color: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #667eea;
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

/* Page Header - styles moved to SEO section below */

/* Content Sections */
section {
    padding: 60px 20px;
}

.intro,
.bonus-section,
.casino-games,
.sports-betting,
.mobile-app,
.payments,
.security,
.get-started,
.support,
.final-cta,
.content {
    background-color: #fff;
    margin-bottom: 20px;
}

.content {
    margin-bottom: 0;
}

h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    color: #16213e;
    margin: 30px 0 15px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    color: #16213e;
    margin: 25px 0 10px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* Lists */
ul, ol {
    margin: 15px 0 15px 30px;
}

li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Bonus Box */
.bonus-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
}

.bonus-amount {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    color: #ffd700;
}

.bonus-features {
    text-align: left;
    margin: 25px auto;
    max-width: 600px;
}

.bonus-features li {
    margin-bottom: 12px;
    font-size: 16px;
}

/* CTA Boxes */
.cta-box {
    background-color: #f8f9fa;
    border-left: 5px solid #667eea;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
}

.cta-box.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-left: 5px solid #ffd700;
}

.cta-box h3 {
    margin-top: 0;
    color: #667eea;
}

.cta-box.highlight h3 {
    color: #764ba2;
}

.cta-box p {
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-top: 0;
    font-size: 22px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
}

.final-cta h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 50px 20px 20px;
}

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

.footer-section h3 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    margin: 0;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 8px;
}

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

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .bonus-amount {
        font-size: 36px;
    }
    
    table {
        font-size: 14px;
    }
    
    table th,
    table td {
        padding: 10px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 20px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.6s ease-out;
}

/* Link Styling */
a {
    color: #667eea;
    transition: color 0.3s;
}

a:hover {
    color: #764ba2;
}
/* ==========================================
   SEO IMPROVEMENTS - ADDITIONAL STYLES
   ========================================== */

/* Logo Image */
.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

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

/* Breadcrumbs Navigation - SEO #1 */
.breadcrumbs {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,215,0,0.2);
}

.breadcrumbs .container {
    display: block;
}

/* CRITICAL: Override browser default ol styles */
ol.breadcrumb-list,
.breadcrumb-list {
    list-style: none !important;
    list-style-type: none !important;
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    counter-reset: none !important;
}

ol.breadcrumb-list li,
.breadcrumb-list li {
    display: inline-flex !important;
    align-items: center;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove numbering completely */
ol.breadcrumb-list li::before,
.breadcrumb-list li::before,
ol.breadcrumb-list li::marker,
.breadcrumb-list li::marker {
    display: none !important;
    content: none !important;
    counter-increment: none !important;
}

.breadcrumb-list a {
    color: #ffd700;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-list .separator {
    color: #666;
    margin: 0 10px;
    font-size: 14px;
}

.breadcrumb-list .current {
    color: #a0a0a0;
    font-size: 14px;
}

.breadcrumb-links {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
}

.breadcrumb-links span {
    margin-right: 8px;
}

.breadcrumb-links a {
    color: #e94560;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-links a:hover {
    color: #ffd700;
}

/* Content Images with Alt Tags - SEO #7 & #8 */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: block;
}

/* Page Header - Clean Gradient Only */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.95);
    font-size: 18px;
}

/* Related Pages Section */
.related-pages {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.related-pages h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-link {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.related-link:hover {
    background: rgba(255,215,0,0.1);
    border-color: #ffd700;
    transform: translateY(-3px);
}

.related-link strong {
    color: #ffd700;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.related-link span {
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 50px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    color: #ffd700;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #a0a0a0;
    line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #a0a0a0;
    margin: 0;
    font-size: 0.95rem;
}

/* Download Box */
.download-box {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.download-box h3 {
    color: #fff;
    margin-bottom: 10px;
}

.download-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.download-box .btn {
    background: #fff;
    color: #e94560;
}

.download-box .btn:hover {
    background: #ffd700;
    color: #1a1a2e;
}

/* Registration Section */
.login-register-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .login-register-section {
        grid-template-columns: 1fr;
    }
}

.register-promo {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #ffd700;
}

.bonus-highlight {
    text-align: center;
    margin: 20px 0;
}

.bonus-highlight .bonus-amount {
    font-size: 2.5rem;
    color: #ffd700;
    font-weight: bold;
}

.bonus-highlight .bonus-extra {
    font-size: 1.5rem;
    color: #e94560;
}

.bonus-details {
    list-style: none;
    padding: 0;
}

.bonus-details li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #a0a0a0;
}

.registration-cta {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.registration-cta h2 {
    color: #fff;
    border: none;
}

.registration-cta p {
    color: rgba(255,255,255,0.9);
}

.btn-xlarge {
    padding: 20px 50px;
    font-size: 1.3rem;
}

.already-member {
    margin-top: 20px;
    font-size: 0.9rem;
}

.already-member a {
    color: #ffd700;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th {
    background: #e94560;
    color: #fff;
}

.comparison-table tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}

/* Providers Table */
.providers-table {
    width: 100%;
    margin: 25px 0;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .breadcrumb-list {
        font-size: 12px;
    }
    
    .breadcrumb-links {
        font-size: 11px;
    }
    
    .related-links {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-highlight .bonus-amount {
        font-size: 2rem;
    }
}
