/* SEO Analyzer WordPress Plugin - Isolated Styles */

/* === PLUGIN WRAPPER === */
.seo-analyzer-wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    background: linear-gradient(180deg, #0A0E27 0%, #0F0F1E 100%);
    border-radius: 20px;
    position: relative;
}

/* Light Theme */
.seo-analyzer-wrapper.theme-light {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    color: #1a1a1a;
}

/* === STATS === */
.analyzer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94A3B8;
}

/* === PRIMARY CARD === */
.analyzer-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(247, 147, 30, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.analyzer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.3);
}

.analyzer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.card-header-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.4);
    flex-shrink: 0;
}

.header-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.header-subtitle {
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* === INPUT GROUP LARGE === */
.input-group-large {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.input-wrapper-large {
    flex: 1;
    position: relative;
}

.input-icon-large {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #FF6B35;
    pointer-events: none;
    z-index: 1;
}

.modern-input-large {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 3.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modern-input-large:focus {
    outline: none;
    border-color: #FF6B35;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.modern-input-large::placeholder {
    color: #94A3B8;
}

.input-hint {
    position: absolute;
    bottom: -1.5rem;
    left: 3.75rem;
    font-size: 0.75rem;
    color: #64748B;
}

.btn-gradient-large {
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    white-space: nowrap;
}

.btn-gradient-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}

/* === FEATURE TAGS === */
.analyzer-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #94A3B8;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #FF6B35;
    color: #FF6B35;
    transform: translateY(-2px);
}

/* === SECONDARY TOOLS === */
.secondary-tools {
    margin-top: 2rem;
}

.tool-toggle {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.tool-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.tool-toggle i:first-child {
    font-size: 1.25rem;
    color: #FF6B35;
}

.tool-toggle span {
    flex: 1;
    text-align: left;
}

.tool-toggle i:last-child {
    transition: transform 0.3s ease;
}

.tool-toggle.active i:last-child {
    transform: rotate(180deg);
}

.tool-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 1.5rem;
    margin-top: -8px;
}

/* === COMPACT INPUTS === */
.input-group-compact {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-wrapper-compact {
    flex: 1;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #FF6B35;
}

.modern-input-compact {
    width: 100%;
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.modern-input-compact:focus {
    outline: none;
    border-color: #FF6B35;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.modern-input-compact::placeholder {
    color: #94A3B8;
}

.btn-gradient-compact {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
}

.btn-gradient-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* === CHECKBOX PILLS === */
.domain-extensions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.checkbox-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.checkbox-pill input[type="checkbox"] {
    display: none;
}

.checkbox-pill:has(input:checked) {
    background: rgba(255, 107, 53, 0.1);
    border-color: #FF6B35;
}

.checkbox-pill:has(input:checked) span {
    color: #FF6B35;
}

.checkbox-pill:hover {
    background: rgba(255, 255, 255, 0.08);
}

.checkbox-pill span {
    font-weight: 600;
    color: #94A3B8;
    transition: color 0.3s ease;
}

/* === ANALYSIS RESULTS === */
.analysis-results {
    margin-top: 3rem;
}

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

.results-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.results-header p {
    font-size: 1.25rem;
    color: #94A3B8;
}

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

.analysis-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.analysis-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.gradient-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #4A90E2 100%);
}

.analysis-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.analysis-card p {
    color: #94A3B8;
    margin: 0.5rem 0;
}

/* Score Circle */
.score-circle {
    width: 150px;
    height: 150px;
    margin: 2rem auto;
    position: relative;
}

.score-circle svg {
    transform: rotate(-90deg);
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress Bar */
.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 50px;
    transition: width 1s ease;
}

/* === RECOMMENDATIONS === */
.recommendations-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.recommendations-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.recommendations-card .card-header i {
    font-size: 1.5rem;
    color: #FF6B35;
}

.recommendations-card .card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

#recommendationsList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recommendation-item {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid;
    display: flex;
    gap: 1rem;
}

.recommendation-item.error {
    border-color: #EF4444;
}

.recommendation-item.warning {
    border-color: #F59E0B;
}

.recommendation-item.info {
    border-color: #3B82F6;
}

.recommendation-item.success {
    border-color: #10B981;
}

/* === LOADING === */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 1000;
}

.loader {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader p {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
}

/* === STATUS COLORS === */
.success {
    color: #10B981 !important;
}

.warning {
    color: #F59E0B !important;
}

.error {
    color: #EF4444 !important;
}

.info {
    color: #3B82F6 !important;
}

/* === DOMAIN RESULTS === */
#domainResults {
    margin-top: 1.5rem;
}

.domain-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.domain-result {
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid;
}

.domain-result.available {
    background: rgba(16, 185, 129, 0.05);
    border-color: #10B981;
}

.domain-result.taken {
    background: rgba(239, 68, 68, 0.05);
    border-color: #EF4444;
}

.domain-name {
    font-weight: 600;
    color: #ffffff;
}

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

/* === FEATURES SECTION === */
.features-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-header p {
    font-size: 1.125rem;
    color: #94A3B8;
}

/* Features Tabs */
.features-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #94A3B8;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    color: #FF6B35;
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-color: #FF6B35;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.tab-button i {
    font-size: 1.1rem;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.new {
    background: linear-gradient(135deg, #4A90E2 0%, #667eea 100%);
    box-shadow: 0 8px 16px rgba(74, 144, 226, 0.3);
}

.feature-icon.pro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: #94A3B8;
    margin: 0;
    line-height: 1.6;
}

/* Feature Badges */
.badge-new,
.badge-pro {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.badge-new {
    background: linear-gradient(135deg, #4A90E2 0%, #667eea 100%);
    color: white;
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
}

.badge-pro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.feature-new {
    border-color: rgba(74, 144, 226, 0.3);
}

.feature-pro {
    border-color: rgba(102, 126, 234, 0.3);
}

/* === WEBSITE PREVIEW === */
.website-preview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.preview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.preview-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.tested-url {
    color: #4A90E2;
    font-size: 0.95rem;
    word-break: break-all;
    margin: 0;
}

.preview-screenshot {
    position: relative;
    width: 100%;
    height: 450px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.preview-screenshot iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.preview-screenshot:hover .preview-overlay {
    opacity: 1;
}

.preview-overlay i {
    font-size: 3rem;
    color: #FF6B35;
}

.preview-overlay span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

/* === RECENTLY TESTED === */
.recently-tested-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-left i {
    font-size: 2.5rem;
    color: #FF6B35;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.section-header p {
    color: #94A3B8;
    margin: 0;
}

.btn-refresh {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FF6B35;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-refresh:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #FF6B35;
    transform: rotate(180deg);
}

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

.recent-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recent-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.recent-screenshot {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    overflow: hidden;
}

.recent-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-screenshot iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    display: block;
}

.score-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    border: 3px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.score-badge.good {
    color: #10B981;
    border-color: #10B981;
}

.score-badge.medium {
    color: #F59E0B;
    border-color: #F59E0B;
}

.score-badge.bad {
    color: #EF4444;
    border-color: #EF4444;
}

.recent-info {
    padding: 1.25rem;
}

.recent-url {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4A90E2;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-date {
    font-size: 0.75rem;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-date i {
    font-size: 0.875rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .seo-analyzer-wrapper {
        padding: 1rem;
    }
    
    .analyzer-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .analyzer-card {
        padding: 1.5rem;
    }
    
    .card-header-large {
        flex-direction: column;
        text-align: center;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .header-content h3 {
        font-size: 1.5rem;
    }
    
    .input-group-large,
    .input-group-compact {
        flex-direction: column;
    }
    
    .btn-gradient-large,
    .btn-gradient-compact {
        width: 100%;
        justify-content: center;
    }
    
    .modern-input-large {
        font-size: 1rem;
        padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    }
    
    .analyzer-features {
        gap: 0.75rem;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-card.featured {
        grid-column: span 1;
    }
    
    /* Website Preview */
    .preview-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .preview-screenshot {
        height: 350px;
    }
    
    .recent-screenshot {
        height: 160px;
    }
    
    /* Features */
    .features-header h2 {
        font-size: 2rem;
    }
    
    .features-tabs {
        gap: 0.5rem;
    }
    
    .tab-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Recently Tested */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .recently-tested-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .header-content h3 {
        font-size: 1.25rem;
    }
    
    .header-subtitle {
        font-size: 0.875rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }
    
    .features-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .tab-button span {
        display: none;
    }
    
    .tab-button i {
        font-size: 1.25rem;
    }
}
