:root {
    --dark-bg: #0f0f14;
    --dark-bg-card: #1a1a24;
    --dark-bg-lighter: #252532;
    --orange: #ff6b35;
    --orange-bright: #ff8c5a;
    --yellow: #ffd23f;
    --yellow-bright: #ffeb3b;
    --purple: #6c5ce7;
    --purple-light: #a29bfe;
    --cyan: #00d9ff;
    --text-light: #ffffff;
    --text-muted: #a0a0b0;
    --border-color: #2a2a3a;
    --hover-glow: rgba(255, 107, 53, 0.3);
}

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

body {
    font-family: 'Pixelify Sans', cursive, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 20, 0.98);
    border-bottom: 3px solid var(--orange);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(255, 107, 53, 0.5);
    letter-spacing: -0.05em;
}

.logo-bracket {
    display: none;
}

.logo-text {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 50%, var(--orange-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin: 0;
    font-style: italic;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    image-rendering: pixelated;
}

.nav-link:hover {
    color: var(--orange-bright);
    border: 2px solid var(--orange);
    background: var(--hover-glow);
}

.nav-link.active {
    color: var(--yellow);
    border-bottom: 2px solid var(--orange);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 4px solid var(--orange);
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 50%, var(--yellow-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: none;
    margin-bottom: 1rem;
    font-style: italic;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Section Titles */
.section-title,
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Product Card */
.product-card {
    position: relative;
    background: var(--dark-bg-card);
    border: 3px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    text-decoration: none;
    display: block;
    aspect-ratio: 1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--orange);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5), 0 0 25px rgba(255, 107, 53, 0.3);
}

.product-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--dark-bg-lighter) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    position: relative;
}

.product-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 20, 0.98), transparent);
    padding: 2.5rem 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-style: italic;
}

.product-card:hover .product-name-overlay {
    opacity: 1;
}

/* About Page */
.about-section {
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    gap: 2rem;
}

.about-card {
    background: var(--dark-bg-card);
    border: 3px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--purple);
    box-shadow: 0 6px 16px rgba(108, 92, 231, 0.3);
}

.about-card h2 {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.about-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    font-size: 1.2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Page */
.contact-section {
    max-width: 900px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: var(--dark-bg-card);
    border: 3px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 6px 16px rgba(0, 217, 255, 0.3);
}

.contact-card h2 {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list strong {
    color: var(--orange);
    display: block;
    margin-bottom: 0.3rem;
}

.external-link {
    color: var(--cyan);
    text-decoration: none;
    border-bottom: 1px solid var(--cyan);
    transition: all 0.3s ease;
}

.external-link:hover {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}

/* Footer */
.footer {
    background: rgba(15, 15, 20, 0.98);
    border-top: 3px solid var(--orange);
    padding: 2rem 0;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0.5rem 0;
}

.footer-subtitle {
    color: var(--orange-bright);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-title,
    .page-title {
        font-size: 2rem;
    }
}
