/* Import the same font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7300ff;
}

.cart-icon {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Support Hero Section */
.support-hero {
    padding: 180px 20px 100px;
    text-align: center;
    background: linear-gradient(to bottom, #0a0a0a, #000);
}

.support-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -1px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #7300ff;
    background: rgba(255, 255, 255, 0.08);
}

.search-button {
    padding: 16px 32px;
    background: #7300ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-button:hover {
    background: #8419ff;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
}

.support-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: #7300ff;
    background: rgba(255, 255, 255, 0.05);
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-card p {
    color: #888;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.support-link {
    display: inline-block;
    padding: 12px 24px;
    background: #7300ff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
}

.support-link:hover {
    background: #8419ff;
}

/* FAQ Section */
.faq-section {
    background: #0a0a0a;
    padding: 80px 5%;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #7300ff;
    background: rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 5%;
    background: #000;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: #7300ff;
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-card p {
    color: #888;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    line-height: 2;
}

.footer-section a:hover {
    color: #7300ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 2.5rem;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .support-grid,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .support-card,
    .contact-card {
        padding: 24px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}