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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'SF Pro Display', system-ui, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8fafc;
    min-height: 100vh;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5b21b6;
    text-decoration: none;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.site-logo:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #111827;
}

.nav-link.active {
    color: #7c3aed;
}

.site-footer {
    background: #1e1b4b;
    color: #a5b4fc;
    margin-top: 64px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 32px;
}

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

.footer-section h4 {
    color: #e0e7ff;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #a5b4fc;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e0e7ff;
}

.footer-bottom {
    border-top: 1px solid #3730a3;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #8b5cf6;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #8b5cf6;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

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

.header {
    background: #ffffff;
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
    border-radius: 12px 12px 0 0;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}

.header p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 24px;
    font-weight: 400;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.badge,
.badge.default {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #065f46;
    border: 1px solid #10b981;
}

.badge.regulation {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #5b21b6;
    border: 1px solid #7c3aed;
}

.content-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease;
}

.content-section:hover {
    box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.1), 0 4px 6px -2px rgba(124, 58, 237, 0.05);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    position: relative;
    padding-left: 16px;
    letter-spacing: -0.025em;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 3px;
    height: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
}

.intro-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #e0e7ff;
    border: 1px solid #3730a3;
}

.intro-section .section-title {
    color: #e0e7ff;
}

.intro-section .section-title::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.risk-highlight {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

.risk-highlight strong {
    color: #7f1d1d;
}

.regulation-highlight {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 1px solid #c4b5fd;
    color: #374151;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

.regulation-highlight strong {
    color: #5b21b6;
}

.step {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid #10b981;
    padding: 24px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.step:hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left-color: #059669;
}

.step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 700;
    margin-right: 16px;
    font-size: 0.875rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.code-block {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #e0e7ff;
    padding: 16px;
    border-radius: 8px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    margin: 12px 0;
    overflow-x: auto;
    border: 1px solid #3730a3;
    font-size: 0.875rem;
}

.architecture-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #c7d2fe;
}

.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.component-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.component-card:hover {
    box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.1), 0 2px 4px -1px rgba(124, 58, 237, 0.06);
    transform: translateY(-2px);
    border-color: #c4b5fd;
}

.component-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #5b21b6;
    font-weight: 600;
}

.component-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

.best-practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.practice-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.practice-card:hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    transform: translateY(-2px);
    border-color: #a7f3d0;
}

.practice-card h4 {
    color: #065f46;
    margin-bottom: 12px;
    font-weight: 600;
}

.practice-card ul {
    margin-left: 16px;
    color: #374151;
}

.practice-card li {
    margin-bottom: 6px;
    font-size: 0.875rem;
}

.warning-card {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fde68a;
}

.warning-card:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.warning-card h4 {
    color: #92400e;
}

.next-steps {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    color: #ecfdf5;
    border: 1px solid #059669;
}

.next-steps .section-title {
    color: #ecfdf5;
}

.next-steps .section-title::before {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.action-button {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin: 8px 8px 8px 0;
    transition: all 0.3s ease;
    border: 1px solid #059669;
    font-weight: 500;
    font-size: 0.875rem;
}

.action-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.cyera-highlight {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #e0e7ff;
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    text-align: center;
    border: 1px solid #3730a3;
    box-shadow: 0 10px 25px -5px rgba(30, 27, 75, 0.25);
}

.cyera-highlight h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #e0e7ff;
    font-weight: 600;
}

.cyera-highlight p {
    color: #c7d2fe;
    line-height: 1.6;
}

.cyera-highlight a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.cyera-highlight a:hover {
    color: #34d399;
    border-bottom-color: #10b981;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.prerequisites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.prereq-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.prereq-card h4 {
    color: #7c3aed;
    margin-bottom: 12px;
    font-weight: 600;
}

.prereq-card ul {
    margin-left: 16px;
    color: #374151;
}

.prereq-card li {
    margin-bottom: 6px;
    font-size: 0.875rem;
}

.flow-diagram {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px 24px;
    border-radius: 16px;
    margin: 32px 0;
    text-align: center;
    border: 1px solid #c7d2fe;
    position: relative;
    overflow: hidden;
}

.flow-diagram h4 {
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #111827;
}

.flow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    border: 2px solid #e2e8f0;
    color: #5b21b6;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.flow-step:hover {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-color: #7c3aed;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.25);
    color: #4c1d95;
}

.flow-step:hover::before {
    transform: scaleX(1);
}

.flow-step:nth-child(odd):hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #10b981;
    color: #065f46;
}

.flow-step.step-1 { animation-delay: 0.1s; }
.flow-step.step-2 { animation-delay: 0.2s; }
.flow-step.step-3 { animation-delay: 0.3s; }
.flow-step.step-4 { animation-delay: 0.4s; }

.flow-step.animate-in {
    animation: stepSlideIn 0.6s ease-out forwards;
}

@keyframes stepSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.flow-arrow {
    font-size: 1.5rem;
    margin: 0 8px;
    color: #10b981;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.flow-arrow:hover {
    transform: scale(1.2) rotate(90deg);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

/* Add step numbers */
.flow-step::after {
    display: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .flow-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    .flow-step {
        min-width: 250px;
        text-align: center;
    }
}

.references-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.references-section li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.references-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #10b981;
}

.references-section a {
    color: #5b21b6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.references-section a:hover {
    color: #7c3aed;
    text-decoration: underline;
}

/* Available Guides Section */
.guides-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

/* Guide Card Styling */
.guide-link-title {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.guide-link-title:hover {
    color: #5b21b6;
}

.guide-tags-container {
    margin-top: 16px;
}

.guide-tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px; /* Add this line for vertical spacing when wrapping */
    transition: all 0.3s ease;
}

.guide-tag.risk {

    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #065f46;
    border: 1px solid #10b981;
}

.guide-tag.regulation {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #5b21b6;
    border: 1px solid #7c3aed;
}

.guide-tag.coming-soon {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #64748b;
    border: 1px solid #94a3b8;
    cursor: not-allowed;
}

/* Coming Soon Card States */
.coming-soon-card {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.coming-soon-card:hover {
    opacity: 0.8;
}

.coming-soon-title {
    color: #6b7280 !important;
}

.coming-soon-text {
    color: #9ca3af !important;
}

.section-description {
    margin-bottom: 24px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.guide-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
}

.guide-card:hover {
    box-shadow: 0 8px 25px -5px rgba(124, 58, 237, 0.15), 0 4px 6px -2px rgba(124, 58, 237, 0.05);
    transform: translateY(-4px);
    border-color: #c4b5fd;
}

.guide-card:hover::before {
    background: linear-gradient(135deg, #10b981 0%, #7c3aed 100%);
}

.guide-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #5b21b6 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.guide-difficulty {
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-difficulty.beginner {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #065f46;
    border: 1px solid #10b981;
}

.guide-difficulty.intermediate {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #5b21b6;
    border: 1px solid #7c3aed;
}

.guide-difficulty.advanced {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #1e293b;
    border: 1px solid #475569;
}

.guide-time {
    color: #6b7280;
    font-weight: 500;
}

.guide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.guide-tag {
    padding: 2px 8px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #6b21a8;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #c4b5fd;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid #6d28d9;
}

.guide-link:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    border-color: #047857;
}

.guide-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.guide-link:hover::after {
    transform: translateX(2px);
}

.guides-header {
    text-align: center;
    margin-bottom: 32px;
}

.guides-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #5b21b6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.guides-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.featured-guide {
    border: 2px solid #7c3aed;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.featured-guide::before {
    background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
    height: 6px;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .container {
        padding: 16px;
    }
    
    .content-section {
        padding: 24px;
    }
    
    .header {
        padding: 32px;
    }

    .site-nav {
        gap: 16px;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .guide-card {
        padding: 20px;
    }
}

/* Platform Page Specific Styles - Add to main.css */

/* Platform Hero Section */
.platform-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
}

.platform-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
    border-radius: 12px 12px 0 0;
}

.platform-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.platform-hero p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 24px;
}

.platform-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 16px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 700;
}

/* Platform Stats */
.platform-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.1), 0 2px 4px -1px rgba(124, 58, 237, 0.06);
    transform: translateY(-2px);
    border-color: #c4b5fd;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Data Concerns Grid */
.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.concern-card {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #fca5a5;
    transition: all 0.3s ease;
    position: relative;
}

.concern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 12px 12px 0 0;
}

.concern-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.1), 0 2px 4px -1px rgba(220, 38, 38, 0.06);
}

.concern-card h4 {
    color: #991b1b;
    margin-bottom: 12px;
    font-weight: 600;
}

.concern-card p {
    color: #7f1d1d;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.concern-card ul {
    margin-left: 16px;
    color: #7f1d1d;
}

.concern-card li {
    margin-bottom: 6px;
    font-size: 0.875rem;
}

/* Guide Filter Buttons */
.guide-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-button {
    padding: 8px 16px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-button:hover,
.filter-button.active {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-color: #7c3aed;
    color: #5b21b6;
}

/* Platform-specific guide count */
.guides-count {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 16px;
}

* Tag link styles - PURPLE/GREEN THEME */
.guide-link-title {
    color: #111827;
    text-decoration: none;
}

.guide-link-title:hover {
    color: #5b21b6;
}

.guide-tags-container {
    margin-top: 16px;
}

.guide-tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.guide-tag.risk {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #065f46;
    border: 1px solid #10b981;
}

.guide-tag.risk:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    transform: translateY(-1px);
}

.guide-tag.regulation {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #5b21b6;
    border: 1px solid #7c3aed;
}

.guide-tag.regulation:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    transform: translateY(-1px);
}

.guide-tag.coming-soon {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #64748b;
    border: 1px solid #94a3b8;
    cursor: not-allowed;
}

.guide-tag.platform {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
    border: 1px solid #ef4444;
}
.guide-tag.platform:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    transform: translateY(-1px);
}

.coming-soon-card {
    opacity: 0.6;
}

.coming-soon-title {
    color: #6b7280;
}

.coming-soon-text {
    color: #9ca3af;
}

.guide-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: #e0e7ff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-top: 1px solid #3730a3;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    flex: 1;
    min-width: 300px;
}

.cookie-banner a {
    color: #10b981;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #34d399;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 1px solid #059669;
}

.accept-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
}

.reject-btn {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: 1px solid #4b5563;
}

.reject-btn:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-1px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* REPLACE the existing @media (max-width: 768px) block with this: */

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .container {
        padding: 16px;
    }
    
    .content-section {
        padding: 24px;
    }
    
    .header {
        padding: 32px;
    }

    /* FIXED MOBILE HEADER STYLES */
    .site-header-content {
        flex-direction: column;
        height: auto;
        padding: 16px 20px;
        align-items: center;
    }
    
    .site-logo {
        margin-bottom: 12px;
        font-size: 1.25rem;
    }
    
    .site-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
        max-width: 400px;
    }
    
    .nav-link {
        text-align: center;
        padding: 8px 4px;
        font-size: 0.75rem;
        background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
        border: 1px solid #e5e7eb;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
        border-color: #7c3aed;
        color: #5b21b6;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .guide-card {
        padding: 20px;
    }
    
    /* Platform page mobile styles */
    .platform-hero h1 {
        font-size: 2rem;
    }
    
    .platform-hero p {
        font-size: 1rem;
    }
    
    .platform-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .concerns-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-filters {
        justify-content: center;
    }
	.best-practices-grid {
	        grid-template-columns: 1fr;
	        gap: 16px;
	        margin: 16px 0;
	    }
    
	    .practice-card {
	        padding: 20px;
	    }
		.flow-step {
		        min-width: 200px;
		        max-width: 280px;
		        margin: 0 auto;
		    }
	}
}