/* Import Urbanist Font */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800&display=swap');

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00FFFF;
    --accent-color: #FF00FF;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
}

h1 {
    font-size: 3rem !important;
    margin-bottom: 2rem !important;
}

h2 {
    font-size: 2.5rem !important;
    margin-top: 3rem !important;
    color: var(--primary-color) !important;
}

h3 {
    font-size: 2rem !important;
    margin-top: 2rem !important;
    color: var(--text-color) !important;
}

p {
    margin-bottom: 1.5rem;
    font-size: 18px;
    color: var(--text-secondary);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-color);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-brand img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none !important;
    gap: 2rem;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu::before,
.nav-menu::after {
    display: none !important;
}

.nav-menu li {
    list-style: none !important;
}

.nav-menu li::before,
.nav-menu li::after,
.nav-menu li::marker {
    display: none !important;
    content: none !important;
}

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

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 8rem 2rem 4rem !important;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%) !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(10, 10, 10, 0.7) !important;
    z-index: 1 !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.hero h1 {
    color: var(--primary-color) !important;
    font-size: 4rem !important;
    margin-bottom: 2rem !important;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5) !important;
}

.hero p {
    font-size: 1.4rem !important;
    color: var(--text-color) !important;
    margin-bottom: 2rem !important;
    line-height: 1.8 !important;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards */
.card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    min-width: 600px;
}

thead {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
}

th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent-color);
}

td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: var(--text-secondary);
}

tbody tr:hover {
    background: rgba(0, 255, 255, 0.05);
}

/* Lists */
ul, ol {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

ul li, ol li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    list-style: none !important;
}

ul li::before {
    content: '\25B6' !important;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
}

ul li::marker {
    display: none !important;
}

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li::before {
    content: counter(item) '. ' !important;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

ol li::marker {
    display: none !important;
}

/* Images */
picture {
    display: block;
    margin: 2rem 0;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.2);
}

/* Icons */
.icon {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 3rem 2rem 2rem;
    border-top: 2px solid var(--primary-color);
    margin-top: 5rem;
}

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

footer h3 {
    color: var(--primary-color) !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.5rem !important;
}

footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

footer ul::before,
footer ul::after {
    display: none !important;
}

footer li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0.8rem !important;
}

footer li::before,
footer li::after,
footer li::marker {
    display: none !important;
    content: none !important;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary) !important;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary) !important;
}

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

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .nav-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem !important;
    }

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

    section {
        padding: 3rem 1.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    .hero h1 {
        font-size: 2rem !important;
    }

    .nav-brand {
        font-size: 1.4rem;
    }

    .nav-brand img {
        width: 30px;
        height: 30px;
    }
}
