:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-neon: #ffcc00;
    --accent-secondary: #ff3366;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --highlight-color: #ff9900;
    --button-primary: #d4a017;
    --button-text: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-neon);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(to right, var(--accent-neon), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo .domain {
    color: var(--accent-neon);
    font-size: 0.9rem;
    margin-left: 10px;
    padding: 3px 8px;
    border: 1px solid var(--accent-neon);
    border-radius: 3px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--accent-neon);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-neon);
    left: 0;
    bottom: 0;
    transition: width 0.3s;
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-neon);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9)), 
                url('./bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 3px solid var(--accent-neon);
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--accent-neon);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    line-height: 1.2;
}

.hero h2 span {
    color: var(--accent-secondary);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.primary-cta {
    background-color: var(--button-primary);
    color: var(--button-text);
    padding: 18px 120px;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 160, 23, 0.6);
    background-color: #e6b911;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-btn {
    background-color: var(--secondary-dark);
    color: var(--text-primary);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.social-btn:hover {
    background-color: rgba(255, 204, 0, 0.1);
    border-color: var(--accent-neon);
}

.social-btn i {
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--accent-neon);
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--accent-secondary);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-neon);
}

/* Features */
.features {
    background-color: var(--secondary-dark);
    border-top: 2px solid var(--accent-neon);
    border-bottom: 2px solid var(--accent-neon);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-neon);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-left-color: var(--accent-secondary);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-neon);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-neon);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.service-img {
    height: 200px;
    background-color: #333;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--accent-neon);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--text-secondary);
}

/* SEO Content */
.seo-content {
    background-color: var(--secondary-dark);
    padding: 80px 0;
}

.seo-text {
    max-width: 900px;
    margin: 0 auto;
}

.seo-text h3 {
    color: var(--accent-neon);
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.seo-text h3:first-child {
    margin-top: 0;
}

.seo-text p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.keywords {
    background-color: rgba(255, 204, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-neon);
    margin: 30px 0;
}

.keywords h4 {
    color: var(--accent-neon);
    margin-bottom: 10px;
}

.keywords p {
    color: var(--text-secondary);
}

.keyword-highlight {
    color: var(--accent-neon);
    font-weight: 700;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 60px 0 30px;
    border-top: 3px solid var(--accent-neon);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--accent-neon);
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links h4, .footer-contact h4 {
    color: var(--accent-neon);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-neon);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-neon);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--accent-neon);
        border-bottom: 1px solid var(--accent-neon);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .primary-cta {
        padding: 15px 70px;
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 1.7rem;
    }
    
    section {
        padding: 60px 0;
    }
}
