/* Reset and Base Styles */
/* Encrypted styles - Do not modify */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    z-index: 1000;
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #e2e8f0;
    text-decoration: none;
}

.nav-logo svg {
    color: #60a5fa;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #60a5fa;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

/* Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page {
    display: none;
    flex: 1;
}

.page.active {
    display: flex;
    flex-direction: column;
}

.content-page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.logo svg {
    color: #60a5fa;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.125rem;
    color: #cbd5e1;
    font-weight: 400;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    color: #94a3b8;
}

/* Main Content */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-section {
    flex: 1;
}

/* Input Section */
.input-section {
    display: flex;
    justify-content: center;
}

.input-container {
    width: 100%;
    max-width: 600px;
}

.input-wrapper {
    position: relative;
    display: flex;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

#websiteUrl {
    flex: 1;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    border-radius: 12px;
    color: #f1f5f9;
}

#websiteUrl::placeholder {
    color: #64748b;
}

.analyze-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.5);
}

.analyze-btn:active {
    transform: translateY(0);
}

.analyze-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.input-feedback {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    min-height: 1.25rem;
}

.input-feedback.error {
    color: #ef4444;
}

.input-feedback.success {
    color: #10b981;
}

/* Loading Section */
.loading-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-section.active {
    opacity: 1;
    visibility: visible;
}

.loading-container {
    text-align: center;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    max-width: 420px;
    width: 100%;
    margin: 1rem;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.loading-section.active .loading-container {
    transform: scale(1);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(96, 165, 250, 0.2);
    border-top: 4px solid #60a5fa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
}

.loading-text p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.loading-progress {
    width: 100%;
    height: 8px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

/* Results Section */
.results-section {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.result-card {
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.card-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon.wordpress {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
}

.card-icon.theme {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
}

.card-icon.plugins {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
}

.card-title {
    flex: 1;
}

.card-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.25rem;
}

.detection-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6b7280;
    animation: pulse 2s infinite;
}

.status-indicator.detected {
    background: #10b981;
}

.status-indicator.not-detected {
    background: #ef4444;
}

.status-text {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
}

.card-content {
    padding: 0 1.5rem 1.5rem;
}

.info-placeholder {
    color: #64748b;
    font-style: italic;
    text-align: center;
    padding: 2rem 1rem;
}

/* WordPress Details */
.wp-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wp-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.detail-label {
    font-weight: 500;
    color: #e2e8f0;
}

.detail-value {
    color: #94a3b8;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
}

.detail-value.positive {
    color: #10b981;
    font-weight: 600;
}

.detail-value.negative {
    color: #ef4444;
    font-weight: 600;
}

/* Theme Info Styles */
.theme-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.theme-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-screenshot {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.theme-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.25rem;
}

.theme-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.meta-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #cbd5e1;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.theme-description {
    color: #94a3b8;
    line-height: 1.5;
}

/* Plugin Styles */
.plugins-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plugin-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.plugin-name {
    font-weight: 500;
    color: #f1f5f9;
}

.plugin-badge {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* About Page Styles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    color: #60a5fa;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

.about-content {
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 2rem;
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Privacy Policy Styles */
.privacy-content {
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 2rem 0 1rem 0;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #94a3b8;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-update {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.policy-update p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Error Section */
.error-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.error-container {
    text-align: center;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    max-width: 400px;
    width: 100%;
}

.error-icon {
    color: #ef4444;
    margin-bottom: 1rem;
}

.error-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.error-container p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.retry-btn {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.retry-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer p {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* AdSense Styles */
.ad-container {
    margin: 2rem 0;
    text-align: center;
    background: rgba(15, 15, 35, 0.5);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.results-ad {
    grid-column: 1 / -1;
    margin: 1rem 0 2rem 0;
}

.footer-ad {
    margin: 2rem 0 1rem 0;
}

/* Affiliate Banner Styles */
.affiliate-section {
    margin-top: 2rem;
    padding: 2rem 0;
}

.affiliate-container {
    text-align: center;
}

.affiliate-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 2rem;
}

.affiliate-banners {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.affiliate-banner {
    width: 300px;
    height: 600px;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.affiliate-banner:hover {
    transform: translateY(-4px);
}

.banner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

.banner-placeholder h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.banner-placeholder p {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Ad Blocker Popup Styles */
.adblock-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.adblock-popup.active {
    opacity: 1;
    visibility: visible;
}

.adblock-content {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    max-width: 480px;
    width: 100%;
    margin: 1rem;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.adblock-popup.active .adblock-content {
    transform: scale(1);
}

.adblock-icon {
    color: #ef4444;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.adblock-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.adblock-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.adblock-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.adblock-btn.primary {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    color: white;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

.adblock-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.5);
}

.adblock-btn.secondary {
    background: rgba(59, 130, 246, 0.2);
    color: #cbd5e1;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.adblock-btn.secondary:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Security Styles */
::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}

/* Disable drag and drop */
* {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* About Section Styles */
.about-section {
    margin-top: 4rem;
    padding: 4rem 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header p {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-item {
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    color: #60a5fa;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: #94a3b8;
    line-height: 1.6;
}

/* How to Use Section Styles */
.how-to-section {
    margin-top: 2rem;
    padding: 4rem 0;
    background: rgba(59, 130, 246, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-visual {
    display: flex;
    justify-content: center;
}

.mock-input {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    color: #cbd5e1;
    min-width: 250px;
}

.mock-input svg {
    color: #94a3b8;
}

.analysis-preview {
    background: rgba(15, 15, 35, 0.9);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    min-width: 250px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.scan-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
    border-radius: 2px;
    margin-bottom: 1rem;
    animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.scan-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.scan-items span {
    color: #34d399;
    font-size: 0.875rem;
    font-weight: 500;
}

.results-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    min-width: 250px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #e2e8f0;
}

.result-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon.wp {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.result-icon.theme {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.result-icon.plugin {
    background: linear-gradient(135deg, #34d399, #10b981);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-top: 1px solid rgba(59, 130, 246, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .container {
        padding: 5rem 1rem 2rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }

    .analyze-btn {
        width: 100%;
        justify-content: center;
    }

    .results-section {
        grid-template-columns: 1fr;
    }

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

    .steps {
        gap: 1.5rem;
    }

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

    .card-header {
        padding: 1rem 1rem 0.5rem;
    }

    .card-content {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo h1 {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .page-header {
        padding: 2rem 1rem;
    }

    .about-content,
    .privacy-content {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .feature-item {
        padding: 1.5rem;
    }

    .steps-container {
        gap: 2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .how-to-section {
        border-radius: 20px;
        margin: 2rem 1rem 0;
        padding: 3rem 0;
    }

    .theme-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .theme-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .affiliate-banners {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .adblock-buttons {
        flex-direction: column;
    }

    .adblock-btn {
        width: 100%;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.slide-up {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}