:root {
    --primary: #00f0ff;
    --secondary: #7b2dff;
    --dark: #0a0a1a;
    --light: rgba(255, 255, 255, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: var(--dark);
    color: var(--light);
    min-height: 100vh;
    padding: 2rem;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(123, 45, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.1) 0%, transparent 40%);
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding: 0 1rem;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
}

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

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.main-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.audit {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audit:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.audit h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.audit p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

footer {
    text-align: center;
    margin-top: 3rem;
    opacity: 0.6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .buttons {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .main-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
/* Audits Page Custom Styles */
.audit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.audit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.audit-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.audit-card p {
    opacity: 0.85;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}
/* Blog Page Styles */
.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
  }
  
  .blog-card h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }
  
  .blog-card p {
    opacity: 0.85;
    margin-bottom: 1.2rem;
    line-height: 1.6;
  }
pre, code {
  background-color: #f9f9f9; /* Light background so code is always visible */
  color: #2d2d2d;            /* Dark gray text for good visibility */
  font-family: 'Courier New', monospace;
  padding: 10px;
  border-radius: 6px;
  display: block;
  overflow-x: auto;
}


