/* ===================================
   GameVault Pro - Modern Gaming Platform
   Next-Gen Design System v2.0
======================================*/

/*----------------------------------------*/
/* CSS Variables & Theme Configuration
/*----------------------------------------*/
:root {
    /* Primary Brand Colors */
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --primary-rgb: 139, 92, 246;
    
    /* Accent Colors */
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --accent-light: #22d3ee;
    
    /* Success Colors */
    --success: #10b981;
    --success-dark: #059669;
    
    /* Warning Colors */
    --warning: #f59e0b;
    --warning-dark: #d97706;
    
    /* Error Colors */
    --error: #ef4444;
    --error-dark: #dc2626;
    
    /* Background Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #1e1e2d;
    --bg-hover: #252532;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-inverse: #000000;
    
    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-light: rgba(255, 255, 255, 0.05);
    --border-color-dark: rgba(255, 255, 255, 0.15);
    
    /* Gradient Backgrounds */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    
    /* Box Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.4);
    --shadow-glow-accent: 0 0 40px rgba(6, 182, 212, 0.4);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*----------------------------------------*/
/* Reset & Base Styles
/*----------------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/*----------------------------------------*/
/* Typography
/*----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

h1 {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
}

h3 {
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/*----------------------------------------*/
/* Layout & Container
/*----------------------------------------*/
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-lg);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

/* Grid System */
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    padding: 0 0.75rem;
    flex-shrink: 0;
    width: 100%;
}

/* Large Desktop */
.col-lg-12 { flex-basis: 100%; max-width: 100%; }
.col-lg-11 { flex-basis: 91.666667%; max-width: 91.666667%; }
.col-lg-10 { flex-basis: 83.333333%; max-width: 83.333333%; }
.col-lg-9 { flex-basis: 75%; max-width: 75%; }
.col-lg-8 { flex-basis: 66.666667%; max-width: 66.666667%; }
.col-lg-7 { flex-basis: 58.333333%; max-width: 58.333333%; }
.col-lg-6 { flex-basis: 50%; max-width: 50%; }
.col-lg-5 { flex-basis: 41.666667%; max-width: 41.666667%; }
.col-lg-4 { flex-basis: 33.333333%; max-width: 33.333333%; }
.col-lg-3 { flex-basis: 25%; max-width: 25%; }
.col-lg-2 { flex-basis: 16.666667%; max-width: 16.666667%; }
.col-lg-1 { flex-basis: 8.333333%; max-width: 8.333333%; }

/* Medium Devices */
@media (max-width: 991px) {
    .col-md-12 { flex-basis: 100%; max-width: 100%; }
    .col-md-11 { flex-basis: 91.666667%; max-width: 91.666667%; }
    .col-md-10 { flex-basis: 83.333333%; max-width: 83.333333%; }
    .col-md-9 { flex-basis: 75%; max-width: 75%; }
    .col-md-8 { flex-basis: 66.666667%; max-width: 66.666667%; }
    .col-md-7 { flex-basis: 58.333333%; max-width: 58.333333%; }
    .col-md-6 { flex-basis: 50%; max-width: 50%; }
    .col-md-5 { flex-basis: 41.666667%; max-width: 41.666667%; }
    .col-md-4 { flex-basis: 33.333333%; max-width: 33.333333%; }
    .col-md-3 { flex-basis: 25%; max-width: 25%; }
    .col-md-2 { flex-basis: 16.666667%; max-width: 16.666667%; }
    .col-md-1 { flex-basis: 8.333333%; max-width: 8.333333%; }
    
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
    .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/*----------------------------------------*/
/* Header & Navigation
/*----------------------------------------*/
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color-light);
    transition: var(--transition-base);
    padding: var(--space-md) 0;
}

.header-section.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: var(--shadow-lg);
}

.site-logo {
    font-size: var(--text-2xl);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: var(--transition-base);
}

.site-logo::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.site-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.main-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xs);
    align-items: center;
}

.main-menu li {
    position: relative;
}

.main-menu li a {
    display: flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.main-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.main-menu li a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.main-menu li a:hover::before {
    opacity: 0.2;
}

.main-menu li a:hover::after {
    width: 80%;
}

.main-menu li.active a {
    color: var(--text-primary);
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.main-menu li.active a::after {
    display: none;
}

/*----------------------------------------*/
/* Section Styling
/*----------------------------------------*/
.blog-section,
.blog-list-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.spad {
    padding: var(--space-4xl) 0;
}

/* Page Top Section */
.page-top-section {
    position: relative;
    padding: var(--space-4xl) 0 var(--space-2xl);
    background: var(--gradient-dark);
    overflow: hidden;
    margin-top: 80px;
}

.page-top-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0.1;
}

.page-top-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.page-top-section .container {
    position: relative;
    z-index: 1;
}

.page-top-section h2 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

/*----------------------------------------*/
/* Section Headers
/*----------------------------------------*/
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.section-header {
    text-align: left;
}

.section-title {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    margin-top: var(--space-sm);
    position: relative;
    box-shadow: var(--shadow-glow);
}

.section-line::before,
.section-line::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 100%;
    background: inherit;
    border-radius: var(--radius-full);
    opacity: 0.5;
}

.section-line::before {
    left: -50px;
}

.section-line::after {
    right: -50px;
}

/*----------------------------------------*/
/* Blog Post Cards
/*----------------------------------------*/
.blog-post {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.blog-post::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
}

.blog-post:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.blog-post:hover::before {
    transform: scaleX(1);
}

.blog-post:hover::after {
    opacity: 0.3;
}

.blog-post > a {
    position: relative;
    overflow: hidden;
    display: block;
}

.blog-post > a img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-post:hover > a img {
    transform: scale(1.1);
}

.blog-post > a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: var(--transition-base);
}

.blog-post:hover > a::after {
    opacity: 0.2;
}

.post-date {
    padding: var(--space-lg);
    color: var(--accent);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post h3,
.blog-post h4 {
    padding: 0 var(--space-lg) var(--space-sm);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blog-post h3 {
    font-size: var(--text-lg);
}

.blog-post h4 {
    font-size: var(--text-base);
}

.post-metas {
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.blog-post p {
    padding: 0 var(--space-lg);
    flex: 1;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Featured Post */
.featured-post {
    border: 2px solid transparent;
}

.featured-post > a img {
    height: 320px;
}

.featured-post h3 {
    font-size: var(--text-xl);
}

/*----------------------------------------*/
/* Buttons
/*----------------------------------------*/
.site-btn,
.read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-xl);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.site-btn {
    margin: 0 var(--space-lg) var(--space-lg);
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.read-more {
    margin: 0 var(--space-lg) var(--space-lg);
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.site-btn::before,
.read-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
}

.site-btn:hover::before,
.read-more:hover::before {
    width: 300px;
    height: 300px;
}

.site-btn:hover,
.read-more:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.site-btn:hover {
    filter: brightness(1.1);
}

.read-more:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: transparent;
}

/*----------------------------------------*/
/* Small Blog List & Sidebar
/*----------------------------------------*/
.small-blog-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sb-item {
    display: flex;
    gap: var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: var(--space-md);
    border: 1px solid var(--border-color-light);
    transition: var(--transition-base);
}

.sb-item:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.sb-item a {
    flex-shrink: 0;
    width: 150px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.sb-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.sb-item:hover a img {
    transform: scale(1.1);
}

.sb-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.sb-date {
    color: var(--accent);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.sb-text h6 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sb-metas {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.sb-text p {
    font-size: var(--text-sm);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*----------------------------------------*/
/* Sidebar Widget
/*----------------------------------------*/
.sb-widget {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-lg);
}

.sb-widget.sticky {
    position: sticky;
    top: 100px;
}

/* Search Widget */
.sb-search input {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--text-base);
    transition: var(--transition-base);
}

.sb-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.sb-search input::placeholder {
    color: var(--text-muted);
}

/* Category List */
.sb-cata-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.sb-cata-list li a {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    font-weight: 500;
}

.sb-cata-list li a:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-glow);
}

.sb-cata-list li a.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

/* Ad Widget */
.sb-widget .add a {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.sb-widget .add a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.sb-widget .add img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.sb-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gradient-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.latest-news-widget {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.ln-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    background: var(--bg-tertiary);
}

.ln-item:hover {
    transform: translateX(4px);
    background: var(--primary);
}

.ln-index {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--text-primary);
    font-weight: 800;
    font-size: var(--text-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
}

.ln-item a {
    flex-shrink: 0;
    width: 90px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.ln-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ln-text {
    flex: 1;
    min-width: 0;
}

.ln-date {
    color: var(--accent);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ln-text h6 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ln-metas {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
}

/*----------------------------------------*/
/* Review Post (List Page)
/*----------------------------------------*/
.review-post {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: var(--space-lg);
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.review-post:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.review-post a {
    flex-shrink: 0;
    width: 350px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.review-post a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.review-post:hover a img {
    transform: scale(1.1);
}

.review-post .post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.review-post .post-date {
    padding: 0 0 var(--space-sm) 0;
}

.review-post h3 {
    padding: 0 0 var(--space-sm) 0;
    font-size: var(--text-xl);
}

.review-post .rating {
    padding: 0 0 var(--space-md) 0;
}

.review-post p {
    padding: 0 0 var(--space-md) 0;
    flex: 1;
}

.review-post .site-btn {
    margin: 0;
    width: fit-content;
}

/*----------------------------------------*/
/* Pagination
/*----------------------------------------*/
.site-pagination {
    margin-top: var(--space-2xl);
}

.pagination-container {
    text-align: center;
}

.pagination-list {
    display: inline-flex;
    gap: var(--space-xs);
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item {
    display: inline-block;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-md);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.pagination-link:hover:not(.disabled) {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pagination-link.current {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.pagination-link.disabled {
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-link.disabled:hover {
    transform: none;
}

/*----------------------------------------*/
/* About Page
/*----------------------------------------*/
.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-card);
}

.about-content p {
    margin-bottom: var(--space-lg);
    font-size: var(--text-lg);
}

.about-content h3 {
    margin: var(--space-xl) 0 var(--space-md);
    font-size: var(--text-2xl);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content ul {
    margin-bottom: var(--space-lg);
}

.about-content ul li {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
    position: relative;
    color: var(--text-secondary);
    font-size: var(--text-lg);
}

.about-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: 800;
    font-size: var(--text-xl);
}

.about-content strong {
    color: var(--text-primary);
}

/*----------------------------------------*/
/* Contact Page
/*----------------------------------------*/
.contact-form,
.contact-info {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-card);
}

.contact-form h3,
.contact-info h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form .form-group {
    margin-bottom: var(--space-md);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--text-base);
    transition: var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.contact-form button {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.contact-form button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.contact-info .info-item {
    margin-bottom: var(--space-xl);
}

.contact-info .info-item i {
    color: var(--primary);
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    display: block;
}

.contact-info .info-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-info .info-item p + p {
    color: var(--text-primary);
    margin-top: var(--space-xs);
}

.contact-info .social-links {
    display: flex;
    gap: var(--space-md);
}

.contact-info .social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    font-size: var(--text-lg);
}

.contact-info .social-links a:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/*----------------------------------------*/
/* Footer
/*----------------------------------------*/
.footer-section {
    background: var(--bg-secondary);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--border-color-light);
    position: relative;
    margin-top: var(--space-4xl);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-widget {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-widget {
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color-light);
}

.about-widget .logo-text {
    font-size: var(--text-xl);
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fw-title {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-widget ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-widget ul li a {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    transition: var(--transition-base);
    display: inline-block;
}

.footer-widget ul li a:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.copyright {
    text-align: center;
    padding: var(--space-xl) 0 0;
    border-top: 1px solid var(--border-color-light);
    margin-top: var(--space-xl);
}

.copyright p {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.copyright a {
    color: var(--primary);
}

/*----------------------------------------*/
/* Social Links
/*----------------------------------------*/
.social-links-warp {
    background: var(--bg-card);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border-color-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    list-style: none;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    font-size: var(--text-sm);
    font-weight: 600;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.social-links a i {
    font-size: var(--text-lg);
}

.social-links a span {
    display: none;
}

@media (min-width: 768px) {
    .social-links a span {
        display: inline;
    }
}

/*----------------------------------------*/
/* Single Post & Game Details
/*----------------------------------------*/
.single-post {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-card);
}

.single-post img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.single-post .post-date {
    padding: var(--space-lg);
    color: var(--accent);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.single-post h3 {
    padding: 0 var(--space-lg) var(--space-sm);
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}

.single-post .post-metas {
    padding: 0 var(--space-lg) var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.single-post .post-metas {
    color: var(--warning) !important;
}

.single-post .item-content {
    padding: 0 var(--space-lg) var(--space-lg);
}

.single-post .item-content p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    font-size: var(--text-lg);
}

.single-post .item-content ul,
.single-post .item-content ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.single-post .item-content li {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-lg);
}

.single-post .item-content h3,
.single-post .item-content h4,
.single-post .item-content h5 {
    margin: var(--space-lg) 0 var(--space-md);
    color: var(--text-primary);
}

.comments {
    padding: var(--space-xl);
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.comments h5 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: var(--space-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--text-base);
    margin-bottom: var(--space-md);
    transition: var(--transition-base);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.comment-form textarea {
    resize: vertical;
    min-height: 150px;
}

.comment-form .site-btn {
    margin: 0;
}

/*----------------------------------------*/
/* Game Overlay
/*----------------------------------------*/
.game-iframe-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.game-iframe-overlay > div {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-iframe-overlay #close-game {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--error);
    color: var(--text-primary);
    border: none;
    padding: var(--space-md) var(--space-xl);
    cursor: pointer;
    font-size: var(--text-base);
    font-weight: 700;
    border-radius: var(--radius-md);
    z-index: 10000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.game-iframe-overlay #close-game:hover {
    background: var(--error-dark);
    transform: translateY(-2px);
}

.game-iframe-overlay #game-iframe {
    width: 95%;
    height: 90%;
    border: none;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*----------------------------------------*/
/* Text Utilities
/*----------------------------------------*/
.text-line1 {
    width: 100%;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-line3 {
    width: 100%;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*----------------------------------------*/
/* Responsive Design
/*----------------------------------------*/
@media (max-width: 991px) {
    .main-menu {
        display: none;
    }
    
    .header-section {
        justify-content: center;
    }
    
    .review-post {
        flex-direction: column;
    }
    
    .review-post a {
        width: 100%;
        height: 300px;
    }
    
    .footer-widget {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-widget ul {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .sb-widget {
        position: static;
    }
    
    .single-post img {
        height: 300px;
    }
    
    .game-iframe-overlay #game-iframe {
        width: 100%;
        height: 80%;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .blog-section,
    .blog-list-section,
    .spad {
        padding: var(--space-2xl) 0;
    }
    
    .page-top-section {
        padding: var(--space-3xl) 0 var(--space-xl);
        margin-top: 70px;
    }
    
    .page-top-section h2 {
        font-size: 2rem;
    }
    
    .sb-item {
        flex-direction: column;
    }
    
    .sb-item a {
        width: 100%;
        height: 180px;
    }
    
    .ln-item {
        flex-wrap: wrap;
    }
    
    .ln-item a {
        width: 100%;
    }
    
    .footer-section {
        padding: var(--space-2xl) 0;
    }
    
    .social-links a span {
        display: none;
    }
    
    .single-post img {
        height: 250px;
    }
    
    .single-post h3 {
        font-size: var(--text-xl);
    }
    
    .game-iframe-overlay #close-game {
        top: 20px;
        right: 20px;
        padding: var(--space-sm) var(--space-md);
        font-size: var(--text-sm);
    }
}

/*----------------------------------------*/
/* Animations
/*----------------------------------------*/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/*----------------------------------------*/
/* Helper Classes
/*----------------------------------------*/
.set-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.active {
    color: var(--warning) !important;
}
