/* NetSweepX.css - Synchronized with Antigravity Design System */

:root {
    --primary-gradient: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--primary-gradient);
    color: white;
    padding: 3rem 0;
    border-radius: 0 0 24px 24px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.glass-header {
    background: var(--card-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--text-color) !important;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--heading-color, var(--text-color));
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.6rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    margin: 1.8rem 0 1rem;
    color: var(--main-color, #007bff);
    font-weight: 600;
}

p {
    margin-bottom: 1.4rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

a {
    color: var(--main-color, #007bff);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.container {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

code {
    background-color: var(--bg-color);
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.95em;
    color: var(--main-color);
    border: 1px solid var(--border-color);
}

pre {
    background-color: #1e1e1e;
    color: #d4d4d4;
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border-left: 5px solid var(--main-color);
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

ul, ol {
    margin: 1.2rem 0 1.2rem 2.5rem;
}

li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

blockquote {
    background-color: var(--bg-color);
    border-left: 5px solid var(--main-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 12px 12px 0;
}

.warning {
    background-color: rgba(255, 71, 71, 0.1);
    border-left: 5px solid #ff4747;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-card {
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card h3 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 16px;
    margin: 2.5rem 0;
    border: 1px solid var(--border-color);
}

.toc h2 {
    margin-top: 0;
    font-size: 1.5rem;
    border-bottom: none;
}

.toc ul {
    list-style-type: none;
    margin-left: 0;
}

.toc li a {
    display: block;
    padding: 8px 0;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.8;
}

.toc li a:hover {
    color: var(--main-color);
    opacity: 1;
    transform: translateX(5px);
}

footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
    color: var(--text-color);
    opacity: 0.6;
    font-size: 1rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
    .container { padding: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
}

/* Social Media Icons */
.social-icons-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.social-icons a i {
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover i {
    transform: scale(1.2) rotate(5deg);
}