/* ============================================
   SKYBET88 - Main Stylesheet
   Mobile First Approach
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffee35;
    --secondary-color: #155155;
    --bg-color: #003e3e;
    --text-light: #ffffff;
    --text-dark: #000000;
    --border-color: #ffee35;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Header Styles */
.header {
    background-color: var(--secondary-color);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header nav {
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 25px;
    width: auto;
}

.logo img {
    height: 100%;
    width: auto;
}

/* Navigation */
nav {
    display: none;
    position: absolute !important;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.nav-menu {
    list-style: none;
    gap: 10px;
    align-items: center;
    flex-direction: column;
    display: flex;
}

nav.active {
    display: block;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background-color: rgba(255, 238, 53, 0.1);
    color: var(--primary-color);
}

.nav-menu a.active {
    background-color: rgba(255, 238, 53, 0.2);
    color: var(--primary-color);
    font-weight: 600;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 44px;
    text-decoration: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

.primary-btn:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 238, 53, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 238, 53, 0.4);
}

/* Burger Menu */
.burger-menu {
    display: block;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.burger-menu:hover {
    color: var(--primary-color);
}

.burger-menu.active {
    color: var(--primary-color);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    margin-bottom: 3rem;
    padding: 2rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Image Styles */
.content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Table Styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: rgba(21, 81, 81, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 238, 53, 0.2);
}

.data-table th {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.data-table tr:hover {
    background-color: rgba(255, 238, 53, 0.1);
}

/* CTA Buttons */
.cta-section {
    text-align: center;
    padding: 2rem 1rem;
    margin: 3rem 0;
    background-color: rgba(21, 81, 81, 0.3);
    border-radius: 8px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Reviews Section */
.reviews {
    background-color: rgba(21, 81, 81, 0.3);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.review-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.review-item:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: rgba(21, 81, 81, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-question {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 3rem 1rem 1.5rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.payment-systems {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-icon {
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 238, 53, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}


@media (min-width: 1440px) {
    .header-container {
        padding: 0 2rem;
    }


    nav {
        display: block;
        position: static !important;
        background-color: transparent;
        box-shadow: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        padding: 0;
    }

    .burger-menu {
        display: none;
    }
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    html {
        font-size: 17px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .main-content {
        padding: 3rem 2rem;
    }

    .hero {
        padding: 4rem 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .data-table {
        font-size: 0.95rem;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .header-container {
        padding: 0;
    }

    .main-content {
        padding: 4rem 2rem;
    }

    .hero {
        padding: 5rem 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .section {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .data-table {
        font-size: 1rem;
    }

    .content-image {
        max-width: 800px;
    }
}

/* Table Responsive */
@media (max-width: 767px) {
    .data-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .data-table thead {
        display: none;
    }

    .data-table tbody,
    .data-table tr,
    .data-table td {
        display: block;
        width: 100%;
    }

    .data-table tr {
        margin-bottom: 1rem;
        background-color: rgba(21, 81, 81, 0.5);
        border-radius: 8px;
        padding: 0.5rem;
    }

    .data-table td {
        padding: 0.5rem;
        text-align: right;
        border-bottom: 1px solid rgba(255, 238, 53, 0.2);
    }

    .data-table td:before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        color: var(--primary-color);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 480px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    .header-buttons .btn {
        width: 100%;
    }

    .header-container {
        flex-wrap: wrap;
    }
}
