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

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #e0e6ed;
    background: #0a0a0f;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Header */
header {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(120, 119, 198, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7877c6, transparent);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

     

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #e0e6ed;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(120, 119, 198, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover {
    color: #7877c6;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(120, 119, 198, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 50%, #ff77c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.hero a {
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(120, 119, 198, 0.3);
    border: 1px solid rgba(120, 119, 198, 0.2);
    position: relative;
    z-index: 2;
    letter-spacing: 0.02em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(120, 119, 198, 0.4);
    background: linear-gradient(135deg, #8988d7 0%, #ff88d7 100%);
}

/* Features Section */
.features {
    background: rgba(10, 10, 15, 0.6);
    padding: 100px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7877c6, transparent);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(120, 119, 198, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(120, 119, 198, 0.2);
    border-color: rgba(120, 119, 198, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(120, 119, 198, 0.5));
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: #b0b6c3;
    line-height: 1.6;
    font-weight: 400;
}

.feature-card a {
    color: #ffffff;
}
/* Architecture Section */
.architecture {
    background: linear-gradient(135deg, #0a0a0f 0%, #141420 100%);
    color: #e0e6ed;
    padding: 100px 0;
    position: relative;
}

.architecture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7877c6, transparent);
}

.architecture-diagram {
    background: rgba(20, 20, 30, 0.4);
    border: 1px solid rgba(120, 119, 198, 0.2);
    border-radius: 20px;
    padding: 4rem;
    margin: 3rem 0;
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
}

.architecture-diagram::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(120, 119, 198, 0.1);
    border-radius: 16px;
    pointer-events: none;
}

.diagram-box {
    display: inline-block;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.2) 0%, rgba(255, 119, 198, 0.1) 100%);
    border: 1px solid rgba(120, 119, 198, 0.3);
    padding: 1rem 2rem;
    margin: 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.diagram-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(120, 119, 198, 0.2);
}

/* Use Cases Section */
.use-cases {
    background: #08090a;
    padding: 80px 0;
}

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

.use-case-card {
    background: #18191a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.use-case-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Getting Started Section */
.getting-started {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.code-block {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    margin: 1rem 0;
    overflow-x: auto;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffa500;
    margin-bottom: 0.5rem;
}

/* Blog */
.blog {
    padding: 140px 0 100px;
    text-align: center;
    color: #ffffff;
    position: relative;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}

.blog::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(120, 119, 198, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.blog h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 50%, #ff77c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.blog pre {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-align: left;
    background: #000000
}


.blog p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.blog a {
    color: #ffffff;
}

.schedule-table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 3rem;
    border-collapse: separate;
    border-spacing: 0 6px;
    text-align: left;
}

.schedule-table thead tr th {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7877c6;
    padding: 0.5rem 1.4rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(120, 119, 198, 0.25);
}

.schedule-table tbody tr {
    background: rgba(20, 20, 30, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(120, 119, 198, 0.08);
    transition: all 0.25s ease;
}

.schedule-table tbody tr:hover {
    background: rgba(120, 119, 198, 0.12);
    border-color: rgba(120, 119, 198, 0.25);
    transform: translateX(4px);
}

.schedule-table tbody tr td {
    padding: 0.85rem 1.4rem;
    color: #e0e6ed;
    font-size: 1rem;
    font-weight: 400;
}

.schedule-table tbody tr td:first-child {
    border-radius: 10px 0 0 10px;
}

.schedule-table tbody tr td:last-child {
    border-radius: 0 10px 10px 0;
}

.schedule-table .time {
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 0.88rem;
    color: #a8a4e0;
    white-space: nowrap;
    width: 160px;
}

.schedule-table tr.hands-on {
    background: rgba(120, 119, 198, 0.15);
    border-color: rgba(120, 119, 198, 0.2);
}

.schedule-table tr.hands-on td {
    color: #c8c5f0;
}

.schedule-table tr.hands-on .time {
    color: #9d99e0;
}

.schedule-table tr.break {
    background: rgba(255, 119, 198, 0.07);
    border-color: rgba(255, 119, 198, 0.12);
}

.schedule-table tr.break td {
    color: #c8a0b8;
    font-style: italic;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .features-grid,
    .use-case-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.2; 
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.4; 
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}
