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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #f8fafc, #e2e8f0, #cbd5e1);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Header - Ultra Thin, No Shrinking */
@media (max-width: 768px) {
    header {
        padding: 0.4rem 0 !important;
        background: rgba(248, 250, 252, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        border-bottom: 1px solid rgba(0, 102, 204, 0.1) !important;
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1) !important;
    }
}

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 102, 204, 0.3));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 102, 204, 0.5));
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #0066cc;
    text-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
    display: none;
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
        margin: 0;
        padding: 0;
    }
    
    .nav-links a {
        color: #334155;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-weight: 500;
    }
    
    .nav-links a:hover {
        color: #0066cc;
        background: rgba(0, 102, 204, 0.1);
        transform: translateY(-2px);
    }
    
    .mobile-menu {
        display: none;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
        position: relative;
    }
    
    /* Center logo on mobile */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }
    
    .logo img {
        height: 45px !important;
    }
    
    .logo-text {
        font-size: 1.6rem !important;
    }
    
    /* Position hamburger on the right */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.4rem;
        border-radius: 6px;
        background: rgba(0, 102, 204, 0.1);
        border: 1px solid rgba(0, 102, 204, 0.2);
        transition: all 0.3s ease;
        margin-left: auto;
        z-index: 1000;
    }
    
    .mobile-menu span {
        width: 18px;
        height: 2px;
        background: #0066cc;
        margin: 2px 0;
        transition: 0.3s;
        border-radius: 1px;
    }
    
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-3px, 3px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-3px, -3px);
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(248, 250, 252, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 0.5rem 0;
        margin: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        width: 100vw;
        border-top: 1px solid rgba(0, 102, 204, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        color: #334155;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        text-align: left;
        width: 100%;
        background: transparent;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(0, 102, 204, 0.1);
        color: #0066cc;
        padding-left: 2rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1e293b;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #0066cc, #004499, #1e293b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: #475569;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #0066cc, #004499);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px rgba(0, 102, 204, 0.3); }
    to { text-shadow: 0 0 40px rgba(0, 102, 204, 0.6); }
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #0066cc, #004499);
    border-radius: 2px;
}

/* Services */
.services {
    background: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #0066cc;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Inventory */
.inventory {
    background: rgba(241, 245, 249, 0.9);
}

.inventory-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 1rem 2rem;
    border: 2px solid #0066cc;
    background: transparent;
    color: #0066cc;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #0066cc;
    color: white;
}

.tab-button:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
}

.inventory-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-dropdown {
    position: relative;
    display: inline-block;
}

.filter-select {
    padding: 0.8rem 2rem 0.8rem 1rem;
    border: 2px solid #0066cc;
    background: white;
    color: #0066cc;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    min-width: 200px;
    font-size: 1rem;
}

.filter-select:hover {
    background: rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

.filter-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

.filter-dropdown::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #0066cc;
    pointer-events: none;
    font-size: 0.8rem;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.inventory-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.inventory-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #0066cc, #004499);
}

.inventory-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}


.inventory-item.gaming-desktop:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.item-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

.item-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0066cc;
    background: rgba(0, 102, 204, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.item-specs {
    list-style: none;
    margin-bottom: 1rem;
}

.item-specs li {
    padding: 0.3rem 0;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.item-specs li::before {
    content: '•';
    color: #0066cc;
    margin-right: 0.5rem;
    font-weight: bold;
}

.item-stock {
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.5rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Contact */
.contact {
    background: rgba(248, 250, 252, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.contact-info {
    color: #1e293b;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
    background: rgba(0, 102, 204, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.5rem;
    color: #0066cc;
    margin-right: 1rem;
    width: 40px;
}

.hours {
    background: rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.hours h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #475569;
}

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

/* Google Maps Embed */
.map-container {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 15px;
}

/* Download Section */
.download-section {
    padding: 2rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.download-image {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border: 2px dashed #0066cc;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
    transition: left 0.5s ease;
}

.download-image:hover::before {
    left: 100%;
}

.download-image:hover {
    transform: translateY(-5px);
    border-color: #004499;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.download-icon {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.download-image:hover .download-icon {
    transform: scale(1.1);
    color: #004499;
}

.download-text {
    color: #64748b;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.download-image:hover .download-text {
    color: #475569;
}

/* Footer */
footer {
    background: rgba(30, 41, 59, 0.95);
    color: #e2e8f0;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .cta-buttons .btn-secondary:last-child {
        display: none;
    }

    .download-section {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .inventory-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .filter-dropdown {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .filter-select {
        width: 100%;
    }

    .map-container iframe {
        height: 250px;
    }

    .item-price-container {
        align-items: center;
    }
}