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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #9b0e3d 0%, #690426 100%);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #690426 0%, #9b0e3d 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(155, 14, 61, 0.3);
}

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

.btn-secondary:hover {
    background-color: rgba(155, 14, 61, 0.1);
    transform: translateY(-2px);
}

.btn-login {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #9b0e3d;
    padding: 8px 16px;
}

.btn-login:hover {
    background-color: rgba(155, 14, 61, 0.1);
}

.btn-register {
    background: linear-gradient(135deg, #9b0e3d 0%, #690426 100%);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
}

.btn-register:hover {
    background: linear-gradient(135deg, #690426 0%, #9b0e3d 100%);
    transform: translateY(-2px);
}

.btn-feature {
    background-color: #9b0e3d;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-feature:hover {
    background-color: #690426;
}

.btn-play, .btn-demo {
    background-color: #9b0e3d;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    margin: 5px;
}

.btn-play:hover, .btn-demo:hover {
    background-color: #690426;
}

.btn-view-more {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #9b0e3d;
    padding: 10px 20px;
    margin-top: 20px;
}

.btn-view-more:hover {
    background-color: rgba(155, 14, 61, 0.1);
}

.btn-app {
    background-color: #9b0e3d;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
}

.btn-app i {
    margin-right: 8px;
    font-size: 18px;
}

.btn-app:hover {
    background-color: #690426;
}

.odd-btn {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.odd-btn:hover {
    background-color: #9b0e3d;
}

/* Header Styles */
header {
    background-color: #0a0a0a;
    border-bottom: 1px solid #222222;
    position: sticky;
    top: 0;
    z-index: 1000;
	margin-bottom: 8px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.main-menu {
    display: flex;
}

.main-menu li {
    position: relative;
    margin-right: 20px;
}

.main-menu a {
    color: #ffffff;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.main-menu a:hover, .main-menu a.active {
    color: #9b0e3d;
}

.main-menu a i {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    width: 220px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: #ffffff;
    border-bottom: 1px solid #2a2a2a;
}

.dropdown-menu a:hover {
    background-color: #2a2a2a;
    color: #9b0e3d;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: right;
    padding: 0 20px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: #0f0f0f;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 36px;
    color: #9b0e3d;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
}

/* Games Section */
.games {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #9b0e3d;
}

.games-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: transparent;
    color: #cccccc;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    color: #ffffff;
    background-color: #9b0e3d;
    border-radius: 5px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.game-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.game-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-card h4 {
    padding: 15px 15px 5px;
    font-size: 16px;
    color: #ffffff;
}

.game-card p {
    padding: 0 15px 15px;
    font-size: 14px;
    color: #999999;
}

.view-more {
    text-align: center;
    margin-top: 40px;
}

/* Sports Section */
.sports {
    padding: 60px 0;
    background-color: #0f0f0f;
}

.sports-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.sports-info {
    flex: 1;
}

.sports-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.sports-info p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 20px;
}

.sports-features {
    margin-bottom: 30px;
}

.sports-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.sports-features i {
    color: #9b0e3d;
    margin-right: 10px;
}

.sports-image {
    flex: 1;
}

.sports-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.popular-events h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.event-league {
    color: #9b0e3d;
    font-weight: 600;
}

.event-time {
    color: #999999;
}

.event-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.team {
    font-weight: 500;
    color: #ffffff;
}

.vs {
    color: #999999;
}

.event-odds {
    display: flex;
    justify-content: space-between;
}

/* App Promo Section */
.app-promo {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.app-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.app-info {
    flex: 1;
}

.app-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.app-info p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 20px;
}

.app-features {
    margin-bottom: 30px;
}

.app-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.app-features i {
    color: #9b0e3d;
    margin-right: 10px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Payment Methods Section */
.payment-methods {
    padding: 60px 0;
    background-color: #0f0f0f;
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.payment-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 15px;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.payment-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}


.page-header {
	padding-top: 32px;
	padding-bottom: 20px;
}
.page-header h1,
.page-header h2,
.page-header h3 {
	padding-top: 16px;
	padding-bottom: 8px;
}
.page-header img {
	max-width: 100%;
	height: auto;
	margin-bottom: 24px;
}

	/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.faq-question h3 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

.faq-toggle {
    color: #9b0e3d;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    background-color: #0f0f0f;
    border-top: 1px solid #222222;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #9b0e3d;
}

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

.footer-column ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #9b0e3d;
}

.footer-column ul li a i {
    margin-right: 8px;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: #9b0e3d;
    transform: translateY(-3px);
}

.footer-middle {
    padding: 30px 0;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
}

.partners, .responsible-gaming {
    margin-bottom: 30px;
}

.partners h4, .responsible-gaming h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.partners-logos, .responsible-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partners-logos img, .responsible-logos img {
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-logos img:hover, .responsible-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.copyright {
    color: #999999;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    color: #666666;
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-content {
        flex-direction: column;
    }
    
    .app-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: #0a0a0a;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    nav.active {
        left: 0;
    }
    
    .main-menu {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-menu li {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        background-color: transparent;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding-left: 30px;
    }
    
    .hero {
        flex-direction: column;
        padding: 40px 0;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features .container {
        grid-template-columns: 1fr;
    }
    
    .sports-content {
        flex-direction: column;
    }
    
    .sports-image {
        margin-top: 30px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .auth-buttons {
        display: none;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .games-filter {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        margin-bottom: 10px;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-card {
        width: 100px;
        height: 70px;
    }
}

.compliance-logos {
    display:flex;
    align-items:center;
    gap:15px;
}
.compliance-logos img {
    max-height:100px;
    max-width:150px;
}

.page-header .container p {
    margin-top:10px;
    margin-bottom:10px;
}
.page-header .container ul li {
    list-style-type: disc;
    margin-left:25px;
}
.page-header .container ol li {
    margin-left:25px;
}
.page-header .container img {
    margin:0 auto;
    margin-top:25px;
    margin-bottom:25px;
    display:block;
}
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2e2e2e; 
    color: #f0f0f0; 
}

th, td {
    padding: 12px 15px;
    text-align: left;
}

th {
    background-color: #444444; 
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #333333; 
}

tr:hover {
    background-color: #555555; 
    cursor: pointer;
}

td {
    border-bottom: 1px solid #555555; 
}
