:root {
    --primary-color: #8b5cf6;
    --primary-hover: #7c3aed;
    --secondary-color: #2d2d2d;
    --background-dark: #0f0f0f;
    --background-gradient: linear-gradient(90deg, #180f1c 0%, #000 100%);
    --card-background: #1e1920;
    --border-color: #8e60a8;
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --text-muted: #9ca3af;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(139, 92, 246, 0.1), 0 2px 4px rgba(139, 92, 246, 0.1);
    --shadow-lg: 0 10px 15px rgba(195, 0, 255, 0.432), 0 4px 6px rgba(139, 92, 246, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background-gradient);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.header {
    text-align: center;
    padding: 10rem 1rem 2rem;
    background: rgba(0, 0, 0, );
    backdrop-filter: blur(10px);
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #a855f7, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    opacity: 0.9;
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(139, 92, 246, 0.2);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    text-align: center;
    color: #fca5a5;
    margin: 2rem 0;
}

.platform-section {
    margin-bottom: 3rem;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.platform-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.platform-icon {
    font-size: 1.5rem;
}

.exploit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.exploit-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.exploit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 92, 246, 0.4);
}

.exploit-card:hover::before {
    opacity: 1;
}

.card-header {
    margin-bottom: 1rem;
}

.exploit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.exploit-version {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.info-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-detected {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-undetected {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.unc-status {
    font-weight: 600;
}

.unc-active {
    color: var(--success-color);
}

.unc-inactive {
    color: var(--danger-color);
}

.price-free {
    color: var(--info-color);
    font-weight: 600;
}

.price-paid {
    color: #d8b4fe;
    font-weight: 600;
}

.update-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.5rem;
    text-align: right;
}

.card-links {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.link-website {
    background: rgba(59, 130, 246, 0.1);
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.3);
}

.link-website:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

.link-discord {
    background: rgba(139, 92, 246, 0.1);
    color: #c4b5fd;
    border-color: rgba(139, 92, 246, 0.3);
}

.link-discord:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-1px);
}

.link-purchase {
    background: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.3);
}

.link-purchase:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateY(-1px);
}

.footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all var(--transition-smooth);
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-color), #a855f7);
    transition: all var(--transition-smooth);
    transform: translateX(-50%);
}

.footer-link:hover {
    color: var(--primary-hover);
    transform: translateY(-2px);
}

.footer-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .main-container {
        padding: 1rem;
    }

    .exploit-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .exploit-card {
        padding: 1rem;
    }

    .card-links {
        flex-direction: column;
    }
}