

/* ============================================
   GAME KING - New Homepage Theme
   Deep Purple + Neon Pink/Magenta Accent
   ============================================ */

:root {
    --gk-bg-dark: #5b00d6;
    --gk-bg-purple: #300d72;
    --gk-bg-card: #5b21b6;
    --gk-bg-card-hover: #6d28d9;
    --gk-accent-pink: #ccff00;
    --gk-accent-magenta: #d4ff00;
    --gk-accent-cyan: #a3e635;
    --gk-accent-yellow: #ccff00;
    --gk-text-primary: #ffffff;
    --gk-text-secondary: #ddd6fe;
    --gk-text-muted: #a78bfa;
    --gk-border: #7c3aed;
    --gk-border-glow: rgba(204, 255, 0, 0.4);
    --gk-gradient-pink: linear-gradient(135deg, #ccff00 0%, #d4ff00 50%, #a3e635 100%);
    --gk-gradient-purple: linear-gradient(180deg, #4c1d95 0%, #3b1278 100%);
    --gk-gradient-card: linear-gradient(145deg, #5b21b6 0%, #4c1d95 100%);
    --gk-shadow-pink: 0 0 20px rgba(204, 255, 0, 0.3), 0 0 40px rgba(204, 255, 0, 0.1);
    --gk-shadow-glow: 0 0 30px rgba(204, 255, 0, 0.4);
}
a:hover{ text-decoration: none; }
/* ============================================
   Base Overrides (only for homepage)
   ============================================ */

body.gk-theme {
    background: var(--gk-gradient-purple);
    background-attachment: fixed;
    min-width: 1400px;
    font-family: 'Rajdhani', 'Montserrat', sans-serif;
}

body.gk-theme .uk-container-xlarge {
    max-width: 1440px;
}

/* ============================================
   Typography
   ============================================ */

.gk-font-display {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
}

.gk-font-title {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.gk-text-pink {
    color: var(--gk-accent-pink) !important;
}

.gk-text-magenta {
    color: var(--gk-accent-magenta) !important;
}

.gk-text-cyan {
    color: var(--gk-accent-cyan) !important;
}

.gk-text-secondary {
    color: var(--gk-text-secondary) !important;
}

.gk-text-muted {
    color: var(--gk-text-muted) !important;
}

/* ============================================
   Header / Navigation - Game Bottom Nav Style
   ============================================ */

.gk-header {
    background: #1a1033;
    border-bottom: 3px solid #ccff00;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.gk-header::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #5228da;
}

.gk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
}

.gk-logo {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gk-text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 15px;
}

.gk-logo i {
    font-size: 1.8rem;
    color: #ccff00;
}

.gk-logo span {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    text-shadow: 3px 3px 0 #111;
    transform: skewX(-6deg);
    -webkit-font-smoothing: antialiased;
    margin-left: 8px;
}

.gk-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    border-radius: 12px;
    padding: 6px;
    flex: 1;
    justify-content: right;
    max-width: 700px;
}

.gk-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 16px;
    color: #8b7aa0;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 60px;
}

.gk-nav li a i {
    font-size: 1.3rem;
    color: #6b5b80;
    transition: all 0.3s ease;
}

.gk-nav li a:hover,
.gk-nav li a.active {
    color: #ccff00;
    background: rgba(204, 255, 0, 0.1);
}

.gk-nav li a:hover i,
.gk-nav li a.active i {
    color: #ccff00;
}



.gk-user-area {
    display: flex;
    align-items: center;
}

/* Login Button - Game Style (Purple bg + Cyan border + White text) */
.gk-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 30px;
    background: #5b21b6;
    border: 2px solid #00e5ff;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.1);
}

.gk-btn-login:hover {
    background: #6d28d9;
    border-color: #00ffff;
    color: #ffffff;
    box-shadow: inset 0 0 30px rgba(0, 229, 255, 0.2), 0 0 15px rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

.gk-user-avatar {
    width: 46px;
    height: 42px;
    border-radius: 0;
    background: var(--gk-gradient-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b1278;
    font-size: 1.2rem;
    border: 2px solid rgba(204, 255, 0, 0.5);
    transition: all 0.3s ease;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.gk-user-avatar:hover {
    box-shadow: var(--gk-shadow-pink);
    transform: scale(1.05);
}

/* ============================================
   Hero Section
   ============================================ */

.gk-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gk-bg-purple);
}

.gk-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0.8;
}

.gk-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(59, 18, 120, 0.95) 0%, rgba(59, 18, 120, 0.7) 40%, rgba(59, 18, 120, 0.3) 100%);
}

.gk-hero-content {
    position: relative;
    z-index: 2;
    
}

.gk-hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(204, 255, 0, 0.15);
    border: 1px solid var(--gk-accent-pink);
    border-radius: 0;
    color: var(--gk-accent-pink);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.gk-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.gk-hero-title .highlight {
    background: var(--gk-gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gk-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gk-text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 35px;
}

/* Hero Buttons - Trapezoid Shape */
.gk-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 45px;
    background: var(--gk-gradient-pink);
    color: #3b1278;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--gk-shadow-pink);
    position: relative;
    overflow: hidden;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.gk-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 ease;
}

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

.gk-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--gk-shadow-glow);
    color: #fff;
    text-decoration: none;
}

.gk-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 45px;
    background: #5b21b6;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #00e5ff;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.1);
}

.gk-btn-secondary:hover {
    background: #6d28d9;
    border-color: #00ffff;
    color: #ffffff;
    box-shadow: inset 0 0 30px rgba(0, 229, 255, 0.2), 0 0 15px rgba(0, 229, 255, 0.3);
    text-decoration: none;
}

/* Hero Character Image */
.gk-hero-character {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 90%;
    z-index: 1;
    pointer-events: none;
}

.gk-hero-character img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
}

/* ============================================
   Section Styles
   ============================================ */

.gk-section {
    padding: 80px 0;
    position: relative;
}

.gk-section-dark {
    background: var(--gk-bg-dark);
}

.gk-section-purple {
    background: var(--gk-bg-purple);
}

.gk-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.gk-section-title .accent {
    color: var(--gk-accent-pink);
}

.gk-section-subtitle {
    color: var(--gk-text-secondary);
    font-size: 1rem;
    margin-bottom: 50px;
}

.gk-title-bar {
    display: inline-block;
    width: 50px;
    height: 4px;
    background: var(--gk-gradient-pink);
    border-radius: 2px;
    vertical-align: middle;
}

/* ============================================
   News / Hot Section
   ============================================ */

.gk-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.gk-news-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.gk-news-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gk-news-main:hover img {
    transform: scale(1.05);
}

.gk-news-main .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 25px 25px;
    background: linear-gradient(transparent, rgba(59, 18, 120, 0.95));
}

.gk-news-main .tag {
    display: inline-block;
    padding: 5px 18px;
    background: var(--gk-gradient-pink);
    color: #3b1278;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 10px;
}

.gk-news-main h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.gk-news-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gk-news-item {
    display: flex;
    gap: 15px;
    background: var(--gk-bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gk-border);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.gk-news-item:hover {
    border-color: var(--gk-accent-pink);
    box-shadow: var(--gk-shadow-pink);
    transform: translateY(-3px);
    text-decoration: none;
}

.gk-news-item .thumb {
    width: 120px;
    min-width: 120px;
    height: 100px;
    overflow: hidden;
}

.gk-news-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gk-news-item:hover .thumb img {
    transform: scale(1.1);
}

.gk-news-item .info {
    padding: 15px 15px 15px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gk-news-item .info .date {
    font-size: 0.75rem;
    color: var(--gk-accent-pink);
    font-weight: 600;
    margin-bottom: 5px;
}

.gk-news-item .info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gk-text-primary);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   Game Preview / Cards Section
   ============================================ */

.gk-game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gk-game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gk-bg-card);
    border: 1px solid var(--gk-border);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gk-game-card:hover {
    border-color: var(--gk-accent-pink);
    box-shadow: var(--gk-shadow-pink);
    transform: translateY(-8px);
}

.gk-game-card .image-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.gk-game-card .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gk-game-card:hover .image-wrap img {
    transform: scale(1.1);
}

.gk-game-card .image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, var(--gk-bg-card));
}

.gk-game-card .content {
    padding: 20px;
}

.gk-game-card .content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--gk-text-primary);
}

.gk-game-card .content p {
    font-size: 0.85rem;
    color: var(--gk-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.gk-game-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 14px;
    background: rgba(59, 18, 120, 0.8);
    border: 1px solid var(--gk-accent-pink);
    color: var(--gk-accent-pink);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 6px;
    backdrop-filter: blur(5px);
}

/* ============================================
   Character / Role Showcase
   ============================================ */

/* ============================================
   Feature / About Section
   ============================================ */

.gk-about-section {
    text-align: center;
    padding: 100px 0;
}

.gk-about-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gk-about-section p {
    color: var(--gk-text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.gk-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gk-feature-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--gk-bg-card);
    border-radius: 0;
    border: 1px solid var(--gk-border);
    transition: all 0.4s ease;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.gk-feature-item:hover {
    border-color: var(--gk-accent-pink);
    box-shadow: var(--gk-shadow-pink);
    transform: translateY(-5px);
}

.gk-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 0;
    border: 2px solid var(--gk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gk-accent-pink);
    color: #3b1278;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.gk-feature-item:hover .gk-feature-icon {
    border-color: var(--gk-accent-pink);
    color: #3b1278;
    background: var(--gk-accent-pink);
    box-shadow: var(--gk-shadow-pink);
}

.gk-feature-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gk-text-primary);
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.gk-feature-item p {
    font-size: 0.8rem;
    color: var(--gk-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   CTA Banner Section
   ============================================ */

.gk-cta-banner {
    position: relative;
    padding: 80px 0;
    background: var(--gk-bg-purple);
    overflow: hidden;
    clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
}

.gk-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(204, 255, 0, 0.1) 0%, transparent 70%);
}

.gk-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.gk-cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gk-cta-content p {
    color: var(--gk-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

/* ============================================
   Footer
   ============================================ */

.gk-footer {
    background: var(--gk-bg-dark);
    border-top: 1px solid var(--gk-border);
    padding: 60px 0 30px;
}

.gk-footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    margin-bottom: 50px;
}

.gk-footer-brand .gk-logo {
    margin-bottom: 20px;
}

.gk-footer-brand p {
    color: var(--gk-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.gk-footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gk-text-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.gk-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gk-footer-links ul li {
    margin-bottom: 10px;
}

.gk-footer-links ul li a {
    color: var(--gk-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.gk-footer-links ul li a:hover {
    color: var(--gk-accent-pink);
    padding-left: 5px;
}

.gk-footer-bottom {
    border-top: 1px solid var(--gk-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gk-footer-bottom p {
    color: var(--gk-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.gk-footer-bottom .payment-icons {
    display: flex;
    gap: 10px;
}

.gk-footer-bottom .payment-icons img {
    height: 30px;
}


/* ============================================
   Slideshow Dots (override)
   ============================================ */

.gk-slideshow .uk-dotnav > * > * {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 2px;
    border: none;
}

.gk-slideshow .uk-dotnav > .uk-active > * {
    background: var(--gk-gradient-pink) !important;
}

.gk-slideshow .uk-slidenav {
    color: var(--gk-text-primary);
    background: rgba(204, 255, 0, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gk-accent-pink);
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.gk-slideshow .uk-slidenav:hover {
    background: var(--gk-gradient-pink);
    color: #3b1278;
}

/* ============================================
   Decorative Elements
   ============================================ */

.gk-glow-orb {
    position: absolute;
    border-radius: 0;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.gk-glow-orb.pink {
    background: var(--gk-accent-pink);
    width: 300px;
    height: 300px;
}

.gk-glow-orb.purple {
    background: #a78bfa;
    width: 400px;
    height: 400px;
}


/* ============================================
   Animations
   ============================================ */

@keyframes gk-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.gk-animate-pulse {
    animation: gk-pulse 2s ease-in-out infinite;
}

@keyframes gk-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.gk-animate-float {
    animation: gk-float 3s ease-in-out infinite;
}

/* ============================================
   Page Content (rpage_show.html)
   ============================================ */

/* Page Header */
.gk-page-header {
    position: relative;
    padding: 140px 0 60px;
    background: var(--gk-bg-purple);
    overflow: hidden;
    border-bottom: 1px solid var(--gk-border);
}

.gk-page-header-content {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.gk-breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
    gap: 12px;
}

.gk-breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gk-breadcrumb li a {
    color: var(--gk-text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.gk-breadcrumb li a:hover {
    color: var(--gk-accent-pink);
}

.gk-breadcrumb li a i {
    font-size: 1rem;
}

.gk-breadcrumb li:last-child {
    color: var(--gk-text-primary);
}

.gk-breadcrumb .ri-arrow-right-s-line {
    color: var(--gk-text-muted);
    font-size: 1rem;
}

/* Page Title */
.gk-page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    color: var(--gk-text-primary);
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.2;
}

.gk-page-title .gk-title-bar {
    display: inline-block;
    width: 6px;
    height: 50px;
    background: var(--gk-gradient-pink);
    border-radius: 3px;
    flex-shrink: 0;
}

/* Page Content Section */
.gk-page-content {
    padding: 50px 0 100px;
    background: var(--gk-gradient-purple);
    min-height: 500px;
}

/* Content Card */
.gk-content-card {
    background: var(--gk-bg-card);
    border: 1px solid var(--gk-border);
    border-radius: 16px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gk-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gk-gradient-pink);
}

.gk-content-card:hover {
    border-color: var(--gk-accent-pink);
    box-shadow: var(--gk-shadow-pink);
}

/* Content Body - Rich Text Styling */
.gk-content-body {
    color: var(--gk-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.gk-content-body h1,
.gk-content-body h2,
.gk-content-body h3,
.gk-content-body h4,
.gk-content-body h5,
.gk-content-body h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--gk-text-primary);
    margin-top: 35px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gk-content-body h1 {
    font-size: 2rem;
}

.gk-content-body h2 {
    font-size: 1.6rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gk-border);
}

.gk-content-body h3 {
    font-size: 1.3rem;
    color: var(--gk-accent-pink);
}

.gk-content-body h4 {
    font-size: 1.1rem;
}

.gk-content-body p {
    margin-bottom: 18px;
    color: var(--gk-text-secondary);
}

.gk-content-body a {
    color: var(--gk-accent-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.gk-content-body a:hover {
    color: var(--gk-accent-cyan);
    border-bottom-color: var(--gk-accent-cyan);
}

.gk-content-body strong,
.gk-content-body b {
    color: var(--gk-text-primary);
    font-weight: 700;
}

.gk-content-body ul,
.gk-content-body ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.gk-content-body li {
    margin-bottom: 8px;
    color: var(--gk-text-secondary);
}

.gk-content-body ul li::marker {
    color: var(--gk-accent-pink);
}

.gk-content-body blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: rgba(91, 33, 182, 0.3);
    border-left: 4px solid var(--gk-accent-pink);
    border-radius: 0 8px 8px 0;
    color: var(--gk-text-secondary);
    font-style: italic;
}

.gk-content-body hr {
    border: none;
    border-bottom: 1px solid var(--gk-border) !important;
    margin: 35px 0;
}

.gk-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--gk-bg-purple);
    border-radius: 8px;
    overflow: hidden;
}

.gk-content-body th,
.gk-content-body td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--gk-border);
}

.gk-content-body th {
    background: rgba(204, 255, 0, 0.1);
    color: var(--gk-accent-pink);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.gk-content-body tr:last-child td {
    border-bottom: none;
}

.gk-content-body tr:hover td {
    background: rgba(91, 33, 182, 0.2);
}

.gk-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 960px) {
    .gk-page-title {
        font-size: 2rem;
    }

    .gk-content-card {
        padding: 30px 25px;
    }

    .gk-page-header {
        padding: 120px 0 40px;
    }
}