/* Mastercard Sophisticated Style - Auto-themed */
:root {
    --gnoc-primary: #0E1218;
    --gnoc-secondary: #284e89;
    --gnoc-accent: #48a5f5;
    --gnoc-accent-light: #60777d;
    --gnoc-accent-dark: #403c4d;
    --gnoc-gold: #469cf5;
    --gnoc-gold-light: #5e6981;
    --gnoc-gold-dark: #3e444e;
    --gnoc-bg: #F7FAFC;
    --gnoc-bg-dark: #0f0f0f;
    --gnoc-bg-gradient: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
    --gnoc-text: #0E1218;
    --gnoc-text-light: #6f7997;
    --gnoc-border: #d3ccd9;
    --gnoc-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --gnoc-shadow-hover: rgba(232,10,31,0.2);
    --gnoc-shadow-accent: rgba(231,10,23,0.15);
    --gnoc-success: #25a24d;
    --gnoc-danger: #f10a1d;
    --gnoc-overlay: rgba(0, 0, 0, 0.7);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--gnoc-text);
    background: var(--gnoc-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(229,10,26,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(237,156,102,0.02) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    background-attachment: fixed;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(227,10,25,0.008) 2px, rgba(242,10,28,0.008) 4px);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.gnoc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 23px;
}

/* Price Ticker */
.gnoc-ticker {
    background: linear-gradient(135deg, #151122 0%, #24252d 50%, #1d1e15 100%);
    color: #ffffff;
    padding: 17px 0;
    border-bottom: 3px solid rgba(241,10,20,0.3);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.gnoc-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gnoc-accent), transparent);
    animation: gnoc-shimmer 3s infinite;
}

@keyframes gnoc-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.gnoc-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
    flex-wrap: wrap;
    padding: 0 26px;
}

.gnoc-ticker-item {
    display: flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
    padding: 7px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.gnoc-ticker-metal {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.gnoc-ticker-price {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
}

.gnoc-ticker-change {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.gnoc-ticker-change--up {
    color: var(--gnoc-success);
}

.gnoc-ticker-change--down {
    color: var(--gnoc-danger);
}

.gnoc-ticker-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

/* Header */
.gnoc-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-bottom: 2px solid var(--gnoc-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(23px) saturate(180%);
    box-shadow: 0 4px 27px rgba(0, 0, 0, 0.08);
    position: relative;
}

.gnoc-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gnoc-accent), transparent);
}

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

.gnoc-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--gnoc-primary);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.gnoc-logo-icon {
    width: 39px;
    height: 42px;
    background: linear-gradient(135deg, var(--gnoc-accent) 0%, var(--gnoc-accent-light) 50%, var(--gnoc-accent-dark) 100%);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 4px 12px var(--gnoc-shadow-accent);
    position: relative;
    overflow: hidden;
}

.gnoc-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: gnoc-rotate 3s infinite;
}

@keyframes gnoc-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gnoc-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.gnoc-nav-link {
    color: var(--gnoc-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 18px;
    border-radius: 5px;
}

.gnoc-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gnoc-accent);
    border-radius: 3px;
    transition: transform 0.3s;
}

.gnoc-nav-link:hover {
    color: var(--gnoc-accent);
}

.gnoc-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.gnoc-nav-link--active {
    color: var(--gnoc-accent);
    background: rgba(233,10,32,0.08);
}

.gnoc-nav-link--active::after {
    transform: translateX(-50%) scaleX(1);
}

.gnoc-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 11px;
}

.gnoc-menu-line {
    width: 24px;
    height: 2px;
    background: var(--gnoc-primary);
    transition: all 0.3s ease;
}

.gnoc-menu-toggle.active .gnoc-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.gnoc-menu-toggle.active .gnoc-menu-line:nth-child(2) {
    opacity: 0;
}

.gnoc-menu-toggle.active .gnoc-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.gnoc-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 18px 27px;
    background: var(--gnoc-bg);
    border-top: 1px solid var(--gnoc-border);
}

.gnoc-mobile-nav.active {
    display: flex;
}

.gnoc-mobile-link {
    padding: 9px 0;
    color: var(--gnoc-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--gnoc-border);
}

.gnoc-mobile-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.gnoc-hero {
    background: linear-gradient(135deg, #1b1816 0%, #202e21 30%, #1f2725 50%, #29302b 70%, #221013 100%);
    color: #ffffff;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gnoc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(232,10,23,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240,158,100,0.1) 0%, transparent 50%);
    animation: gnoc-pulse 4s ease-in-out infinite;
}

.gnoc-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(230,10,26,0.02) 100px,
        rgba(229,10,33,0.02) 200px
    );
    animation: gnoc-drift 20s linear infinite;
}

@keyframes gnoc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes gnoc-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.gnoc-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 23px;
    position: relative;
    z-index: 2;
}

.gnoc-hero-badge {
    display: inline-block;
    padding: 13px 25px;
    background: rgba(228,10,25,0.15);
    border: 2px solid rgba(227,10,28,0.4);
    border-radius: 53px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gnoc-accent-light);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 30px;
}

.gnoc-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 23px 0;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.gnoc-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 36px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gnoc-hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.gnoc-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 31px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.gnoc-btn-primary {
    background: linear-gradient(135deg, var(--gnoc-accent) 0%, var(--gnoc-accent-light) 50%, var(--gnoc-accent-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(240,10,19,0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.gnoc-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.gnoc-btn-primary:hover::before {
    left: 100%;
}

.gnoc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(237,10,29,0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.gnoc-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gnoc-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Star Rating Component */
.gnoc-rating-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 39px 0;
    border-top: 2px solid rgba(232,10,31,0.15);
    border-bottom: 2px solid rgba(231,10,26,0.15);
}

.gnoc-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.95);
    padding: 19px 43px;
    border-radius: 51px;
    box-shadow: 
        0 6px 33px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(227,10,20,0.2);
    position: relative;
}

.gnoc-rating-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(242,10,28,0.05) 0%, transparent 70%);
    border-radius: 52px;
    z-index: -1;
}

.gnoc-rating-label {
    font-size: 13px;
    color: var(--gnoc-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.gnoc-stars {
    display: flex;
    gap: 4px;
}

.gnoc-star {
    font-size: 16px;
    color: #dcdbe5;
}

.gnoc-star--filled {
    color: var(--gnoc-gold);
    text-shadow: 0 0 10px rgba(245,163,88,0.5);
    animation: gnoc-star-twinkle 2s ease-in-out infinite;
}

@keyframes gnoc-star-twinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gnoc-rating-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--gnoc-primary);
}

.gnoc-rating-reviews {
    font-size: 13px;
    color: var(--gnoc-text-light);
}

/* Winner Section Component */
.gnoc-winner-section {
    background: linear-gradient(135deg, rgba(240,10,30,0.06) 0%, rgba(245,166,91,0.04) 100%);
    padding: 62px 0;
    margin: 69px 0;
    border-radius: 23px;
    border: 4px solid rgba(238,10,29,0.15);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.gnoc-winner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(235,10,32,0.05) 0%, transparent 70%);
    animation: gnoc-float 8s ease-in-out infinite;
}

.gnoc-winner-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243,167,92,0.04) 0%, transparent 70%);
    animation: gnoc-float 10s ease-in-out infinite reverse;
}

@keyframes gnoc-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.gnoc-winner-header {
    text-align: center;
    margin-bottom: 39px;
}

.gnoc-winner-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--gnoc-primary);
    margin-bottom: 13px;
}

.gnoc-winner-subtitle {
    font-size: 16px;
    color: var(--gnoc-text-light);
}

.gnoc-winner-badge {
    display: inline-block;
    padding: 17px 28px;
    background: linear-gradient(135deg, var(--gnoc-accent), var(--gnoc-accent-light));
    color: #ffffff;
    border-radius: 47px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 33px;
    box-shadow: 
        0 5px 18px rgba(233,10,31,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.gnoc-winner-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: gnoc-shine 3s infinite;
}

@keyframes gnoc-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Main Content */
.gnoc-main {
    padding: 50px 0;
}

.gnoc-article {
    max-width: 800px;
    margin: 0 auto;
}

.gnoc-intro {
    margin-bottom: 42px;
    padding: 27px;
    background: linear-gradient(135deg, rgba(230,10,25,0.04) 0%, rgba(238,167,102,0.02) 100%);
    border-radius: 15px;
    border-left: 5px solid var(--gnoc-accent);
}

.gnoc-lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gnoc-text);
    margin-bottom: 23px;
    font-weight: 500;
}

.gnoc-article h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--gnoc-primary);
    margin: 57px 0 30px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 19px;
    padding-left: 23px;
}

.gnoc-article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gnoc-accent), var(--gnoc-accent-light), var(--gnoc-accent-dark));
    border-radius: 1px;
}

.gnoc-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gnoc-accent), var(--gnoc-accent-light), transparent);
    border-radius: 3px;
}

.gnoc-article h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--gnoc-primary);
    margin: 39px 0 19px 0;
}

.gnoc-article p {
    margin-bottom: 22px;
    line-height: 1.9;
    color: var(--gnoc-text);
    position: relative;
    padding-left: 23px;
}

.gnoc-article p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--gnoc-accent);
    border-radius: 50%;
    box-shadow: 0 0 7px rgba(228,10,20,0.4);
    opacity: 0.6;
}

.gnoc-article p:first-of-type::before {
    display: none;
}

.gnoc-list,
.gnoc-list-ordered {
    margin: 33px 0;
    padding-left: 33px;
    position: relative;
}

.gnoc-list::before,
.gnoc-list-ordered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gnoc-accent), var(--gnoc-accent-light), var(--gnoc-accent-dark));
    border-radius: 3px;
}

.gnoc-list li,
.gnoc-list-ordered li {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--gnoc-text);
    padding-left: 9px;
    position: relative;
    transition: all 0.3s;
}

.gnoc-list li::marker {
    color: var(--gnoc-accent);
    font-weight: 700;
}

.gnoc-list li:hover,
.gnoc-list-ordered li:hover {
    color: var(--gnoc-primary);
    transform: translateX(5px);
}

.gnoc-image-wrapper {
    margin: 49px 0;
    border-radius: 23px;
    overflow: hidden;
    box-shadow: 
        0 15px 50px var(--gnoc-shadow),
        0 8px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(241,10,27,0.2);
    position: relative;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.gnoc-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gnoc-accent), var(--gnoc-accent-light), var(--gnoc-accent-dark), var(--gnoc-accent));
    border-radius: 23px;
    z-index: -1;
    opacity: 0.2;
    animation: gnoc-border-glow 3s ease-in-out infinite;
}

@keyframes gnoc-border-glow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.gnoc-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(1.05);
}

.gnoc-article-image.loaded {
    opacity: 1;
    transform: scale(1);
}

.gnoc-image-wrapper:hover .gnoc-article-image {
    transform: scale(1.03);
}

/* FAQ Accordion */
.gnoc-faq-section {
    margin: 50px 0;
}

.gnoc-faq-header {
    text-align: center;
    margin-bottom: 47px;
}

.gnoc-faq-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--gnoc-primary);
    margin-bottom: 11px;
}

.gnoc-faq-subtitle {
    font-size: 19px;
    color: var(--gnoc-text-light);
}

.gnoc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gnoc-faq-item {
    background: linear-gradient(135deg, var(--gnoc-bg) 0%, #fafafa 100%);
    border: 2px solid var(--gnoc-border);
    border-radius: 17px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.gnoc-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gnoc-accent), var(--gnoc-accent-dark));
    transform: scaleY(0);
    transition: transform 0.4s;
}

.gnoc-faq-item:hover {
    border-color: rgba(239,10,30,0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.gnoc-faq-item:hover::before,
.gnoc-faq-item.active::before {
    transform: scaleY(1);
}

.gnoc-faq-item.active {
    border-color: var(--gnoc-accent);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.12),
        0 4px 20px var(--gnoc-shadow-accent),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.gnoc-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 19px;
    padding: 23px 27px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.gnoc-faq-question-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--gnoc-primary);
}

.gnoc-faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(235,10,23,0.12), rgba(234,10,31,0.08));
    border-radius: 50%;
    color: var(--gnoc-accent);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(233,10,26,0.15);
    border: 1px solid rgba(232,10,34,0.2);
}

.gnoc-faq-item.active .gnoc-faq-icon {
    transform: rotate(180deg) scale(1.1);
    background: linear-gradient(135deg, var(--gnoc-accent), var(--gnoc-accent-light));
    color: #ffffff;
    box-shadow: 
        0 4px 15px rgba(231,10,25,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.gnoc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.gnoc-faq-item.active .gnoc-faq-answer {
    max-height: 1000px;
}

.gnoc-faq-answer-content {
    padding: 0 26px 17px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--gnoc-text);
}

/* Exit Popup Component */
.gnoc-exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gnoc-overlay);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.gnoc-exit-popup.active {
    display: flex;
}

.gnoc-exit-popup-content {
    background: linear-gradient(135deg, var(--gnoc-bg) 0%, #fafafa 100%);
    padding: 44px;
    border-radius: 23px;
    max-width: 520px;
    width: 90%;
    position: relative;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(227,10,19,0.1);
}

.gnoc-exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gnoc-text-light);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.gnoc-exit-popup-close:hover {
    background: rgba(242,10,27,0.1);
    color: var(--gnoc-accent);
}

.gnoc-exit-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gnoc-primary);
    margin-bottom: 16px;
}

.gnoc-exit-popup-text {
    font-size: 15px;
    color: var(--gnoc-text);
    margin-bottom: 26px;
    line-height: 1.6;
}

/* Footer */
.gnoc-footer {
    background: linear-gradient(135deg, #181922 0%, #322d2c 50%, #171b17 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 69px 0 39px;
    margin-top: 81px;
}

.gnoc-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 53px;
    margin-bottom: 50px;
    padding-bottom: 47px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.gnoc-footer-grid::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gnoc-accent), transparent);
}

.gnoc-footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
}

.gnoc-footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.gnoc-footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 13px;
}

.gnoc-footer-links {
    list-style: none;
    padding: 0;
}

.gnoc-footer-links li {
    margin-bottom: 12px;
}

.gnoc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 23px;
    display: inline-block;
}

.gnoc-footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: var(--gnoc-accent);
}

.gnoc-footer-links a:hover {
    color: var(--gnoc-accent-light);
    transform: translateX(5px);
}

.gnoc-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.gnoc-footer-bottom {
    padding-top: 33px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Scroll Progress */
.gnoc-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gnoc-accent), var(--gnoc-accent-light));
    z-index: 9999;
    transition: width 0.1s;
}

/* Additional Detail Enhancements */
.gnoc-article::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        transparent, 
        var(--gnoc-accent) 10%, 
        var(--gnoc-accent-light) 50%, 
        var(--gnoc-accent) 90%, 
        transparent
    );
    border-radius: 3px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .gnoc-header { position: relative !important; }
    .gnoc-article::before {
        display: none;
    }
}

.gnoc-section-divider {
    height: 100px;
    position: relative;
    margin: 80px 0;
    overflow: hidden;
}

.gnoc-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(235,10,31,0.2) 20%, 
        var(--gnoc-accent) 50%, 
        rgba(234,10,23,0.2) 80%, 
        transparent
    );
    transform: translateY(-50%);
}

.gnoc-section-divider::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gnoc-accent), var(--gnoc-accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    box-shadow: 
        0 0 30px rgba(233,10,34,0.5),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .gnoc-menu-toggle {
        display: flex;
    }

    .gnoc-nav {
        display: none;
    }

    .gnoc-hero-title {
        font-size: 32px;
    }

    .gnoc-hero-subtitle {
        font-size: 16px;
    }

    .gnoc-article h2 {
        font-size: 28px;
        padding-left: 0;
    }

    .gnoc-article h2::before {
        display: none;
    }

    .gnoc-article p {
        padding-left: 0;
    }

    .gnoc-article p::before {
        display: none;
    }

    .gnoc-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gnoc-btn {
        width: 100%;
        justify-content: center;
    }

    .gnoc-ticker-track {
        gap: 21px;
        font-size: 12px;
    }

    .gnoc-ticker-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .gnoc-companies-table-wrapper {
        overflow-x: auto;
    }

    .gnoc-companies-table th,
    .gnoc-companies-table td {
        padding: 10px 5px;
        font-size: 15px;
    }
}

/* ================================================
   Aliases for PHP template compatibility
   ================================================ */
.gnoc-body { font-family: 'Inter', -apple-system, sans-serif; }
.gnoc-header { background: rgba(255,255,255,0.98); border-bottom: 2px solid var(--gnoc-border); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(23px); }
.gnoc-header-container { max-width: 1200px; margin: 0 auto; padding: 14px 27px; display: flex; align-items: center; justify-content: space-between; }
.gnoc-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--gnoc-primary); font-weight: 700; font-size: 22px; }
.gnoc-logo-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--gnoc-accent) 0%, var(--gnoc-accent-light) 100%); border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; }
.gnoc-logo-text { font-size: 20px; font-weight: 700; }
.gnoc-nav { display: flex; gap: 35px; align-items: center; }
.gnoc-nav-link { color: var(--gnoc-text); text-decoration: none; font-weight: 600; font-size: 15px; padding: 5px 18px; border-radius: 5px; transition: 0.3s; position: relative; }
.gnoc-nav-link:hover { color: var(--gnoc-accent); }
.gnoc-nav-link--active { color: var(--gnoc-accent); background: rgba(229,10,28,0.08); }
.gnoc-menu-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 9px; }
.gnoc-menu-line { width: 22px; height: 3px; background: var(--gnoc-primary); transition: 0.3s; }
.gnoc-menu-toggle.active .gnoc-menu-line:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.gnoc-menu-toggle.active .gnoc-menu-line:nth-child(2) { opacity: 0; }
.gnoc-menu-toggle.active .gnoc-menu-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
.gnoc-mobile-nav { display: none; flex-direction: column; padding: 23px 25px; background: var(--gnoc-bg); border-top: 1px solid var(--gnoc-border); }
.gnoc-mobile-nav.active { display: flex; }
.gnoc-mobile-link { padding: 15px 0; color: var(--gnoc-text); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--gnoc-border); }
.gnoc-mobile-link:last-child { border-bottom: none; }
.gnoc-main { padding: 47px 0; }
.gnoc-btn { display: inline-flex; align-items: center; padding: 16px 27px; font-weight: 600; font-size: 18px; text-decoration: none; border-radius: 9px; transition: 0.3s; border: none; cursor: pointer; }
.gnoc-btn-primary { background: linear-gradient(135deg, var(--gnoc-accent) 0%, var(--gnoc-accent-light) 100%); color: #fff; box-shadow: 0 4px 20px rgba(228,10,19,0.3); }
.gnoc-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 35px rgba(227,10,27,0.5); }
.gnoc-footer { background: linear-gradient(135deg, #1f171d 0%, #252d28 100%); color: rgba(255,255,255,0.8); padding: 69px 0 39px; }
.gnoc-footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 51px; margin-bottom: 48px; padding-bottom: 53px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.gnoc-footer-col {}
.gnoc-footer-logo { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.gnoc-footer-tagline { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.gnoc-footer-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 17px; }
.gnoc-footer-links { list-style: none; padding: 0; }
.gnoc-footer-links li { margin-bottom: 8px; }
.gnoc-footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: 0.3s; }
.gnoc-footer-links a:hover { color: var(--gnoc-accent-light); }
.gnoc-footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }

/* ================================================
   Companies Table Styles (Mastercard Theme)
   ================================================ */
.gnoc-companies-table-wrapper {
    overflow-x: auto;
    margin: 29px 0;
    border-radius: 17px;
    box-shadow: 0 9px 28px var(--gnoc-shadow);
    border: 2px solid rgba(236,10,31,0.15);
}

.gnoc-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--gnoc-bg);
    border-radius: 14px;
    overflow: hidden;
}

.gnoc-companies-table thead {
    background: linear-gradient(135deg, var(--gnoc-primary) 0%, var(--gnoc-secondary) 100%);
}

.gnoc-companies-table th {
    padding: 15px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.gnoc-companies-table tbody tr {
    border-bottom: 1px solid var(--gnoc-border);
    transition: all 0.3s;
}

.gnoc-companies-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(235,10,23,0.04) 0%, rgba(243,164,103,0.02) 100%);
}

.gnoc-companies-table tbody tr:last-child {
    border-bottom: none;
}

.gnoc-companies-table td {
    padding: 18px 19px;
    vertical-align: middle;
}

/* Rank Badge */
.gnoc-rank-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gnoc-gold) 0%, var(--gnoc-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(242,162,95,0.4);
}

/* Company Info */
.gnoc-company-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.gnoc-company-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--gnoc-primary);
}

.gnoc-company-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(232,10,33,0.1), rgba(231,10,25,0.05));
    border: 1px solid rgba(230,10,28,0.3);
    color: var(--gnoc-accent);
    font-size: 10px;
    font-weight: 700;
    border-radius: 49px;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
}

/* Rating Box */
.gnoc-rating-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gnoc-stars {
    display: flex;
    gap: 2px;
}

.gnoc-star {
    font-size: 19px;
}

.gnoc-star-full {
    color: var(--gnoc-gold);
    text-shadow: 0 0 10px rgba(238,164,89,0.5);
}

.gnoc-star-half {
    color: var(--gnoc-gold);
    opacity: 0.6;
}

.gnoc-star-empty {
    color: #d8d9db;
}

.gnoc-rating-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--gnoc-primary);
}

/* BBB Badge */
.gnoc-bbb-badge {
    display: inline-block;
    padding: 7px 11px;
    background: var(--gnoc-success);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 7px;
}

/* Features List */
.gnoc-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gnoc-features-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 7px;
    font-size: 14px;
    color: var(--gnoc-text);
}

.gnoc-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gnoc-success);
    font-weight: 700;
}

/* Action Button */
.gnoc-btn-review {
    display: inline-block;
    padding: 9px 26px;
    background: linear-gradient(135deg, var(--gnoc-accent) 0%, var(--gnoc-accent-light) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 11px;
    transition: 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(228,10,27,0.3);
}

.gnoc-btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227,10,22,0.4);
}

/* ================================================
   Review Page Styles
   ================================================ */
.gnoc-review-page {
    max-width: 900px;
    margin: 0 auto;
}

.gnoc-review-header {
    text-align: center;
    padding: 39px 0;
    border-bottom: 3px solid rgba(242,10,30,0.15);
    margin-bottom: 41px;
}

.gnoc-review-title {
    font-size: 2.5rem;
    color: var(--gnoc-primary);
    margin-bottom: 18px;
}

.gnoc-review-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    flex-wrap: wrap;
}

.gnoc-review-rating-large {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gnoc-review-rating-large .gnoc-stars {
    font-size: 24px;
}

.gnoc-review-badge {
    padding: 7px 13px;
    background: var(--gnoc-success);
    color: #fff;
    font-weight: 600;
    border-radius: 7px;
}

/* Quick Facts */
.gnoc-quick-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(241,10,21,0.04) 0%, rgba(245,165,98,0.02) 100%);
    border-radius: 17px;
    margin-bottom: 40px;
    border: 1px solid rgba(239,10,32,0.1);
}

.gnoc-fact-item {
    text-align: center;
}

.gnoc-fact-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gnoc-text-light);
    margin-bottom: 7px;
}

.gnoc-fact-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--gnoc-primary);
}

/* Review Content */
.gnoc-review-content {
    line-height: 1.8;
}

.gnoc-review-section {
    margin-bottom: 38px;
}

.gnoc-review-section h2 {
    font-size: 1.6rem;
    color: var(--gnoc-primary);
    margin-bottom: 23px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gnoc-accent);
}

.gnoc-review-intro .gnoc-lead {
    font-size: 1.15rem;
    color: var(--gnoc-text);
    line-height: 1.8;
}

/* Pros & Cons */
.gnoc-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 39px 0;
}

.gnoc-pros, .gnoc-cons {
    padding: 28px;
    border-radius: 15px;
}

.gnoc-pros {
    background: linear-gradient(135deg, rgba(43,171,66,0.08) 0%, rgba(42,169,73,0.03) 100%);
    border: 2px solid rgba(41,159,65,0.2);
}

.gnoc-cons {
    background: linear-gradient(135deg, rgba(235,10,34,0.08) 0%, rgba(234,10,26,0.03) 100%);
    border: 2px solid rgba(233,10,33,0.2);
}

.gnoc-pros h3 {
    color: var(--gnoc-success);
    margin-bottom: 15px;
}

.gnoc-cons h3 {
    color: var(--gnoc-accent);
    margin-bottom: 12px;
}

.gnoc-pros ul, .gnoc-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gnoc-pros li, .gnoc-cons li {
    padding: 10px 0 7px 27px;
    position: relative;
}

.gnoc-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gnoc-success);
    font-weight: 700;
}

.gnoc-cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--gnoc-accent);
    font-weight: 700;
}

/* Fee Table */
.gnoc-fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 21px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid var(--gnoc-border);
}

.gnoc-fee-table th {
    background: linear-gradient(135deg, var(--gnoc-primary) 0%, var(--gnoc-secondary) 100%);
    color: #fff;
    padding: 14px 13px;
    text-align: left;
    font-weight: 600;
}

.gnoc-fee-table td {
    padding: 16px 15px;
    border-bottom: 2px solid var(--gnoc-border);
}

.gnoc-fee-table tr:last-child td {
    border-bottom: none;
}

/* CTA Box */
.gnoc-cta-box {
    background: linear-gradient(135deg, var(--gnoc-accent) 0%, var(--gnoc-accent-light) 100%);
    color: #fff;
    padding: 41px;
    border-radius: 12px;
    text-align: center;
    margin: 43px 0;
    box-shadow: 0 8px 27px rgba(232,10,25,0.3);
}

.gnoc-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.gnoc-cta-box p {
    margin-bottom: 19px;
    opacity: 0.9;
}

.gnoc-cta-box .gnoc-btn-primary {
    background: #fff;
    color: var(--gnoc-accent);
    padding: 17px 31px;
    font-size: 14px;
}

.gnoc-cta-box .gnoc-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Other Companies Grid */
.gnoc-other-companies {
    margin-top: 57px;
    padding-top: 42px;
    border-top: 1px solid rgba(230,10,20,0.1);
}

.gnoc-other-companies h3 {
    font-size: 1.4rem;
    color: var(--gnoc-primary);
    margin-bottom: 28px;
}

.gnoc-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.gnoc-other-card {
    padding: 28px;
    background: linear-gradient(135deg, var(--gnoc-bg) 0%, #fafafa 100%);
    border: 2px solid var(--gnoc-border);
    border-radius: 9px;
    transition: 0.3s;
}

.gnoc-other-card:hover {
    border-color: rgba(229,10,27,0.4);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateX(4px);
}

.gnoc-other-card h4 {
    font-size: 1.1rem;
    color: var(--gnoc-primary);
    margin-bottom: 9px;
}

.gnoc-other-card p {
    font-size: 12px;
    color: var(--gnoc-text-light);
    margin-bottom: 15px;
}

.gnoc-other-card a {
    color: var(--gnoc-accent);
    font-weight: 600;
    text-decoration: none;
}

.gnoc-other-card a:hover {
    text-decoration: underline;
}

/* Verdict Section */
.gnoc-verdict {
    background: linear-gradient(135deg, rgba(227,10,30,0.06) 0%, rgba(245,156,91,0.04) 100%);
    padding: 30px;
    border-radius: 11px;
    border-left: 5px solid var(--gnoc-accent);
}

.gnoc-verdict h2 {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* List Styles */
.gnoc-list {
    list-style: none;
    padding: 0;
    margin: 19px 0;
}

.gnoc-list li {
    padding: 13px 0 11px 26px;
    position: relative;
    border-bottom: 1px solid var(--gnoc-border);
}

.gnoc-list li:last-child {
    border-bottom: none;
}

.gnoc-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--gnoc-accent);
    font-size: 20px;
    line-height: 1;
}

/* Responsive for Review & Mobile */
@media (max-width: 768px) {
    .gnoc-menu-toggle {
        display: flex;
    }

    .gnoc-nav {
        display: none;
    }

    .gnoc-quick-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .gnoc-pros-cons {
        grid-template-columns: 1fr;
    }

    .gnoc-review-title {
        font-size: 1.8rem;
    }

    .gnoc-footer-grid {
        grid-template-columns: 1fr;
    }
}


/* Force Mobile Table Cards */
@media screen and (max-width: 768px) {
    .gnoc-companies-section .gnoc-companies-table-wrapper {
        overflow: visible !important;
        background: transparent !important;
    }

    .gnoc-companies-section table.gnoc-companies-table {
        display: block !important;
        width: 100% !important;
    }

    .gnoc-companies-section .gnoc-companies-table thead {
        display: none !important;
    }

    .gnoc-companies-section .gnoc-companies-table tbody,
    .gnoc-companies-section .gnoc-companies-table tr {
        display: block !important;
        width: 100% !important;
    }

    .gnoc-companies-section .gnoc-companies-table tbody tr.gnoc-company-row {
        background: #fff !important;
        margin-bottom: 23px !important;
        border-radius: 17px !important;
        box-shadow: 0 3px 27px rgba(98,36,49,0.1) !important;
        padding: 20px !important;
        border: 1px solid rgba(97,26,52,0.08);
    }

    .gnoc-companies-section .gnoc-companies-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 14px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    .gnoc-companies-section .gnoc-companies-table td:last-child {
        border-bottom: none !important;
    }

    .gnoc-companies-section .gnoc-companies-table td::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: #55182f !important;
        flex-shrink: 0 !important;
        margin-right: 18px !important;
        font-size: 0.85rem !important;
    }

    .gnoc-companies-section .gnoc-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 17px !important;
        border-bottom: 1px solid #f2e3ce !important;
    }

    .gnoc-companies-section .gnoc-td-company::before {
        display: none !important;
    }

    .gnoc-companies-section .gnoc-td-rank {
        justify-content: center !important;
        padding-top: 0 !important;
        border-bottom: none !important;
    }

    .gnoc-companies-section .gnoc-td-rank::before {
        display: none !important;
    }

    .gnoc-companies-section .gnoc-td-action {
        flex-direction: column !important;
        padding-top: 19px !important;
        border-top: 2px solid #e7e2ca !important;
        border-bottom: none !important;
    }

    .gnoc-companies-section .gnoc-td-action::before {
        display: none !important;
    }

    .gnoc-companies-section .gnoc-td-action .gnoc-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 11px 26px !important;
        font-size: 1rem !important;
    }
}
/* Company Logo Styles */
.gnoc-company-logo {
    max-width: 140px;
    max-height: 45px;
    object-fit: contain;
    margin-bottom: 11px;
}

@media screen and (max-width: 768px) {
    .gnoc-company-logo {
        max-width: 140px;
        max-height: 45px;
        margin: 0 auto 12px auto;
        display: block;
    }
    
    .gnoc-companies-section .gnoc-td-company .gnoc-company-info {
        text-align: center;
    }
    
    .gnoc-companies-section .gnoc-td-company .gnoc-company-name {
        text-align: center;
    }
    
    .gnoc-companies-section .gnoc-td-company .gnoc-company-badge {
        display: inline-block;
        margin: 12px auto 0;
    }
}

/* Fix large logo images */
.gnoc-company-logo {
    width: auto !important;
    height: 45px !important;
    max-width: 140px !important;
    object-fit: contain !important;
}

/* Mobile card logo fix */
@media screen and (max-width: 768px) {
    .gnoc-companies-section .gnoc-companies-table .gnoc-td-company img.gnoc-company-logo {
        width: auto !important;
        height: 45px !important;
        max-width: 140px !important;
        max-height: 45px !important;
        display: block !important;
        margin: 0 auto 12px auto !important;
    }
}

img.gnoc-company-logo {
    width: auto !important;
    height: 45px !important;
    max-width: 140px !important;
    max-height: 45px !important;
}


/* Navigation Responsive Fix */
@media (max-width: 768px) {
    .gnoc-nav {
        display: none !important;
    }

    .gnoc-menu-toggle {
        display: flex !important;
    }
}


/* Mobile Navigation Hidden by Default */
.gnoc-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 14px 27px;
    border-top: 1px solid #eee;
}

.gnoc-mobile-nav.active {
    display: flex;
}

.gnoc-mobile-link {
    padding: 9px 0;
    color: var(--gnoc-text, #2e374e);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.gnoc-mobile-link:last-child {
    border-bottom: none;
}

.gnoc-mobile-link:hover {
    color: var(--gnoc-accent, #eb0a14);
}


/* SVG Logo & Mobile Fixes */
.gnoc-logo-svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.gnoc-logo-text {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .gnoc-logo-svg {
        width: 28px;
        height: 28px;
    }
}

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .gnoc-company-logo {
        width: 50vw !important;
        max-width: 50vw !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Center company logos on mobile */
@media screen and (max-width: 768px) {
    .gnoc-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .gnoc-company-info {
        text-align: center !important;
    }

    .gnoc-company-name {
        text-align: center !important;
    }

    .gnoc-company-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* Max width 1400px for desktop */
.gnoc-wrapper, .gnoc-content, .gnoc-hero-inner, .gnoc-companies-container, 
.gnoc-article, .gnoc-container, .gnoc-footer-inner, .gnoc-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.gnoc-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.gnoc-td-action {
    text-align: center !important;
}
.gnoc-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 13px !important;
}
