/* Mostbet Color Scheme */
:root {
    --primary-blue: #0f1e46; /* Deep blue background */
    --secondary-blue: #18284e; /* Slightly lighter blue for cards */
    --accent-orange: #ff4500; /* Mostbet Orange */
    --accent-orange-hover: #ff6a00;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --gold: #ffd700;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-blue);
    color: var(--text-white);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: var(--secondary-blue);
    padding: 15px 0;
    border-bottom: 2px solid var(--secondary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo img {
    max-height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-orange);
}

.btn-login {
    background-color: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 5px;
    margin-right: 10px;
    font-weight: bold;
    text-decoration: none;
}

.btn-register {
    background-color: var(--accent-orange);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.4);
}

.btn-register:hover {
    background-color: var(--accent-orange-hover);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 30, 70, 0.7), rgba(15, 30, 70, 0.7)), url('../images/hero-bg-hd.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--text-white);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 69, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

/* Content Sections */
.section {
    padding: 60px 0;
    border-bottom: 1px solid var(--secondary-blue);
}

.section h2 {
    color: var(--accent-orange);
    font-size: 2rem;
    margin-bottom: 20px;
    border-left: 5px solid var(--accent-orange);
    padding-left: 15px;
}

.section h3 {
    color: var(--text-white);
    margin-top: 25px;
    font-size: 1.5rem;
}

.content-block {
    background-color: var(--secondary-blue);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: var(--primary-blue);
}

.info-table th, .info-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #334;
}

.info-table th {
    background-color: #233766;
    color: var(--accent-orange);
}

.info-table tr:nth-child(even) {
    background-color: rgba(255,255,255,0.05);
}

/* Lists */
ul.feature-list {
    list-style: none;
    padding: 0;
}

ul.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

ul.feature-list li::before {
    content: '★';
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    top: 0;
}

/* Review Section */
.review-card {
    background-color: var(--primary-blue);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.review-author {
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
    display: block;
}

.rating {
    color: var(--gold);
    margin-bottom: 10px;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #334;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: #233766;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 15px;
    color: var(--accent-orange);
}

.faq-answer {
    padding: 15px;
    display: none; /* JS will toggle this */
    background-color: var(--primary-blue);
}
.faq-item.active .faq-answer {
    display: block;
}

/* App Buttons */
.app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center; /* Center buttons inside the container */
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-app {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #333;
    min-width: 160px;
    justify-content: center;
}

.btn-app:hover {
    transform: translateY(-3px);
    background-color: #222;
    color: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-app i {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #0a1430;
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-flex {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
}
