@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Fira+Code:wght@300;400;500;700&display=swap');

:root {
    --bg-color: #090514; /* Deep void background */
    --surface-color: #1a1025; /* Slightly lighter for cards */
    --neon-green: #7BFF00;
    --neon-purple: #E500FF;
    --text-main: #e0e0e0;
    --text-dim: #a09ab0;
    --font-heading: 'Share Tech Mono', monospace;
    --font-body: 'Fira Code', monospace;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: color var(--transition-speed);
}

/* Neon utilities */
.text-neon-green {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(123, 255, 0, 0.5);
}

.text-neon-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 5px rgba(229, 0, 255, 0.5);
}

.bg-neon-purple {
    background-color: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 10px rgba(229, 0, 255, 0.6);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid rgba(123, 255, 0, 0.2);
    background: rgba(9, 5, 20, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--neon-green);
}

.nav-links a:hover {
    text-shadow: 0 0 8px var(--neon-green);
}

.play-btn {
    padding: 10px 25px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    box-shadow: 0 0 20px rgba(229, 0, 255, 0.8);
    transform: scale(1.05);
}

/* Footer / Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--neon-purple);
    border-bottom: 1px solid var(--neon-purple);
    padding: 10px 0;
    margin-top: 40px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    color: var(--neon-green);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Sections Global */
section {
    padding: 5rem 5%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--neon-green);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border: 1px solid rgba(123, 255, 0, 0.3);
    box-shadow: 0 0 30px rgba(123, 255, 0, 0.2);
    border-radius: 4px;
}

/* Features Section */
.features-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: transparent;
    border-top: 1px solid transparent;
    padding: 1rem 0;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    color: var(--neon-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--neon-green);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-outline {
    background: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 8px 16px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(123, 255, 0, 0.1);
    box-shadow: 0 0 10px rgba(123, 255, 0, 0.4);
}

/* Divider Line */
.feature-card {
    border-bottom: 1px solid var(--neon-purple);
}

/* Arena Section */
.arena-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .arena-grid {
        flex-direction: column;
    }
}

.arena-content {
    flex: 1;
}

.arena-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.arena-text {
    color: var(--neon-green);
    margin-bottom: 1.5rem;
}

.arena-visual {
    flex: 1;
    border: 1px solid rgba(123, 255, 0, 0.5);
    padding: 10px;
    position: relative;
}

.arena-visual img {
    width: 100%;
    display: block;
    opacity: 0.8;
}

/* About Page Specific */
.about-container {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.about-image {
    flex: 1;
    max-width: 400px;
    border: 1px solid var(--neon-purple);
    position: relative;
}

.about-image img {
    width: 100%;
    display: block;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--neon-purple);
}

.about-info {
    flex: 2;
}

.status-bar {
    color: var(--neon-green);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
}

.about-subtitle {
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: 4rem;
    color: var(--neon-purple);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(229, 0, 255, 0.4);
}

.about-text {
    color: var(--neon-green);
    margin-bottom: 1.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.skill-item h4 {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.skill-item p {
    color: var(--neon-green);
    font-weight: bold;
    font-family: var(--font-heading);
}

.social-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 5rem;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--neon-green);
    font-size: 1.2rem;
}

/* Blog Page Specific */
.blog-header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--neon-purple);
    padding-bottom: 1rem;
}

.blog-title {
    font-size: 3.5rem;
    text-shadow: 0 0 15px rgba(229, 0, 255, 0.5);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--surface-color);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--neon-purple);
}

.blog-content {
    padding: 1.5rem;
    background: #7a7a7a; /* As per the image standard grey */
    position: relative;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 30px;
    height: 30px;
    background: var(--neon-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.author-info {
    font-size: 0.8rem;
    color: #4db8ff; /* specific blueish color from image */
}

.blog-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: var(--font-body);
    text-transform: none;
}

.blog-card p {
    color: #4db8ff;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.blog-actions {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.9rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-title {
        font-size: 3rem;
    }
    .about-container {
        flex-direction: column;
    }
    nav {
        flex-direction: column;
        gap: 1rem;
    }
}
