/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
.gradient-text {
    background: linear-gradient(45deg, #00ff41, #00bfff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 3s ease infinite;
}

@keyframes gradient-animation {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: #00ff41;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00ff41;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ff41, #00bfff);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%2300ff41" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%2300bfff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ff00ff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #fff;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff41;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-pc {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 255, 65, 0.3));
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icon {
    position: absolute;
    color: #00ff41;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #00ff41, #00bfff);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #00ff41;
}

.btn-secondary:hover {
    background: #00ff41;
    color: #000;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #00ff41;
    border: 2px solid #00ff41;
}

.btn-outline:hover {
    background: #00ff41;
    color: #000;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
    color: #fff;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #00ff41;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background: #111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00ff41;
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #00ff41, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== BUILDS SECTION ===== */
.featured-builds {
    padding: 80px 0;
    background: #0a0a0a;
}

.builds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.build-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.build-card.featured {
    border-color: #00ff41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}

.build-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.build-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00ff41;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.build-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.build-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.build-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.build-price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff41;
}

.build-content {
    padding: 1.5rem;
    color: #fff;
}

.build-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.build-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.build-specs {
    list-style: none;
    margin-bottom: 1.5rem;
}

.build-specs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.build-specs i {
    color: #00ff41;
    width: 16px;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    text-align: center;
}

.cta-content {
    color: #fff;
}

.cta h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    padding: 60px 0 20px;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
}

.footer-logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #00ff41;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
    color: #00ff41;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff41;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00ff41;
    color: #000;
    transform: translateY(-2px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #00ff41;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00ff41;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .builds-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ===== CONFIGURATIONS PAGE ===== */
.filter-section {
    padding: 40px 0;
    background: #111;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #00ff41;
    background: #00ff41;
    color: #000;
}

.configurations {
    padding: 60px 0;
    background: #0a0a0a;
}

.configs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.config-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.config-card.featured {
    border-color: #00ff41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
}

.config-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.config-header {
    position: relative;
}

.config-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00ff41;
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.config-badge.popular {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.config-image {
    height: 200px;
    overflow: hidden;
}

.config-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.config-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    text-align: right;
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff41;
    display: block;
}

.price-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.config-content {
    padding: 1.5rem;
    color: #fff;
}

.config-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #00ff41;
}

.config-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.config-specs {
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.spec-item i {
    color: #00ff41;
    width: 20px;
    text-align: center;
}

.spec-details {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.spec-value {
    font-weight: 600;
    color: #fff;
}

.config-performance {
    margin-bottom: 1.5rem;
}

.config-performance h4 {
    color: #00ff41;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.performance-grid {
    display: grid;
    gap: 0.3rem;
}

.performance-item {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    font-size: 0.8rem;
}

.game {
    color: rgba(255, 255, 255, 0.8);
}

.fps {
    color: #00ff41;
    font-weight: 600;
}

.config-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.config-details-btn {
    flex: 1;
    min-width: 120px;
}

/* ===== SERVICES PAGE ===== */
.services {
    padding: 60px 0;
    background: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    color: #fff;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #00ff41;
    box-shadow: 0 15px 30px rgba(0, 255, 65, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ff41, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00ff41;
}

.service-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-features i {
    color: #00ff41;
    width: 16px;
}

.service-price {
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.price-from {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff41;
    display: block;
    margin: 0.2rem 0;
}

.price-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== WORK PROCESS ===== */
.work-process {
    padding: 80px 0;
    background: #111;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    color: #fff;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff41, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
    color: #00ff41;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===== BLOG STYLES ===== */
.blog-filter {
    padding: 40px 0;
    background: #111;
}

.blog-articles {
    padding: 60px 0;
    background: #0a0a0a;
}

.featured-article {
    padding: 60px 0;
    background: #111;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-image {
    position: relative;
    height: 300px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00ff41;
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-content {
    padding: 2rem;
    color: #fff;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-category {
    background: #00ff41;
    color: #000;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-date,
.article-read-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.featured-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.featured-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #00ff41;
}

.featured-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 255, 65, 0.1);
    color: #00ff41;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #00ff41;
    box-shadow: 0 15px 30px rgba(0, 255, 65, 0.1);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00ff41;
    color: #000;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-content {
    padding: 1.5rem;
    color: #fff;
}

.article-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.article-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #00ff41;
}

.article-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-tags {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: #00ff41;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #00bfff;
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: transparent;
    border: 2px solid #00ff41;
    color: #00ff41;
}

/* ===== CONTACT PAGE ===== */
.contact {
    padding: 60px 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    color: #fff;
}

.contact-info h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00ff41;
}

.contact-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method.primary {
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
}

.contact-method:hover {
    border-color: #00ff41;
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ff41, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
}

.method-content h3 {
    font-family: 'Orbitron', monospace;
    color: #00ff41;
    margin-bottom: 0.2rem;
}

.method-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #00ff41;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
}

.social-contact h3 {
    font-family: 'Orbitron', monospace;
    color: #00ff41;
    margin-bottom: 1rem;
}

.social-contact .social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-contact .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    width: auto;
    height: auto;
}

.social-contact .social-link:hover {
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    color: #00ff41;
    transform: translateY(-2px);
}

.whatsapp-contact {
    color: #fff;
}

.whatsapp-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.whatsapp-header i {
    font-size: 2rem;
    color: #25d366;
}

.whatsapp-header h3 {
    font-family: 'Orbitron', monospace;
    color: #00ff41;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-option:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.1);
    transform: translateX(5px);
}

.whatsapp-option i {
    color: #25d366;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.option-content h4 {
    color: #00ff41;
    margin-bottom: 0.2rem;
}

.option-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.whatsapp-features {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.feature i {
    color: #00ff41;
    font-size: 1.2rem;
}

.feature span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 80px 0;
    background: #111;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    color: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 65, 0.1);
}

.faq-question h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #00ff41;
}

.faq-question i {
    color: #00ff41;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* ===== PRIVACY POLICY ===== */
.privacy-policy {
    padding: 60px 0;
    background: #0a0a0a;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-family: 'Orbitron', monospace;
    color: #00ff41;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-section h3 {
    color: #00bfff;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.privacy-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section strong {
    color: #00ff41;
}

.privacy-section .contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

/* ===== BLOG ARTICLE PAGE ===== */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #fff;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-breadcrumb a {
    color: #00ff41;
    text-decoration: none;
}

.article-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.article-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #00ff41;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-header .article-image {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.article-header .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 60px 0;
    background: #0a0a0a;
}

.article-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-text {
    color: #fff;
}

.article-text .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 65, 0.1);
    border-left: 4px solid #00ff41;
    border-radius: 8px;
}

.article-text h2 {
    font-family: 'Orbitron', monospace;
    color: #00ff41;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.article-text h3 {
    color: #00bfff;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.article-text h4 {
    color: #fff;
    margin: 1rem 0 0.5rem;
}

.article-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.article-text ul,
.article-text ol {
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0 1rem 2rem;
}

.article-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-text strong {
    color: #00ff41;
}

/* Article specific components */
.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(0, 255, 65, 0.2);
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
}

.comparison-table td {
    color: rgba(255, 255, 255, 0.8);
}

.performance-chart {
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-chart h4 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.chart-item {
    margin-bottom: 1rem;
}

.chart-item .game {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.fps-bars {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.fps-bar {
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.fps-bar.rtx4060ti {
    background: rgba(255, 107, 53, 0.2);
    border-left: 4px solid #ff6b35;
    color: #ff6b35;
}

.fps-bar.rtx4070 {
    background: rgba(0, 255, 65, 0.2);
    border-left: 4px solid #00ff41;
    color: #00ff41;
}

.feature-comparison {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.feature-item h4 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.recommendation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.recommendation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.recommendation-card.featured {
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
}

.recommendation-card h3 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.recommendation-card ul {
    margin-left: 1rem;
}

.recommendation-card li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.article-cta {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.article-cta p {
    margin-bottom: 1.5rem;
}

/* Sidebar */
.article-sidebar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.related-article:hover {
    background: rgba(0, 255, 65, 0.1);
    border-color: #00ff41;
}

.related-article img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.related-content h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.related-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.config-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.config-card-mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.config-card-mini h4 {
    color: #00ff41;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.config-card-mini p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.config-card-mini .price {
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: block;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: #fff;
}

.newsletter-text h2 {
    font-family: 'Orbitron', monospace;
    color: #00ff41;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .configs-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .recommendation-cards {
        grid-template-columns: 1fr;
    }
    
    .social-contact .social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

/* AOS Animation overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}
