/* =========================================
   Goplay11 - Premium Fantasy Sports CSS (No Animations)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
    /* Color Palette - Cyber Gaming Theme */
    --bg-dark: #0a0e17;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-white: #ffffff;

    /* Brand Colors */
    --primary: #00f0ff;
    /* Cyan */
    --danger: #ef4444;

    /* Glassmorphism */
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-main: 'Outfit', sans-serif;

    /* Layout */
    --container-mx: 768px;
}

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

body,
html {
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: #ececec;
    /* Applied dark background here for consistency instead of white */
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul,
ol {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

ul li {
    list-style-type: disc;
    padding-left: 0.3rem;
}

ol li {
    list-style-type: decimal;
    padding-left: 0.3rem;
}

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

/* =========================================
   Layout
   ========================================= */
.container-mx {
    width: 100%;
    max-width: var(--container-mx);
    background: var(--bg-dark);
    margin: 0 auto;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0.8rem;
}

/* =========================================
   Typography
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.9rem;
}

h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    width: fit-content;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.2rem;
}

h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    width: fit-content;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.2rem;
}

h3 {
    font-size: clamp(1.5rem, 1vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 1vw, 1.5rem);
}

h5 {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
}

h6 {
    font-size: clamp(1rem, 1.25vw, 1.125rem);
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-white);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* =========================================
   Utilities
   ========================================= */
.d-none-mobile {
    display: none;
}

.highlight {
    color: var(--primary);
}

.mt-2 {
    margin-top: 0.5rem;
}


/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), #0099ff);
    color: #000;
}

.btn-download {
    background: linear-gradient(135deg, var(--primary) 0%, #0099ff 100%);
    color: #000;
    font-weight: 700;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-download:hover {
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-mx);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-main);
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

/* =========================================
   Hero Section
   ========================================= */
.bg-section {
    position: relative;
    width: 100%;
    padding: 0 0 2rem 0;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.9) 0%, rgba(26, 6, 51, 0.9) 100%);
}

.bg-section .container-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 1rem 0;
    text-align: center;
    max-width: 100%;
}

.bg-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.btn-container {
    margin-top: 1rem;
    text-align: center;
}

/* =========================================
   Content Sections
   ========================================= */
.content-section {
    padding: 0.8rem 0.5rem;
    background: var(--bg-dark);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: #05080f;
    padding: 1rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.warning {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* =========================================
   Responsive
   ========================================= */
@media (min-width: 768px) {
    .d-none-mobile {
        display: inline-block;
    }

    .content-section {
        padding: 0.5rem 0.3rem;
    }

    .bg-section {
        padding: 0 0 3rem 0;
    }

    .bg-image {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .bg-section {
        padding: 0 0 1.5rem 0;
    }

    .bg-section .container-bg {
        padding: 0 0 1.5rem 0;
    }

    .bg-image {
        max-width: 100%;
    }

    .btn-download {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}