/* === CSS Variables === */
:root {
    --primary-color: #CC0000; /* GMC Red */
    --gmc-black: #000000;
    --gmc-silver: #BEBEBE;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --border-radius: 4px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --font-heading: 'Inter', 'Impact', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* === Header === */
.header {
    background: var(--gmc-black);
    border-bottom: 6px solid var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    background: #fff;
    padding: 8px 25px;
    border: 2px solid var(--gmc-silver);
}

.header-logo img {
    max-height: 45px;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.header-nav ul li a {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 13px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.header-nav ul li a:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

/* === Main Content === */
.gpro_content {
    padding: 50px 0;
}

.gpro_wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.gpro_cont_main {
    background-color: #fff;
    padding: 60px;
    border: 1px solid #ddd;
    box-shadow: var(--box-shadow);
}

/* === Typography === */
h1 {
    font-size: 40px;
    font-weight: 900;
    color: var(--gmc-black);
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h2 {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 25px;
    background: var(--gmc-black);
    padding: 12px 30px;
    display: inline-block;
    border-left: 10px solid var(--primary-color);
}

p {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.1rem;
}

/* === GMC Table === */
.casino-table-section.gmc-heavy-duty { margin: 4px 0; }

.gmc-row {
    background: #fff;
    border: 2px solid #ddd;
    margin-bottom: 25px;
    position: relative;
    transition: 0.3s;
}

.gmc-row:hover { border-color: var(--primary-color); transform: scale(1.01); }
.gmc-row.denali-edition { border-left: 15px solid var(--gmc-black); border-right: 15px solid var(--primary-color); }

.gmc-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.card-grid {
    display: grid;
    grid-template-columns: 150px 1.5fr 100px 200px;
    gap: 30px;
    padding: 30px;
    align-items: center;
}

.logo-area img { max-width: 130px; }
.gmc-bonus { font-weight: 900; font-size: 1.25rem; color: #000; margin: 10px 0; }
.specs-row { display: flex; gap: 8px; flex-wrap: wrap; }
.spec-tag { font-size: 10px; font-weight: 900; background: #eee; color: #666; padding: 3px 8px; }

.rating-area { text-align: center; }
.rating-area .score { display: block; font-size: 36px; font-weight: 900; color: var(--gmc-black); }
.stars { color: var(--primary-color); font-size: 12px; }

.btn-gmc-red {
    display: block;
    background: var(--primary-color);
    color: #fff !important;
    padding: 18px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-gmc-red:hover { background: #000; }
.link-specs { display: block; text-align: center; font-size: 11px; color: #999; text-transform: uppercase; margin-top: 15px; font-weight: 700; text-decoration: underline; }

/* Pros/Cons Professional */
.gmc-pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 40px 0; }
.gmc-pros, .gmc-cons { padding: 45px; border: 2px solid #ddd; background: #fafafa; }
.gmc-pros h4 { color: #008200; font-weight: 900; margin-bottom: 25px; border-bottom: 3px solid #008200; padding-bottom: 10px; }
.gmc-cons h4 { color: var(--primary-color); font-weight: 900; margin-bottom: 25px; border-bottom: 3px solid var(--primary-color); padding-bottom: 10px; }
.gmc-pros ul, .gmc-cons ul { list-style: none; }
.gmc-pros li, .gmc-cons li { margin-bottom: 15px; font-size: 15px; font-weight: 700; color: #444; }
.gmc-pros li::before { content: '✔ '; color: #008200; }
.gmc-cons li::before { content: '✘ '; color: var(--primary-color); }

/* Trust Bar */
.ram-trust-bar { display: flex; justify-content: space-around; background: var(--gmc-black); color: #fff; padding: 25px; margin: 40px 0; font-weight: 900; font-size: 13px; letter-spacing: 2px; }

/* === Footer === */
.footer {
    background: #111;
    color: #666;
    padding: 80px 0 40px;
    border-top: 10px solid var(--primary-color);
}

.footer a { color: #fff; text-decoration: none; font-weight: 700; }
.footer h4 { color: #fff; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; }
/* FAQ Accordion */
.faq-container { margin-top: 2rem; }
.faq-item { margin-bottom: 10px; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; }
.faq-btn {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.faq-btn:hover { background: #f5f5f5; }
.faq-btn::after { content: '+'; font-size: 1.5rem; font-weight: 300; }
.faq-btn.active::after { content: '-'; }
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}
.faq-body p, .faq-body ul { padding: 15px 20px; margin: 0; }

/* === Burger Menu === */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === Responsive Styles === */
@media (max-width: 992px) {
    /* Header */
    .burger-menu {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--gmc-black);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .header-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .header-nav ul li a {
        display: block;
        padding: 15px 0;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Main content */
    .gpro_cont_main {
        padding: 30px 20px;
    }
    
    /* Casino Table - GMC Style */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    
    .logo-area {
        background: #f8f8f8;
        padding: 20px;
        border-radius: 8px;
    }
    
    .logo-area img {
        max-width: 150px;
        margin: 0 auto;
        display: block;
    }
    
    .info-area h3 {
        font-size: 1.3rem;
    }
    
    .gmc-bonus {
        font-size: 1.1rem;
    }
    
    .specs-row {
        justify-content: center;
    }
    
    .rating-area {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .rating-area .score {
        font-size: 28px;
    }
    
    .action-area {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-gmc-red {
        padding: 15px;
        font-size: 14px;
    }
    
    .gmc-row.denali-edition {
        border-left: 8px solid var(--gmc-black);
        border-right: 8px solid var(--primary-color);
    }
    
    .gmc-badge {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }
    
    /* Pros/Cons Grid */
    .gmc-pc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gmc-pros, .gmc-cons {
        padding: 25px;
    }
    
    /* Trust Bar */
    .ram-trust-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.5rem !important;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .gpro_wrap {
        padding: 0 10px;
    }
    
    .gpro_cont_main {
        padding: 20px 15px;
    }
    
    .card-grid {
        padding: 15px;
    }
    
    .logo-area img {
        max-width: 120px;
    }
    
    .gmc-bonus {
        font-size: 1rem;
    }
    
    .rating-area .score {
        font-size: 24px;
    }
    
    .spec-tag {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
}

/* Footer Mobile Styles - Added */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer .gpro_wrap > div:first-child {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }

    .footer .gpro_wrap > div:first-child > div {
        text-align: center;
    }

    .footer .gpro_wrap > div:first-child > div:first-child img {
        max-height: 70px !important;
        transform: scale(2);
        transform-origin: center;
        margin: 30px 0 50px !important;
    }

    .footer ul {
        text-align: center;
    }

    .footer h4 {
        text-align: center;
    }
}

/* MOBILE-HEADER-FIX */
@media (max-width: 768px) {
    .header { position: relative !important; z-index: auto !important; }
}

/* === MOBILE RESPONSIVE FIX === */
html,body{max-width:100vw!important;overflow-x:hidden!important}
img,video,iframe,embed,object{max-width:100%!important;height:auto}
table{max-width:100%!important}
.star-icon{width:20px!important;height:20px!important;display:inline-block!important}
.stars-container{display:flex!important;justify-content:center!important;gap:4px!important;flex-wrap:wrap!important}
.rating-container{text-align:center!important;max-width:300px!important;margin:1rem auto!important}
@media(max-width:768px){
.burger-menu,.mobile-menu-btn,[class*="burger"]{display:flex!important;flex-direction:column!important;justify-content:center!important;cursor:pointer!important}
.burger-menu span,.burger-icon,.burger-bar{display:block!important;width:25px!important;height:3px!important;margin:3px 0!important;border-radius:2px!important;transition:.3s!important}
}

/* === HIDE CASINO NAMES UNDER LOGOS === */
[class*="-casino-name"], .casino-name, .dl-casino-name, .cupertino-casino-name, .gb-casino-name { display: none !important; }

/* STICKY-FOOTER-IMG-FIX-V1 */
.sticky-footer-inner img{min-height:0!important}
