* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff41;
    --secondary: #ff00ff;
    --dark: #0a0a0a;
    --darker: #050505;
    --gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --text: #ffffff;
    --text-muted: #888888;
}

body {
    font-family: Teko, sans-serif;
    background: var(--dark) url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text);
    line-height: 1.6;
    font-size: 20px;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.95) 15%, 
        rgba(0, 0, 0, 0.95) 85%, 
        rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    margin-top: 6px;
}

.logo-press {
    color: var(--text);
}

.logo-x {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-menu a,
.nav-menu span {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1;
    height: 38px;
    display: flex;
    align-items: center;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--darker);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 2px solid var(--primary);
        overflow-y: auto;
        z-index: 1000;
        visibility: hidden;
    }
    
    .nav-menu.active {
        right: 0;
        visibility: visible;
    }
    
    .nav-menu .search-form {
        display: none;
    }
    
    .nav-menu a,
    .nav-menu span {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .secondary-nav {
        display: none !important;
    }
    
    .community-stats {
        display: none;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    border-bottom: 2px solid var(--primary);
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Hero Section */
.hero-section {
    max-width: 1400px;
    margin: 2rem auto 2rem;
    padding: 0 2rem;
}

.hero-content {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(0, 10, 10, 0.8) 100%);
    border: 2px solid rgba(0, 255, 65, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-section {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Secondary Navigation */
.secondary-nav {
    background: transparent;
    margin-top: 1rem;
}

.secondary-nav.scrolled {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.secondary-nav.hidden {
    display: none !important;
}

.secondary-nav .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Filters */
.filters {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
    height: 45px;
}

.filter-btn {
    padding: 0.75rem 1.5rem 0.6rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
}

.filter-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: -5px;
}

.filter-btn .platform-logo {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    margin-top: -5px;
}

.filter-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    color: var(--primary);
}

.filter-btn[href*="platform=playstation"]:hover {
    background: rgba(0, 112, 220, 0.15);
    color: #0070dc;
}

.filter-btn[href*="platform=playstation"]:hover .platform-logo {
    filter: brightness(0) saturate(100%) invert(39%) sepia(93%) saturate(2678%) hue-rotate(198deg) brightness(99%) contrast(102%);
}

.filter-btn[href*="platform=xbox"]:hover {
    background: rgba(16, 124, 16, 0.15);
    color: #107c10;
}

.filter-btn[href*="platform=xbox"]:hover .platform-logo {
    filter: brightness(0) saturate(100%) invert(35%) sepia(85%) saturate(782%) hue-rotate(74deg) brightness(96%) contrast(95%);
}

.filter-btn[href*="platform=pc"]:hover {
    background: rgba(255, 102, 0, 0.15);
    color: #ff6600;
}

.filter-btn[href*="platform=pc"]:hover svg {
    color: #ff6600;
}

.filter-btn[href*="platform=indie"]:hover {
    background: rgba(138, 43, 226, 0.15);
    color: #8a2be2;
}

.filter-btn[href*="platform=indie"]:hover svg {
    color: #8a2be2;
}

.filter-btn.active {
    background: rgba(0, 255, 65, 0.15);
    color: var(--primary);
}

/* Community Stats */
.community-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.community-stats span:not(:nth-child(2)):not(:nth-child(4)) {
    color: var(--text);
}

/* Featured Post */
.featured-post {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.featured-link {
    display: block;
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
}

.featured-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-link:hover img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    padding: 3rem 2rem 2rem;
    color: var(--text);
}

.featured-label {
    display: inline-block;
    background: var(--primary);
    color: black;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.featured-title {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    color: var(--text);
    font-weight: 700;
    line-height: 1.2;
}

.featured-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.featured-meta .platform-tag {
    margin: 0;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0 1rem;
    }
    
    .featured-post {
        padding: 0 1rem;
        margin: 1rem auto;
    }
    
    .featured-link {
        height: 350px;
    }
    
    .featured-title {
        font-size: 1.75rem;
    }
    
    .featured-overlay {
        padding: 2rem 1rem;
    }
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.article-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.article-card:hover {
    transform: translateY(-3px);
}

.article-card:hover img {
    transform: scale(1.05);
}

.article-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-content {
    padding: 0.75rem;
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem 0.15rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.platform-tag svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: -3px;
}

.platform-tag .platform-logo {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    margin-top: -3px;
}

.platform-tag.indie {
    background: #ff00ff;
    color: white;
}

.platform-tag.xbox {
    background: #107c10;
    color: white;
}

.platform-tag.playstation {
    background: #003791;
    color: white;
}

.platform-tag.pc {
    background: #ff6600;
    color: white;
}

.platform-tag.multi {
    background: var(--primary);
    color: black;
}

.article-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.article-card h2 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.article-card h2 a:hover {
    color: var(--primary);
}

.article-card p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    align-items: center;
}

.article-meta svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
    fill: var(--text-muted);
}

/* Full Article Page */
.article-page-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1024px) {
    .article-page-layout {
        display: grid;
        grid-template-columns: 1fr 350px;
        grid-template-rows: auto 1fr;
    }
    
    .full-article {
        grid-column: 1;
        grid-row: 1;
    }
    
    .article-main-content {
        grid-column: 1;
        grid-row: 2;
    }
    
    .article-sidebar {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}

.article-main-content {
    width: 100%;
}

.full-article {
    border-radius: 10px;
    margin-bottom: 2rem;
    min-width: 0;
}

.full-article h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.article-image {
    width: 100%;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin: 2rem 0;
}

/* Reactions */
.reactions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.reactions h3 {
    margin-bottom: 1rem;
}

.reaction-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.reaction-btn {
    padding: 0.75rem 1.25rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    color: var(--text);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reaction-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--text);
}

.reaction-btn:hover {
    border-color: var(--primary);
}

.reaction-btn:hover svg {
    stroke: var(--primary);
}

.reaction-display {
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
}

.reaction-display span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reaction-display svg {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
}

.login-prompt {
    color: var(--text-muted);
}

.login-prompt a {
    color: var(--primary);
}

/* Comments Section */
.comments-section {
    border-radius: 10px;
}

.comments-section h3 {
    margin-bottom: 1.5rem;
}

.comment-form {
    margin-bottom: 2rem;
}

.comment-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    color: var(--text);
    border-radius: 5px;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    margin-bottom: 1rem;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.comment-form input {
    width: 100%;
    padding: 0.75rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    color: var(--text);
    border-radius: 5px;
    margin-bottom: 1rem;
}

.comment-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.comment-form button {
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.comment-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 3px solid var(--primary);
}

.comment-author {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.guest-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: var(--text-muted);
    color: white;
    border-radius: 3px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.comment-text {
    color: var(--text);
    line-height: 1.6;
}

/* Article Sidebar */
.article-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .article-sidebar {
        display: block;
    }
    
    .sidebar-sticky {
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

.article-sidebar h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.similar-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.similar-article {
    display: flex;
    gap: 0.75rem;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.similar-article:hover {
    transform: translateY(-3px);
}

.similar-article:hover img {
    transform: scale(1.05);
}

.similar-article img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.similar-content {
    flex: 1;
    min-width: 0;
}

.similar-content h4 {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.similar-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.similar-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.similar-meta svg {
    width: 14px;
    height: 14px;
    fill: var(--text-muted);
}

.no-articles {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Auth Pages */
/* Auth Pages */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.auth-grid {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.auth-form-section {
    width: 100%;
}

.auth-form-section h1 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.auth-form input {
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-radius: 5px;
    transition: all 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: black;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 65, 0.4);
}

.auth-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.auth-link a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .auth-form-section {
        max-width: 100%;
    }
}
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(0, 255, 65, 0.2);
    border: 2px solid var(--primary);
    color: var(--primary);
}

.alert-error {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    color: #ff0000;
}

/* Admin Panel */
.admin-container {
    display: flex;
    min-height: calc(100vh - 200px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.admin-sidebar {
    width: 250px;
    padding: 2rem;
    border-right: 2px solid var(--primary);
}

.admin-sidebar h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.admin-sidebar ul {
    list-style: none;
}

.admin-sidebar li {
    margin-bottom: 1rem;
}

.admin-sidebar a {
    color: var(--text);
    text-decoration: none;
    display: block;
    padding: 0.75rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: var(--light-gray);
    color: var(--primary);
}

.admin-content {
    flex: 1;
    padding: 2rem;
}

.admin-content h1 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--light-gray);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.admin-table {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.admin-table thead {
    background: var(--light-gray);
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.admin-table th {
    color: var(--primary);
    font-weight: bold;
}

.admin-table td a {
    color: var(--primary);
    text-decoration: none;
    margin-right: 1rem;
}

.admin-table td a:hover {
    text-decoration: underline;
}

.article-form .form-group {
    margin-bottom: 1.5rem;
}

.article-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: bold;
}

.article-form input,
.article-form select,
.article-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    color: var(--text);
    border-radius: 5px;
    font-family: inherit;
}

.article-form input:focus,
.article-form select:focus,
.article-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.article-form small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer p {
    color: var(--text-muted);
    margin: 0.5rem 0;
}

.footer-social {
    margin: 1.5rem 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--text);
    background: #000000;
    border-color: var(--text);
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links span {
    color: var(--text-muted);
}

/* Static Pages */
.static-page {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.static-page h1 {
    color: var(--text);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.static-page h2 {
    color: var(--text);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.static-page h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.static-page p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.static-page ul {
    color: var(--text-muted);
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.static-page section {
    margin-bottom: 2rem;
}

.static-page .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-container {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .admin-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid var(--primary);
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .static-page {
        padding: 0 1rem;
    }
}

/* Search Form in Header */
.search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 38px;
}

.search-form input {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 0.9rem;
    width: 200px;
    outline: none;
}

.search-form input::placeholder {
    color: var(--text-muted);
}

.search-form button {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
}

.search-form button svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    transition: stroke 0.3s;
}

.search-form button:hover svg {
    stroke: var(--primary);
}

/* Search Page */
.search-page {
    margin: 2rem 0;
}

.search-page h1 {
    color: var(--text);
    margin-bottom: 1rem;
}

.search-info {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.search-result-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.search-result-item:hover {
    transform: translateY(-2px);
}

.result-image {
    height: 100%;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-content {
    padding: 1.5rem;
    padding-left: 0;
}

.result-content h2 {
    font-size: 1.5rem;
    margin: 0.75rem 0;
}

.result-content h2 a {
    color: var(--text);
    text-decoration: none;
}

.result-content h2 a:hover {
    color: var(--primary);
}

.result-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.result-meta {
    display: flex;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.no-results a {
    color: var(--primary);
    text-decoration: none;
}

.no-results a:hover {
    text-decoration: underline;
}

/* Social Sharing */
.social-sharing {
    margin: 3rem 0;
    padding: 2rem 0;
}

.social-sharing h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn.x-twitter {
    background: #000000;
    color: white;
}

.share-btn.x-twitter:hover {
    background: #1a1a1a;
}

.share-btn.facebook {
    background: #1877F2;
    color: white;
}

.share-btn.facebook:hover {
    background: #145dbf;
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.whatsapp:hover {
    background: #1da851;
}

.share-btn.email {
    background: #666666;
    color: white;
}

.share-btn.email:hover {
    background: #4d4d4d;
}

.share-btn.reddit {
    background: #FF4500;
    color: white;
}

.share-btn.reddit:hover {
    background: #e03d00;
}

.share-btn.discord {
    background: #5865F2;
    color: white;
}

.share-btn.discord:hover {
    background: #4752c4;
}

/* Related Articles Section */
.related-articles-section {
    grid-column: 1 / -1;
    margin-top: 3rem;
    padding-top: 3rem;
}

.related-articles-section h2 {
    color: var(--text);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.related-article-card {
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s;
}

.related-article-card:hover {
    transform: translateY(-5px);
}

.related-article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card-content {
    padding: 1.5rem;
}

.related-card-content h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 0.75rem 0;
    line-height: 1.4;
}

.related-card-meta {
    display: flex;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Logos Page */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.logo-card {
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.logo-preview {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.logo-preview.dark-bg {
    background: var(--bg);
}

.logo-preview.light-bg {
    background: #f5f5f5;
}

.logo-info {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-info h3 {
    color: var(--text);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.logo-info p {
    color: var(--text-muted);
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.download-buttons {
    display: flex;
    gap: 0.75rem;
}

.download-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--bg);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.download-btn svg {
    width: 16px;
    height: 16px;
}

.brand-guidelines {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.brand-guidelines h2 {
    color: var(--text);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.guideline-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

.guideline-item h4 {
    color: var(--text);
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
}

.guideline-item p {
    color: var(--text-muted);
    margin: 0.5rem 0;
    line-height: 1.6;
}

.guideline-item strong {
    color: var(--text);
}

.color-swatches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.color-swatch {
    text-align: center;
}

.swatch {
    width: 100%;
    height: 80px;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.color-swatch span {
    display: block;
    color: var(--text);
    font-family: monospace;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.color-swatch small {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .search-form {
        width: 100%;
    }
    
    .search-form input {
        width: 100%;
    }
    
    .search-result-item {
        grid-template-columns: 1fr;
    }
    
    .result-image {
        height: 200px;
    }
    
    .result-content {
        padding: 1.5rem 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .static-page {
        padding: 0 1rem;
    }
    
    .article-page-layout {
        padding: 0 1rem;
    }
    
    .share-btn {
        justify-content: center;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
    flex: 1;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: Teko, sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
}

.cookie-btn.accept {
    background: var(--primary);
    color: var(--dark);
}

.cookie-btn.accept:hover {
    background: var(--text);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text-muted);
}

.cookie-btn.decline:hover {
    border-color: var(--text);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
