/* ===================================================
   McLuck Casino US — Global Stylesheet
   Domain: mcluck-casino.us.com
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
    --bg-primary: #070710;
    --bg-secondary: #0d0d1a;
    --bg-card: #12122a;
    --bg-card-hover: #1a1a35;
    --border: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 230, 118, 0.3);

    --green: #00e676;
    --blue: #2979ff;
    --red: #ff1744;
    --orange: #ff9100;
    --gold: #ffd54f;

    --grad-rainbow: linear-gradient(135deg, #00e676 0%, #2979ff 33%, #ff1744 66%, #ff9100 100%);
    --grad-green-blue: linear-gradient(135deg, #00e676 0%, #2979ff 100%);
    --grad-gold: linear-gradient(135deg, #ffd54f 0%, #ff9100 100%);
    --grad-dark: linear-gradient(180deg, #0d0d1a 0%, #070710 100%);

    --text-primary: #ffffff;
    --text-secondary: #a8b4d0;
    --text-muted: #5a6480;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-glow: 0 0 40px rgba(0, 230, 118, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: var(--green);
    text-decoration: none;
    transition: var(--transition)
}

a:hover {
    color: var(--gold)
}

ul,
ol {
    list-style: none
}

/* === SKIP LINK === */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--green);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 1rem
}

/* ===========================
   HEADER
   =========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 44px;
    height: 44px;
    object-fit: contain
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--grad-rainbow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

/* NAV */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem
}

.main-nav a {
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text-primary);
    background: rgba(0, 230, 118, 0.1);
}

/* CTA HEADER BTN */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--grad-rainbow);
    color: #000 !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    white-space: nowrap;
    animation: ctaPulse 2.5s ease-in-out infinite;
    flex-shrink: 0;
    -webkit-text-fill-color: #000;
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.5);
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 230, 118, 0.3)
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 230, 118, 0.6)
    }
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 7, 16, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    padding: 2rem 1.5rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    display: flex;
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: block;
}

.mobile-cta-wrap {
    margin-top: 1.5rem
}

.mobile-cta-wrap .header-cta {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1rem
}

/* ===========================
   COMMON LAYOUT
   =========================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.section {
    padding: 80px 0
}

.section-sm {
    padding: 50px 0
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 640px;
}

.gradient-text {
    background: var(--grad-rainbow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 230, 118, 0.12) 0%, transparent 60%), var(--bg-primary);
}

.hero-content {
    max-width: 700px
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    max-width: 45%;
    border-radius: var(--radius-lg);
    opacity: 0.85;
    box-shadow: var(--shadow-card);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
}

.badge.green {
    border-color: rgba(0, 230, 118, 0.4);
    color: var(--green)
}

.badge.gold {
    border-color: rgba(255, 213, 79, 0.4);
    color: var(--gold)
}

.badge.blue {
    border-color: rgba(41, 121, 255, 0.4);
    color: #78a9ff
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--grad-rainbow);
    color: #000;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.4);
    color: #000
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
}

.btn-secondary:hover {
    background: rgba(0, 230, 118, 0.1);
    color: var(--green)
}

.btn-gold {
    background: var(--grad-gold);
    color: #000
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 213, 79, 0.4);
    color: #000
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem
}

/* CARDS */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 230, 118, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), rgba(41, 121, 255, 0.15));
}

/* GRID */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

/* ===========================
   TABLES
   =========================== */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border)
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px
}

thead tr {
    background: linear-gradient(90deg, rgba(0, 230, 118, 0.15), rgba(41, 121, 255, 0.15))
}

thead th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
}

tbody tr {
    border-bottom: 1px solid var(--border);
    transition: var(--transition)
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.03)
}

tbody tr:last-child {
    border-bottom: none
}

tbody td {
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary)
}

tbody td:first-child {
    color: var(--text-primary);
    font-weight: 500
}

.td-green {
    color: var(--green) !important;
    font-weight: 600
}

.td-gold {
    color: var(--gold) !important;
    font-weight: 600
}

.td-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.td-badge.green {
    background: rgba(0, 230, 118, 0.15);
    color: var(--green)
}

.td-badge.gold {
    background: rgba(255, 213, 79, 0.15);
    color: var(--gold)
}

.td-badge.blue {
    background: rgba(41, 121, 255, 0.15);
    color: #78a9ff
}

/* ===========================
   STAT BLOCKS
   =========================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(0, 230, 118, 0.3)
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--grad-rainbow);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.4rem
}

/* ===========================
   RATING STARS
   =========================== */
.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 213, 79, 0.1);
    border: 1px solid rgba(255, 213, 79, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1rem;
}

.rating-score {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--gold)
}

/* ===========================
   CHART CONTAINER
   =========================== */
.chart-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.chart-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.chart-wrap {
    position: relative;
    height: 300px
}

/* ===========================
   SEO CONTENT SECTION
   =========================== */
.seo-content {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 80px 0;
}

.seo-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.seo-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: var(--green);
}

.seo-content p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.85;
    font-size: 0.98rem;
}

.seo-content a {
    color: var(--green);
    font-weight: 500
}

.seo-content a:hover {
    color: var(--gold)
}

.seo-content ul {
    margin: 0.75rem 0 1.25rem 0
}

.seo-content ul li {
    color: var(--text-secondary);
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
    font-size: 0.98rem;
}

.seo-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--green);
}

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--bg-card);
    border: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-card-hover)
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.open {
    max-height: 500px
}

.faq-answer-inner {
    padding: 1.25rem 1.5rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted)
}

.breadcrumb a:hover {
    color: var(--green)
}

.breadcrumb-sep {
    color: var(--text-muted)
}

.breadcrumb span {
    color: var(--text-secondary)
}

/* ===========================
   RESPONSIBLE GAMING NOTICE
   =========================== */
.rg-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 23, 68, 0.08);
    border: 1px solid rgba(255, 23, 68, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 2rem 0;
}

.rg-notice strong {
    color: var(--red);
    font-size: 1.1rem
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 0.3rem 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--green);
    padding-left: 4px
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.82rem
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    max-width: 900px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-legal-links a {
    color: var(--text-muted);
    font-size: 0.82rem
}

.footer-legal-links a:hover {
    color: var(--green)
}

/* ===========================
   FORM STYLES (Login/Register)
   =========================== */
.form-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 1.5rem;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 230, 118, 0.08) 0%, transparent 60%), var(--bg-primary);
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    width: 100%;
    max-width: 480px;
}

.form-card h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.form-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem
}

.form-group {
    margin-bottom: 1.25rem
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1);
}

.form-submit {
    width: 100%;
    font-size: 1.05rem;
    padding: 1rem;
    margin-top: 0.5rem
}

.form-note {
    text-align: center;
    font-size: 0.87rem;
    color: var(--text-muted);
    margin-top: 1.5rem
}

.form-note a {
    color: var(--green)
}

/* ===========================
   PROGRESS BAR (VIP Levels)
   =========================== */
.progress-bar {
    height: 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-fill {
    height: 100%;
    border-radius: 50px;
    background: var(--grad-rainbow);
    transition: width 1s ease;
}

/* ===========================
   AUTHOR BOX
   =========================== */
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 1.05rem
}

.author-title {
    color: var(--green);
    font-size: 0.85rem;
    margin-bottom: 0.5rem
}

.author-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease both
}

.float {
    animation: float 4s ease-in-out infinite
}

/* === RESPONSIVE === */
@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-image {
        display: none
    }
}

@media(max-width:768px) {
    .main-nav {
        display: none
    }

    .hamburger {
        display: flex
    }

    .section {
        padding: 50px 0
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero {
        padding: 60px 0 40px
    }

    .hero h1 {
        font-size: 2rem
    }

    .form-card {
        padding: 2rem 1.5rem
    }
}

@media(max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .header-inner {
        height: 60px
    }

    .mobile-menu {
        top: 60px
    }
}