/* CasinosCdn.com - Warm Orange Theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
    --orange: #f97316;
    --orange-dark: #ea580c;
    --red: #ef4444;
    --yellow: #fbbf24;
    --cream: #fffbeb;
    --dark: #1c1917;
    --stone: #44403c;
    --stone-light: #78716c;
    --white: #ffffff;
    --bg: #fafaf9;
    --border: #e7e5e4;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(249,115,22,0.15);
    --radius: 14px;
    --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--dark); line-height: 1.7; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* === HEADER === */
.head {
    background: linear-gradient(180deg, var(--dark) 0%, #292524 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.logo-sym {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.logo-a span { color: var(--orange); }

.ham {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.menu ul { display: flex; list-style: none; gap: 1.75rem; }

.menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.menu a:hover, .menu a.act { color: var(--orange); }

.head-cta {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.head-cta:hover { transform: translateY(-2px); }

/* === HERO === */
.intro {
    background: linear-gradient(135deg, var(--dark) 0%, #292524 50%, var(--stone) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(249,115,22,0.1));
}

.intro-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2.75rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.intro-h1 b {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.intro-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hot {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-hot:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-line {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-line:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.intro-pills {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pill {
    background: rgba(249,115,22,0.15);
    color: var(--orange);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(249,115,22,0.3);
}

.intro-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* === QUICK === */
.quick {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.quick-boxes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.qb {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--cream);
    border-radius: var(--radius);
    transition: transform 0.2s;
}

.qb:hover { transform: translateY(-4px); }

.qb-ico {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
}

.qb h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.qb p { font-size: 0.8rem; color: var(--stone-light); }

/* === SECTIONS === */
.sec { padding: 4rem 0; }
.sec-white { background: var(--white); }
.sec-dark { background: var(--dark); color: var(--white); }

.sec-head { text-align: center; margin-bottom: 2.5rem; }

.sec-head h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.sec-head p { color: var(--stone-light); max-width: 600px; margin: 0 auto; }
.sec-dark .sec-head p { color: rgba(255,255,255,0.7); }

/* === CASINO CARDS === */
.cas-grid { display: flex; flex-direction: column; gap: 1rem; }

.cas-card {
    display: grid;
    grid-template-columns: 50px 180px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--orange);
    transition: all 0.3s;
}

.cas-card:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }

.cas-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cas-info { display: flex; align-items: center; gap: 12px; }

.cas-info img {
    width: 55px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
}

.cas-info h3 { font-size: 1rem; }
.cas-info small { font-size: 0.8rem; color: var(--stone-light); display: block; }

.cas-deal {
    background: var(--cream);
    padding: 10px 16px;
    border-radius: 8px;
    text-align: center;
}

.cas-deal strong { display: block; color: var(--orange-dark); font-size: 1rem; }
.cas-deal span { font-size: 0.75rem; color: var(--stone); }

.cas-feat { font-size: 0.85rem; color: var(--stone-light); }

.cas-btn {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.cas-btn:hover { transform: scale(1.05); }

/* === HUB === */
.hub-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hub-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.hub-box:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }

.hub-box-ico { font-size: 2.5rem; margin-bottom: 1rem; }
.hub-box h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.hub-box p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; line-height: 1.6; }

.hub-box .btn-line { font-size: 0.85rem; padding: 8px 18px; }

/* === TABLE === */
.tbl {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tbl th, .tbl td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.tbl th {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
}

.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover { background: var(--cream); }

/* === CHECKLIST === */
.chk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.chk-row {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.chk-n {
    width: 28px;
    height: 28px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.chk-row h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.chk-row p { font-size: 0.8rem; color: var(--stone-light); }

/* === FAQ === */
.faq-wrap { max-width: 800px; margin: 0 auto; }

.faq-el {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-btn {
    width: 100%;
    padding: 1.25rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
}

.faq-btn::after { content: '+'; font-size: 1.4rem; color: var(--orange); }
.faq-el.on .faq-btn::after { content: '−'; }

.faq-txt {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: var(--stone);
    line-height: 1.7;
}

.faq-el.on .faq-txt { display: block; }

/* === AUTHOR === */
.auth-box {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.auth-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.auth-box h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.auth-box .job { color: var(--orange); font-size: 0.9rem; margin-bottom: 0.5rem; }
.auth-box p { font-size: 0.9rem; color: var(--stone); }

.meta-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--stone-light);
    margin-bottom: 1.5rem;
}

.warn {
    background: var(--cream);
    border-left: 4px solid var(--orange);
    padding: 1.25rem;
    border-radius: var(--radius);
}

.warn h4 { color: var(--orange-dark); margin-bottom: 0.4rem; }
.warn p { color: var(--stone); font-size: 0.9rem; }

/* === CTA === */
.cta-box {
    background: linear-gradient(135deg, var(--orange), var(--red));
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
}

.cta-box h3 { font-family: 'Sora', sans-serif; font-size: 1.75rem; margin-bottom: 0.75rem; }
.cta-box p { opacity: 0.9; margin-bottom: 1.5rem; }

.cta-box .btn-hot {
    background: var(--white);
    color: var(--orange);
}

/* === FOOTER === */
.foot {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.foot-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.foot-brand .logo-a { margin-bottom: 1rem; }
.foot-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.foot-col h4 { color: var(--orange); font-size: 0.95rem; margin-bottom: 1rem; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 0.6rem; }
.foot-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.foot-col a:hover { color: var(--white); }

.foot-end {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* === PAGE === */
.pg-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #292524 100%);
    padding: 3rem 0;
    color: var(--white);
}

.pg-crumb { font-size: 0.9rem; margin-bottom: 1rem; opacity: 0.7; }
.pg-crumb a { color: var(--white); text-decoration: none; }
.pg-crumb a:hover { text-decoration: underline; }

.pg-hero h1 { font-family: 'Sora', sans-serif; font-size: 2.25rem; margin-bottom: 0.5rem; }
.pg-hero p { opacity: 0.8; }

/* === CONTENT === */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    padding: 4rem 0;
}

.content-main h2 { font-size: 1.4rem; margin: 2rem 0 1rem; }
.content-main h3 { font-size: 1.15rem; margin: 1.5rem 0 0.75rem; }
.content-main p { margin-bottom: 1rem; color: var(--stone); }
.content-main ul, .content-main ol { margin: 1rem 0 1rem 1.5rem; }
.content-main li { margin-bottom: 0.5rem; color: var(--stone); }
.content-main a { color: var(--orange); }

.side-widget {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.side-widget h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--orange-dark); }
.side-widget ul { list-style: none; }
.side-widget li { margin-bottom: 0.6rem; }
.side-widget a { color: var(--stone); text-decoration: none; }
.side-widget a:hover { color: var(--orange); }

.side-cta {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: var(--white);
}

.side-cta h4 { color: var(--white); }
.side-cta p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 1rem; }

/* === SLOTS === */
.slot-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.slot-box {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.slot-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.slot-box img { width: 100%; height: 130px; object-fit: cover; }

.slot-box-body { padding: 1rem; }
.slot-box h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.slot-box p { font-size: 0.8rem; color: var(--stone-light); margin-bottom: 0.5rem; }

.rtp-pill {
    display: inline-block;
    background: var(--cream);
    color: var(--orange-dark);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* === FORM === */
.form-row { margin-bottom: 1.5rem; }
.form-row label { display: block; margin-bottom: 0.5rem; font-weight: 500; }

.form-row input, .form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-row input:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.form-row textarea { min-height: 140px; resize: vertical; }

.form-send {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.form-send:hover { transform: translateY(-2px); }

/* === 404 === */
.err { text-align: center; padding: 6rem 0; }
.err h1 { font-size: 8rem; background: linear-gradient(135deg, var(--orange), var(--red)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .intro-flex { grid-template-columns: 1fr; text-align: center; }
    .intro-img { display: none; }
    .intro-btns, .intro-pills { justify-content: center; }
    .quick-boxes { grid-template-columns: repeat(3, 1fr); }
    .hub-flex { grid-template-columns: repeat(2, 1fr); }
    .foot-cols { grid-template-columns: repeat(2, 1fr); }
    .content-layout { grid-template-columns: 1fr; }
    .slot-flex { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .ham { display: block; }
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 1rem;
    }
    .menu.show { display: block; }
    .menu ul { flex-direction: column; gap: 0; }
    .menu li { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .head-cta { display: none; }
    
    .intro { padding: 3rem 0; }
    .intro-h1 { font-size: 2rem; }
    .quick-boxes { grid-template-columns: repeat(2, 1fr); }
    
    .cas-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    .cas-num { margin: 0 auto; }
    .cas-info { flex-direction: column; }
    
    .hub-flex, .chk-grid { grid-template-columns: 1fr; }
    .slot-flex { grid-template-columns: repeat(2, 1fr); }
    .foot-cols { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
    .wrap { padding: 0 16px; }
    .intro-h1 { font-size: 1.75rem; }
    .quick-boxes { grid-template-columns: 1fr; }
    .slot-flex { grid-template-columns: 1fr; }
    .tbl { font-size: 0.8rem; }
    .tbl th, .tbl td { padding: 0.75rem; }
}
