:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --danger-color: #ef4444;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--primary-color);
}

.logo .highlight {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    color: #60a5fa;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(96, 165, 250, 0); }
    100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Breach Scan Module */
.breach-scan-container {
    width: 100%;
    margin: 0 auto;
}

.scan-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.8));
    backdrop-filter: blur(20px);
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(59, 130, 246, 0.1) inset;
    position: relative;
}

.scan-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.scan-box:focus-within::before {
    opacity: 1;
}

.input-group {
    display: flex;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) inset;
    position: relative;
    z-index: 1;
}

.input-group:focus-within {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) inset, 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(15, 23, 42, 0.95);
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    color: var(--text-secondary);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    outline: none;
    padding: 16px 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.input-group input::placeholder {
    color: rgba(148, 163, 184, 0.6);
    font-weight: 400;
}

.btn-scan {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 0 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.3) inset;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-scan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-scan:hover::before {
    width: 300px;
    height: 300px;
}

.btn-scan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.4) inset;
}

.btn-scan span,
.btn-scan svg {
    position: relative;
    z-index: 1;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-item svg {
    color: var(--secondary-color);
}

/* Background Glows */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    background: var(--primary-color);
    top: -200px;
    left: -100px;
}

.glow-2 {
    background: #a78bfa;
    bottom: -200px;
    right: -100px;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-secondary);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding-bottom: 8rem;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.cta-features {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.cta-features svg {
    color: var(--secondary-color);
}

.price-block {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
}

.period {
    color: var(--text-secondary);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
    display: inline-block;
    text-decoration: none;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-large:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 0 2rem;
    background: #020617;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.nav-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.nav-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.nav-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

/* Scan Results */
.scan-results {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    animation: slideUp 0.4s ease;
}

.result-safe {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.result-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.hidden {
    display: none;
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.98); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links {
        display: none;
    }
}

/* Professional Scan Results */
.result-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}
.result-card.danger {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}
.result-card.safe {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
}
.result-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.danger .result-header {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
}
.safe .result-header {
    background: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
}
.result-details {
    padding: 1.5rem;
}
.highlight-red {
    color: #fca5a5;
}
.breach-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.breach-item {
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--danger-color);
}
.breach-name {
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.breach-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.breach-desc {
    font-size: 0.9rem;
    color: #cbd5e1;
}
.cta-box-small {
    background: rgba(15, 23, 42, 0.6);
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-box-small p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}
.cta-box-small .sub-text {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.btn-danger {
    display: block;
    width: 100%;
    background: var(--danger-color);
    color: white;
    text-align: center;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}
.btn-danger:hover {
    background: #dc2626;
}
.btn-primary {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}
.btn-primary:hover {
    background: var(--primary-dark);
}
.safe-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
/* Features Page Styles */
.page-header {
    padding: 6rem 0 4rem;
    text-align: center;
}
.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}
.features-detail {
    padding: 4rem 0;
}
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}
.feature-row.reverse {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
}
.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.feature-icon-large {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.feature-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.feature-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.feature-list {
    list-style: none;
}
.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e2e8f0;
}
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}
/* Mockups */
.ui-mockup {
    width: 100%;
    max-width: 450px;
    height: 300px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.mockup-header {
    background: rgba(0,0,0,0.2);
    padding: 12px;
    display: flex;
    gap: 6px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.mockup-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.mock-row {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}
.mock-row.short {
    width: 60%;
}
.mock-alert {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    border: 1px solid rgba(239, 68, 68, 0.4);
}
.mock-shield {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    border: 1px solid rgba(16, 185, 129, 0.4);
}
@media (max-width: 768px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-bottom: 4rem;
    }
    .feature-list li {
        text-align: left;
        display: inline-block;
    }
}


.lang-switch {
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.lang-switch:hover {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

.safe-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.pulse-dot-green {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* --- NEW: Super Modern Radar Animation --- */
.scan-overlay {
    text-align: center;
    padding: 3rem 0;
}

.radar-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.radar-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.radar-sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(37, 99, 235, 0.8) 100%);
    animation: radar-spin 1.5s linear infinite;
    mask: radial-gradient(transparent 60%, black 61%);
    -webkit-mask: radial-gradient(transparent 60%, black 61%);
}

.radar-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    top: 20%;
    left: 70%;
    box-shadow: 0 0 10px #60a5fa;
    animation: blink 1s infinite;
    opacity: 0;
}

@keyframes radar-spin {
    to { transform: rotate(360deg); }
}

@keyframes blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.scan-status-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- NEW: Premium Result Card (SecurePass360 Branded) --- */
.premium-result-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 0 100px rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.premium-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15), transparent);
    pointer-events: none;
    z-index: 0;
}

.premium-header {
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.5) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.brand-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-tag svg {
    color: var(--primary-color);
}

.risk-badge {
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-high {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(220, 38, 38, 0.2) 100%);
    color: #ff6b6b;
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3), 0 0 40px rgba(239, 68, 68, 0.1);
}

.risk-safe {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.premium-body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.breach-count-large {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, #f87171, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breach-label {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.data-exposed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.data-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.data-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.data-value {
    font-weight: 600;
    color: #e2e8f0;
}

.premium-footer {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 41, 59, 0.8) 100%);
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-msg {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.btn-premium-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.btn-premium-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
    background: var(--primary-dark);
}

/* Fix overflow for long emails in data grid */
.data-value {
    font-weight: 600;
    color: #e2e8f0;
    word-break: break-all; /* Ensure long emails break */
    line-height: 1.3;
}

/* Add subtle glow to data items */
.data-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.data-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Improve typography for the breach count */
.breach-count-large {
    font-size: 3.5rem; /* Reduced from 5rem */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #f87171; /* Solid color instead of gradient for better readability */
    /* Removed text-shadow for cleaner look */
}

/* Make the card look even more premium */
.premium-result-card {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1200px; /* Increased width for better spacing */
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .premium-result-card {
        border-radius: 12px;
    }
    .premium-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .premium-body {
        padding: 1.5rem;
    }
    .breach-count-large {
        font-size: 3rem;
    }
    .data-exposed-grid {
        grid-template-columns: 1fr;
    }
}

/* Results Hero Section */
.results-hero {
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    position: relative;
    overflow: hidden;
}

.results-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.1), transparent 60%);
    pointer-events: none;
}

.hero-breach-count {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.breach-count-display {
    font-size: 9rem;
    font-weight: 900;
    line-height: 0.9;
    background: linear-gradient(180deg, #ff6b6b 0%, #ee5a6f 50%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(239, 68, 68, 0.5));
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    animation: pulseGlow 3s ease-in-out infinite, countAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pulseGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 40px rgba(239, 68, 68, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 60px rgba(239, 68, 68, 0.7));
        transform: scale(1.02);
    }
}

@keyframes countAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.breach-count-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.hero-stat {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.5));
    padding: 2rem 1.8rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.05) inset;
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-stat:hover::before {
    left: 100%;
}

.hero-stat:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25), 0 0 0 1px rgba(59, 130, 246, 0.1) inset;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.hero-stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    word-break: break-all;
    line-height: 1.4;
}

.hero-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-hero-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    padding: 1.3rem 3rem;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.3) inset;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.btn-hero-action:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.4) inset;
}

.btn-hero-action svg {
    width: 22px;
    height: 22px;
}

.hero-warning {
    color: #fca5a5;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Breaches Section */
.breaches-section {
    padding: 3rem;
}

.breaches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.breaches-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #f8fafc;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breaches-title svg {
    color: #60a5fa;
    filter: drop-shadow(0 2px 6px rgba(96, 165, 250, 0.4));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.breaches-count-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.2));
    color: #93c5fd;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    letter-spacing: 0.5px;
}

/* Section Divider */
.section-divider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.15);
}

.incidents-title {
    color: #f1f5f9;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.incidents-count {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Breach Cards Grid */
.breach-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    max-height: 550px;
    overflow-y: auto;
    padding-right: 15px;
}

.breach-cards-grid::-webkit-scrollbar {
    width: 10px;
}
.breach-cards-grid::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}
.breach-cards-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.5), rgba(59, 130, 246, 0.7));
    border-radius: 10px;
    border: 2px solid rgba(0,0,0,0.3);
}
.breach-cards-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.7), rgba(59, 130, 246, 0.9));
}

/* Individual Breach Card */
.breach-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    animation: cardSlideIn 0.6s ease-out backwards;
    backdrop-filter: blur(10px);
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.breach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f97316, #ef4444);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.breach-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.breach-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.4), 0 0 0 1px rgba(239, 68, 68, 0.2) inset;
}

.breach-card:hover::before {
    opacity: 1;
}

.breach-card:hover::after {
    width: 500px;
    height: 500px;
}

/* Breach Card Header */
.breach-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.breach-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(220, 38, 38, 0.35));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3), 0 0 0 1px rgba(255, 107, 107, 0.1) inset;
    transition: all 0.3s ease;
    position: relative;
}

.breach-card:hover .breach-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4), 0 0 0 1px rgba(255, 107, 107, 0.2) inset;
}

.breach-icon svg {
    color: #ff6b6b;
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.3));
}

.breach-header-info {
    flex: 1;
    min-width: 0;
}

.breach-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breach-year-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.25), rgba(71, 85, 105, 0.3));
    color: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid rgba(100, 116, 139, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* Breach Card Body */
.breach-card-body {
    margin-bottom: 1rem;
}

.breach-description {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.breach-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.breach-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.08);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.2s ease;
}

.breach-stat-item:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
}

.breach-stat-item svg {
    color: #60a5fa;
    filter: drop-shadow(0 2px 4px rgba(96, 165, 250, 0.3));
}

/* Breach Card Footer */
.breach-card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.breach-tags-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.breach-tag {
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.15), rgba(239, 68, 68, 0.2));
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(248, 113, 113, 0.15);
}

.breach-tag:hover {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.25), rgba(239, 68, 68, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 113, 113, 0.25);
    border-color: rgba(248, 113, 113, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .breach-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 1.5rem;
    }
    
    .breach-count-display {
        font-size: 6rem;
    }
    
    .hero-stats-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .results-hero {
        padding: 2.5rem 2rem;
    }
    
    .breach-count-display {
        font-size: 5rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .breaches-section {
        padding: 2rem 1.5rem;
    }
    
    .breaches-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .breach-cards-grid {
        grid-template-columns: 1fr;
        max-height: 450px;
        gap: 1.25rem;
    }
    
    .breach-card {
        padding: 1.5rem;
    }
    
    .breach-count-display {
        font-size: 4rem;
    }
    
    .breach-count-label {
        font-size: 1rem;
    }
    
    .btn-hero-action {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .premium-content-wrapper {
        grid-template-columns: 1fr;
    }
    .premium-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 2rem;
    }
    .metrics-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .breach-item-compact {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* --- Verification Modal --- */
.verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.verification-card {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    transform: scale(0.95);
    animation: scaleUp 0.3s ease forwards;
}

@keyframes scaleUp {
    to { transform: scale(1); }
}

.verify-shield-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.verify-shield-container:hover {
    transform: scale(1.05);
}

.verify-shield-bg {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    animation: pulse-blue 2s infinite;
}

.verify-shield-icon {
    position: relative;
    z-index: 10;
    color: #60a5fa;
    transition: color 0.3s;
}

.verify-shield-container.verified .verify-shield-icon {
    color: #34d399;
}

.verify-shield-container.verified .verify-shield-bg {
    background: rgba(16, 185, 129, 0.1);
    animation: pulse-green 2s infinite;
}

.verify-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.verify-desc {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.verify-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.verify-btn:hover {
    background: var(--primary-dark);
}

.verify-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.breach-list-web {
    margin-top: 2rem;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.breach-item-web {
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}

.breach-item-web:hover {
    background: rgba(255,255,255,0.05);
}

.breach-header-web {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.breach-name-web {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1rem;
}

.breach-date-web {
    font-size: 0.8rem;
    color: #94a3b8;
    background: rgba(0,0,0,0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

.breach-desc-web {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.breach-classes-web {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breach-class-tag {
    font-size: 0.75rem;
    background: rgba(248, 113, 113, 0.1);
    color: #fca5a5;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

/* Scrollbar for the list */
.breach-list-web::-webkit-scrollbar {
    width: 6px;
}
.breach-list-web::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
}
.breach-list-web::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}
.breach-list-web::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.2);
}


/* View Switcher Controls */
.view-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(15, 23, 42, 0.6);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.view-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.view-btn:hover {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.05);
}
.view-btn.active {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}
/* List View Overrides */
.breach-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.breach-cards-list .breach-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
}
.breach-cards-list .breach-card-header {
    margin-bottom: 0;
    min-width: 200px;
}
.breach-cards-list .breach-card-body {
    margin-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 2rem;
}
.breach-cards-list .breach-description {
    margin-bottom: 0.5rem;
    -webkit-line-clamp: 2;
}
.breach-cards-list .breach-card-footer {
    padding-top: 0;
    border-top: none;
    min-width: 150px;
    display: flex;
    justify-content: flex-end;
}
.breach-cards-list .breach-card:hover {
    transform: translateY(-4px);
}
@media (max-width: 900px) {
    .breach-cards-list .breach-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .breach-cards-list .breach-card-body {
        border: none;
        padding: 0;
    }
    .breach-cards-list .breach-card-footer {
        justify-content: flex-start;
    }
}

