:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --primary-neon: #a855f7;
    --primary-neon-glow: rgba(168, 85, 247, 0.6);
    --secondary-neon: #c084fc;
    --card-bg: rgba(20, 20, 20, 0.8);
    --nav-bg: rgba(5, 5, 5, 0.9);
    --font-main: 'Outfit', sans-serif;
    --border-color: rgba(168, 85, 247, 0.2);
}

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

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

/* Typography Selection */
::selection {
    background: var(--primary-neon);
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary-neon-glow));
}

.text-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--primary-neon-glow);
}

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

.nav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--secondary-neon);
    text-shadow: 0 0 10px var(--primary-neon-glow);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    padding-top: 100px; /* Offset for navbar */
}

.hero-glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, rgba(5,5,5,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--primary-neon);
    text-shadow: 0 0 20px var(--primary-neon-glow);
}

.hero-description {
    max-width: 800px;
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
}

.scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 10px;
    transition: transform 0.3s ease;
}

.scroll-down-btn:hover {
    transform: translateY(5px);
    color: var(--primary-neon);
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Sections Global */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: -webkit-linear-gradient(#fff, var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Offerings / PC Grid */
.pc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.pc-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
}

.pc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.2), 0 0 15px var(--primary-neon-glow);
    border-color: var(--primary-neon);
}

.pc-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: #000;
    overflow: hidden;
}

.pc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Hardware Badges overlay */
.hardware-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.hw-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: rgba(0,0,0,0.6);
    padding: 5px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* FPS Overlay (Hover State) */
.fps-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.fps-overlay h3 {
    color: var(--primary-neon);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fps-list {
    list-style: none;
    width: 100%;
}

.fps-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
}

.fps-val {
    color: var(--secondary-neon);
    font-size: 1.2rem;
}

/* Hover Interactions */
.pc-card:hover .pc-image {
    opacity: 0.3;
    transform: scale(1.05);
}

.pc-card:hover .hardware-badges {
    opacity: 0;
}

.pc-card:hover .fps-overlay {
    opacity: 1;
}

.pc-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.pc-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pc-specs {
    list-style: none;
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pc-specs li {
    font-size: 0.95rem;
    color: #ccc;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pc-specs li strong {
    color: var(--secondary-neon);
}

.pc-price {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}

.buy-btn {
    width: 100%;
    padding: 12px;
    text-align: center;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-neon);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: var(--primary-neon);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-neon-glow);
}

.details-btn {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    text-align: center;
    background: transparent;
    color: #a0a0a0;
    text-decoration: underline;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.details-btn:hover {
    color: var(--secondary-neon);
}

.full-specs {
    display: none;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
    text-align: left;
}

.full-specs.open {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.full-specs ul {
    list-style: none;
}

.full-specs li {
    font-size: 0.85rem;
    color: #bbb;
    padding: 4px 0;
}

.full-specs strong {
    color: #fff;
}

/* Custom Build Form */
.custom-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-neon);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 10px var(--primary-neon-glow);
}

/* Placeholder Sections */
.placeholder-section {
    text-align: center;
}

.placeholder-text {
    font-size: 1.2rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact & Payment */
.contact-section {
    background: linear-gradient(to bottom, transparent, rgba(168, 85, 247, 0.05));
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-container > p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
}

.payment-info {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--primary-neon);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
    margin-bottom: 3rem;
}

.payment-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cashtag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.5);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 800;
    color: #00D632; /* CashApp Green */
    border: 1px solid rgba(0, 214, 50, 0.3);
    margin-bottom: 1.5rem;
}

.payment-note {
    color: #888;
    font-size: 0.9rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(20,20,20,0.5);
    padding: 2rem;
    border-radius: 12px;
    min-width: 250px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-card h4 {
    color: var(--secondary-neon);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--nav-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        padding: 2rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .section-title {
        font-size: 2.5rem;
    }

    .cashtag {
        font-size: 1.5rem;
    }
}
