/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --electric-blue: #3B82F6;
    --divine-gold: #F59E0B;
    --midnight-black: #0F172A;
    --marble-gray: #1E293B;
    --deep-shadow: #020617;
    --olympus-white: #F8FAFC;
    --success-green: #10B981;
    --warning-gold: #FBBF24;
    --error-red: #EF4444;
    --info-blue: #3B82F6;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--midnight-black);
    color: var(--olympus-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.light {
    background: #F8FAFC;
    color: #0F172A;
}

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

/* Navbar */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--electric-blue), var(--divine-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--olympus-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--divine-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--divine-gold);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.theme-toggle {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid var(--electric-blue);
    color: var(--olympus-white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: rgba(59, 130, 246, 0.4);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
    z-index: -1;
}

.lightning-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent 70%);
    animation: pulse 4s infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(90deg, var(--electric-blue), var(--divine-gold), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 3rem;
}

.server-ips {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.ip-box {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 300px;
}

.ip-label {
    display: block;
    font-size: 0.8rem;
    color: var(--divine-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.ip-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ip-text {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--electric-blue);
}

.copy-btn {
    background: var(--electric-blue);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: var(--divine-gold);
    transform: translateY(-2px);
}

.cta-btn {
    background: linear-gradient(90deg, var(--electric-blue), var(--divine-gold));
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--marble-gray);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--divine-gold);
}

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

.feature-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--divine-gold);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--midnight-black);
}

.stat-box {
    text-align: center;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--divine-gold);
    font-family: 'Cinzel', serif;
}

.stat-label {
    color: rgba(248, 250, 252, 0.7);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--deep-shadow);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Cinzel', serif;
    color: var(--divine-gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(248, 250, 252, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--divine-gold);
}

.discord-btn {
    display: inline-block;
    background: #5865F2;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

.discord-btn.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    color: rgba(248, 250, 252, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--marble-gray);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-title {
    font-family: 'Cinzel', serif;
    color: var(--divine-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: rgba(248, 250, 252, 0.5);
    transition: color 0.3s;
}

.close:hover {
    color: var(--divine-gold);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step label,
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--divine-gold);
    font-weight: 600;
}

.form-step input,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: var(--olympus-white);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}

.form-step input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--divine-gold);
}

.discord-auth-btn {
    width: 100%;
    background: #5865F2;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.discord-auth-btn:hover {
    background: #4752C4;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--electric-blue);
    color: white;
    flex: 1;
}

.btn-primary:hover {
    background: var(--divine-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(59, 130, 246, 0.2);
    color: var(--olympus-white);
    border: 1px solid var(--electric-blue);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.4);
}

/* Page Header */
.page-header {
    background: var(--marble-gray);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    background: linear-gradient(90deg, var(--electric-blue), var(--divine-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: rgba(248, 250, 252, 0.7);
    font-size: 1.1rem;
}

.section-subtitle {
    font-family: 'Cinzel', serif;
    color: var(--divine-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Shop Styles */
.giftcard-section {
    padding: 2rem 0;
    background: var(--marble-gray);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.giftcard-input-box {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.giftcard-input-box input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: var(--olympus-white);
}

.giftcard-input-box button {
    background: var(--divine-gold);
    color: var(--midnight-black);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.giftcard-input-box button:hover {
    background: var(--electric-blue);
    color: white;
}

.shop-section {
    padding: 3rem 0;
}

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

.tab-btn {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--olympus-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
}

.filter-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-box input,
.filter-box select {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: var(--olympus-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--divine-gold);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.product-name {
    font-family: 'Cinzel', serif;
    color: var(--electric-blue);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: rgba(248, 250, 252, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    color: var(--divine-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.buy-btn {
    width: 100%;
    background: var(--electric-blue);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.buy-btn:hover {
    background: var(--divine-gold);
    transform: translateY(-2px);
}

.last-purchases {
    padding: 2rem 0;
    background: var(--marble-gray);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.purchases-ticker {
    overflow: hidden;
    white-space: nowrap;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 6px;
    padding: 1rem;
}

.purchase-item {
    display: inline-block;
    padding: 0 2rem;
    color: rgba(248, 250, 252, 0.7);
}

/* Content Section */
.content-section {
    padding: 3rem 0;
}

.info-box {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.position-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.position-card h3 {
    color: var(--divine-gold);
    margin-bottom: 0.5rem;
}

.form-container {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

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

/* Admin Styles */
.admin-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-stats {
    padding: 2rem 0;
}

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

.stat-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.stat-card h3 {
    color: var(--divine-gold);
    margin-bottom: 1rem;
}

.stat-value {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--electric-blue);
    font-weight: 700;
}

.ai-section {
    padding: 2rem 0;
}

.ai-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.ai-card h2 {
    font-family: 'Cinzel', serif;
    color: var(--divine-gold);
    margin-bottom: 1rem;
}

.ai-input-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 1.5rem auto;
}

.ai-input-group input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: var(--olympus-white);
}

.ai-animation {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-animation.active {
    animation: lightning 0.6s;
}

@keyframes lightning {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent); }
}

.giftcard-management {
    padding: 2rem 0;
}

.management-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.management-header h2 {
    font-family: 'Cinzel', serif;
    color: var(--divine-gold);
}

.table-container {
    overflow-x: auto;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.giftcard-table {
    width: 100%;
    border-collapse: collapse;
}

.giftcard-table th {
    background: rgba(59, 130, 246, 0.2);
    color: var(--divine-gold);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.giftcard-table td {
    padding: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.activo {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-green);
}

.status-badge.usado {
    background: rgba(156, 163, 175, 0.2);
    color: #9CA3AF;
}

.status-badge.expirado {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error-red);
}

.action-btn {
    background: transparent;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--olympus-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.action-btn:hover {
    background: var(--electric-blue);
}

.action-btn.delete {
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--error-red);
}

.action-btn.delete:hover {
    background: var(--error-red);
    color: white;
}

.activity-log {
    padding: 2rem 0;
}

.log-container {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.log-item {
    padding: 0.75rem;
    border-left: 3px solid var(--electric-blue);
    margin-bottom: 0.5rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 4px;
}

.log-time {
    color: rgba(248, 250, 252, 0.5);
    font-size: 0.85rem;
}

.code-input-group {
    display: flex;
    gap: 0.5rem;
}

.code-input-group input {
    flex: 1;
}

.code-input-group button {
    background: var(--divine-gold);
    color: var(--midnight-black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.code-input-group button:hover {
    background: var(--electric-blue);
    color: white;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid var(--electric-blue);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: var(--olympus-white);
    transform: translateX(400px);
    transition: transform 0.3s;
    z-index: 3000;
}

.toast.show {
    transform: translateX(0);
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--olympus-white);
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--divine-gold);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: rgba(248, 250, 252, 0.8);
}

.faq-item.active .faq-answer {
    display: block;
}

/* About & Contact Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--divine-gold);
    margin: 2rem 0 1rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.founder-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.founder-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

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

.contact-info,
.contact-methods {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.contact-info h2,
.contact-methods h3 {
    font-family: 'Cinzel', serif;
    color: var(--divine-gold);
    margin-bottom: 1rem;
}

.method-item {
    margin-bottom: 1.5rem;
}

.method-item h4 {
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--divine-gold);
    margin: 2rem 0 1rem;
}

.policy-content ul {
    margin-left: 2rem;
    color: rgba(248, 250, 252, 0.8);
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .server-ips {
        flex-direction: column;
    }
    
    .category-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}
