/* ===================================
   SEO Audit Tool Styles
   =================================== */

/* Audit Container */
.audit-section {
    background: #f8f9fa;
}

.audit-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* URL Input Area */
.url-input-area {
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
}

.input-icon {
    font-size: 80px;
    color: var(--theme-color, #ff6b6b);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.url-input-area h3 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.url-input-area > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.url-input-group {
    display: flex;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto 15px;
}

.url-input-group input[type="url"] {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    background: #fff;
}

.url-input-group input[type="url"]:focus {
    outline: none;
    border-color: var(--theme-color, #ff6b6b);
}

.url-input-group button {
    white-space: nowrap;
}

.input-info {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

.example-urls {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.example-urls p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.example-btn {
    background: #f0f0f0;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    color: #555;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.example-btn:hover {
    background: var(--theme-color, #ff6b6b);
    color: #fff;
}

/* Progress Area */
.progress-area {
    margin-top: 40px;
}

.progress-box {
    background: #ffffff;
    padding: 50px 40px;
    text-align: center;
}

.progress-icon {
    font-size: 70px;
    color: var(--theme-color, #ff6b6b);
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.progress-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
}

.progress-steps {
    max-width: 500px;
    margin: 0 auto 40px;
}

.progress-steps .step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f8f9fa;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-steps .step.active {
    opacity: 1;
    background: #fff5f5;
    border-left: 4px solid var(--theme-color, #ff6b6b);
}

.progress-steps .step.completed {
    opacity: 1;
    background: #f0f9f0;
    border-left: 4px solid #4caf50;
}

.progress-steps .step.completed i {
    color: #4caf50;
}

.progress-steps .step i {
    font-size: 20px;
    color: var(--theme-color, #ff6b6b);
}

.progress-steps .step span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.progress-bar-container {
    width: 100%;
    height: 30px;
    background: #f0f0f0;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--theme-color, #ff6b6b) 0%, #ff8e53 100%);
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-color, #ff6b6b);
}

/* Results Area */
.results-area {
    margin-top: 40px;
}

/* Overall Score Section */
.overall-score-section {
    background: #ffffff;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 30px;
}

.overall-score-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.analyzed-url {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px 25px;
    margin-bottom: 40px;
}

.analyzed-url i {
    color: var(--theme-color, #ff6b6b);
    font-size: 18px;
}

.analyzed-url span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.overall-score-card {
    max-width: 400px;
    margin: 0 auto;
}

.score-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.score-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 12;
}

.score-progress {
    fill: none;
    stroke: var(--theme-color, #ff6b6b);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 1.5s ease-in-out, stroke 0.3s ease;
}

.score-circle.excellent .score-progress {
    stroke: #4caf50;
}

.score-circle.good .score-progress {
    stroke: #8bc34a;
}

.score-circle.average .score-progress {
    stroke: #ffc107;
}

.score-circle.poor .score-progress {
    stroke: #ff9800;
}

.score-circle.bad .score-progress {
    stroke: #f44336;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-value span {
    font-size: 60px;
    font-weight: 700;
    color: #222;
}

.score-value small {
    font-size: 24px;
    color: #999;
}

.score-label {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.score-label.excellent {
    color: #4caf50;
}

.score-label.good {
    color: #8bc34a;
}

.score-label.average {
    color: #ffc107;
}

.score-label.poor {
    color: #ff9800;
}

.score-label.bad {
    color: #f44336;
}

.score-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Category Scores Section */
.category-scores-section {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
}

.category-scores-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.category-card {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.category-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-icon {
    font-size: 50px;
    color: var(--theme-color, #ff6b6b);
    margin-bottom: 15px;
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.category-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-top: 0;
}

.category-score-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 20px auto 15px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.category-score-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.category-score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.category-score-value span {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.category-score-circle .score-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 10;
}

.category-score-circle .score-progress {
    fill: none;
    stroke: #ffc107;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 314.16;
    stroke-dashoffset: 314.16;
    transition: stroke-dashoffset 1.5s ease-in-out, stroke 0.3s ease;
}

/* Detailed Results Section */
.detailed-results-section {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
}

.detailed-results-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.result-category {
    margin-bottom: 40px;
}

.result-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: #f0f0f0;
}

.category-header i {
    font-size: 30px;
    color: var(--theme-color, #ff6b6b);
}

.category-header-content {
    flex: 1;
}

.category-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.category-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.category-toggle {
    font-size: 20px;
    color: #999;
    transition: transform 0.3s ease;
}

.category-header.active .category-toggle {
    transform: rotate(180deg);
}

.category-items {
    display: none;
    padding-left: 20px;
}

.category-items.active {
    display: block;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-left: 4px solid #e0e0e0;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.result-item.success {
    border-left-color: #4caf50;
    background: #f0f9f0;
}

.result-item.warning {
    border-left-color: #ffc107;
    background: #fffbf0;
}

.result-item.error {
    border-left-color: #f44336;
    background: #fff5f5;
}

.result-icon {
    font-size: 24px;
    margin-top: 2px;
}

.result-item.success .result-icon {
    color: #4caf50;
}

.result-item.warning .result-icon {
    color: #ffc107;
}

.result-item.error .result-icon {
    color: #f44336;
}

.result-content {
    flex: 1;
}

.result-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.result-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.result-content .result-value {
    display: inline-block;
    background: #f8f9fa;
    padding: 5px 12px;
    font-size: 13px;
    color: #333;
    font-family: monospace;
    margin-top: 5px;
}

.result-recommendation {
    background: #e3f2fd;
    border-left: 3px solid #2196f3;
    padding: 12px 15px;
    margin-top: 10px;
}

.result-recommendation strong {
    color: #1976d2;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

.result-recommendation p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.action-buttons button {
    min-width: 200px;
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #ffffff;
    padding: 20px 25px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-toast.success {
    border-left: 4px solid #4caf50;
}

.notification-toast.error {
    border-left: 4px solid #f44336;
}

.notification-toast.info {
    border-left: 4px solid #2196f3;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    font-size: 24px;
}

.notification-toast.success .toast-icon::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #4caf50;
}

.notification-toast.error .toast-icon::before {
    content: '\f06a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #f44336;
}

.notification-toast.info .toast-icon::before {
    content: '\f05a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #2196f3;
}

.toast-message {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
    .category-block {
        margin-bottom: 20px;
    }
    
    .category-card {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    /* Banner Section */
    .banner-style-three .content-box {
        padding: 40px 20px;
    }
    
    .banner-style-three .title-box .title h2 {
        font-size: 32px;
    }
    
    /* URL Input Area */
    .url-input-area {
        padding: 40px 20px;
    }

    .url-input-area h3 {
        font-size: 24px;
    }

    .url-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .url-input-group input[type="url"] {
        width: 100%;
        font-size: 14px;
        padding: 15px 20px;
    }

    .url-input-group button {
        width: 100%;
        padding: 15px 20px;
    }

    /* Progress Section */
    .progress-box {
        padding: 40px 20px;
    }

    .progress-box h3 {
        font-size: 22px;
    }
    
    .progress-steps {
        padding: 0 10px;
    }
    
    .progress-steps .step {
        padding: 12px 15px;
        font-size: 14px;
    }

    /* Overall Score Section */
    .overall-score-section {
        padding: 30px 15px;
    }

    .overall-score-section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .analyzed-url {
        padding: 10px 15px;
        font-size: 13px;
        word-break: break-all;
        display: block;
        text-align: center;
    }
    
    .analyzed-url i {
        display: block;
        margin-bottom: 5px;
    }

    .score-circle {
        width: 200px;
        height: 200px;
        margin: 20px auto;
    }

    .score-circle svg {
        width: 200px;
        height: 200px;
    }

    .score-value span {
        font-size: 60px;
    }

    .score-value small {
        font-size: 24px;
    }
    
    .score-label {
        font-size: 20px;
    }
    
    .score-description {
        font-size: 14px;
        padding: 0 10px;
    }

    /* Category Scores Section */
    .category-scores-section {
        padding: 25px 15px;
    }
    
    .category-scores-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .category-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .category-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }
    
    .category-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .category-score-circle {
        width: 120px;
        height: 120px;
        margin: 15px auto;
    }
    
    .category-score-circle svg {
        width: 120px;
        height: 120px;
    }
    
    .category-score-value span {
        font-size: 30px;
    }

    /* Detailed Results Section */
    .detailed-results-section {
        padding: 25px 15px;
    }
    
    .detailed-results-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .category-header {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .category-header i {
        font-size: 24px;
    }
    
    .category-header h4 {
        font-size: 17px;
    }
    
    .category-header p {
        font-size: 13px;
    }
    
    .result-item {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .result-icon {
        font-size: 20px;
    }
    
    .result-content h5 {
        font-size: 15px;
    }
    
    .result-content p {
        font-size: 13px;
    }
    
    .result-value {
        font-size: 12px;
        padding: 4px 10px;
        word-break: break-all;
    }
    
    .result-recommendation {
        padding: 10px 12px;
    }
    
    .result-recommendation strong {
        font-size: 12px;
    }
    
    .result-recommendation p {
        font-size: 12px;
    }

    /* Action Buttons */
    .action-buttons {
        flex-direction: column;
        padding: 0 15px;
    }

    .action-buttons button {
        width: 100%;
        min-width: auto;
    }

    /* Notification Toast */
    .notification-toast {
        right: 10px;
        left: 10px;
        transform: translateY(-150px);
        padding: 15px 20px;
    }

    .notification-toast.show {
        transform: translateY(0);
    }
    
    .toast-message {
        font-size: 14px;
    }
}

@media only screen and (max-width: 575px) {
    /* Banner */
    .banner-style-three .title-box .title h2 {
        font-size: 28px;
    }
    
    .banner-style-three .content-box p {
        font-size: 14px;
    }
    
    /* Example Buttons */
    .example-btn {
        display: block;
        width: 100%;
        margin: 5px 0;
        padding: 10px 15px;
        font-size: 13px;
    }
    
    /* Overall Score */
    .overall-score-section h2 {
        font-size: 20px;
    }
    
    .score-circle {
        width: 200px;
        height: 200px;
    }
    
    .score-circle svg {
        width: 200px;
        height: 200px;
    }
    
    .score-value span {
        font-size: 60px;
    }
    
    .score-value small {
        font-size: 24px;
    }
    
    .score-label {
        font-size: 18px;
    }
    
    .score-description {
        font-size: 13px;
    }
    
    /* Category Cards */
    .category-scores-section h3 {
        font-size: 18px;
    }
    
    .category-card {
        padding: 15px 10px;
    }
    
    .category-icon {
        font-size: 36px;
    }
    
    .category-card h4 {
        font-size: 15px;
    }
    
    .category-score-circle {
        width: 120px;
        height: 120px;
    }
    
    .category-score-circle svg {
        width: 120px;
        height: 120px;
    }
    
    .category-score-value span {
        font-size: 28px;
    }
    
    /* Detailed Results */
    .detailed-results-section h3 {
        font-size: 18px;
    }
    
    .category-header {
        padding: 12px;
    }
    
    .category-header i {
        font-size: 22px;
    }
    
    .category-header h4 {
        font-size: 16px;
    }
    
    .category-header p {
        font-size: 12px;
    }
    
    .result-item {
        padding: 12px;
    }
    
    .result-content h5 {
        font-size: 14px;
    }
    
    .result-content p {
        font-size: 12px;
    }
    
    /* Action Buttons */
    .action-buttons button {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@media only screen and (max-width: 400px) {
    /* Extra small devices */
    .banner-style-three .title-box .title h2 {
        font-size: 24px;
    }
    
    .overall-score-section {
        padding: 20px 10px;
    }
    
    .overall-score-section h2 {
        font-size: 18px;
    }
    
    .score-circle {
        width: 200px;
        height: 200px;
    }
    
    .score-circle svg {
        width: 200px;
        height: 200px;
    }
    
    .score-value span {
        font-size: 60px;
    }
    
    .score-value small {
        font-size: 24px;
    }
    
    .category-scores-section,
    .detailed-results-section {
        padding: 20px 10px;
    }
    
    .category-card {
        padding: 12px 8px;
    }
    
    .category-score-circle {
        width: 120px;
        height: 120px;
    }
    
    .category-score-circle svg {
        width: 120px;
        height: 120px;
    }
    
    .category-score-value span {
        font-size: 26px;
    }
}

/* Print Styles */
@media print {
    /* Hide unnecessary elements */
    .url-input-area,
    .action-buttons,
    .notification-toast,
    .feature-section,
    .cta-section,
    .banner-style-three,
    header,
    footer,
    .category-toggle,
    .example-urls {
        display: none !important;
    }

    /* Reset body and page */
    body {
        background: #fff !important;
        margin: 0;
        padding: 20px;
        position: relative;
    }

    /* Add watermark */
    body::before {
        content: 'DoNothing';
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        font-size: 120px;
        font-weight: 900;
        color: rgba(0, 0, 0, 0.05);
        z-index: -1;
        white-space: nowrap;
        pointer-events: none;
    }

    /* Results area */
    .results-area {
        margin-top: 0 !important;
        padding: 0 !important;
    }

    .audit-section {
        background: #fff !important;
        padding: 0 !important;
    }

    .audit-container {
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Overall score section */
    .overall-score-section {
        background: #fff !important;
        border: 1px solid #ddd;
        padding: 30px 20px !important;
        margin-bottom: 20px !important;
        page-break-inside: avoid;
        box-shadow: none !important;
    }

    .overall-score-section h2 {
        font-size: 24px !important;
        color: #000 !important;
        margin-bottom: 15px !important;
    }

    .analyzed-url {
        background: #f5f5f5 !important;
        padding: 10px 15px !important;
        margin-bottom: 20px !important;
        font-size: 14px !important;
        border: 1px solid #ddd;
    }

    .score-circle {
        width: 150px !important;
        height: 150px !important;
        margin: 20px auto !important;
    }

    .score-circle svg {
        width: 150px !important;
        height: 150px !important;
    }

    .score-value span {
        font-size: 48px !important;
        color: #000 !important;
    }

    .score-value small {
        font-size: 20px !important;
        color: #666 !important;
    }

    .score-label {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .score-description {
        font-size: 14px !important;
        color: #333 !important;
    }

    /* Category scores section */
    .category-scores-section {
        background: #fff !important;
        border: 1px solid #ddd;
        padding: 20px !important;
        margin-bottom: 20px !important;
        page-break-inside: avoid;
        box-shadow: none !important;
    }

    .category-scores-section h3 {
        font-size: 20px !important;
        color: #000 !important;
        margin-bottom: 20px !important;
    }

    .category-card {
        background: #f9f9f9 !important;
        padding: 15px 10px !important;
        border: 1px solid #ddd;
        page-break-inside: avoid;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .category-icon {
        font-size: 36px !important;
        margin-bottom: 10px !important;
        animation: none !important;
    }

    .category-card h4 {
        font-size: 16px !important;
        color: #000 !important;
        margin-bottom: 10px !important;
    }

    .category-score-circle {
        width: 100px !important;
        height: 100px !important;
        margin: 15px auto !important;
        animation: none !important;
    }

    .category-score-circle svg {
        width: 100px !important;
        height: 100px !important;
    }

    .category-score-value span {
        font-size: 28px !important;
        color: #000 !important;
        animation: none !important;
    }

    /* Detailed results section */
    .detailed-results-section {
        background: #fff !important;
        border: 1px solid #ddd;
        padding: 20px !important;
        margin-bottom: 20px !important;
        box-shadow: none !important;
    }

    .detailed-results-section h3 {
        font-size: 20px !important;
        color: #000 !important;
        margin-bottom: 20px !important;
    }

    .result-category {
        margin-bottom: 25px !important;
        page-break-inside: avoid;
    }

    .category-header {
        background: #f5f5f5 !important;
        padding: 15px !important;
        margin-bottom: 15px !important;
        border: 1px solid #ddd;
        cursor: default !important;
    }

    .category-header i {
        font-size: 24px !important;
        color: #000 !important;
    }

    .category-header h4 {
        font-size: 18px !important;
        color: #000 !important;
    }

    .category-header p {
        font-size: 13px !important;
        color: #666 !important;
    }

    .category-items {
        display: block !important;
        padding-left: 0 !important;
    }

    .result-item {
        padding: 15px !important;
        margin-bottom: 12px !important;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .result-item.success {
        background: #f0f9f0 !important;
        border-left: 4px solid #4caf50 !important;
    }

    .result-item.warning {
        background: #fffbf0 !important;
        border-left: 4px solid #ffc107 !important;
    }

    .result-item.error {
        background: #fff5f5 !important;
        border-left: 4px solid #f44336 !important;
    }

    .result-icon {
        font-size: 20px !important;
    }

    .result-content h5 {
        font-size: 15px !important;
        color: #000 !important;
        margin-bottom: 8px !important;
    }

    .result-content p {
        font-size: 13px !important;
        color: #333 !important;
        line-height: 1.5 !important;
    }

    .result-value {
        background: #f5f5f5 !important;
        padding: 5px 10px !important;
        font-size: 12px !important;
        color: #000 !important;
        border: 1px solid #ddd;
    }

    .result-recommendation {
        background: #e3f2fd !important;
        border-left: 3px solid #2196f3 !important;
        padding: 10px 12px !important;
        margin-top: 8px !important;
    }

    .result-recommendation strong {
        color: #000 !important;
        font-size: 12px !important;
    }

    .result-recommendation p {
        font-size: 12px !important;
        color: #333 !important;
    }

    /* Remove all animations and transitions */
    * {
        animation: none !important;
        transition: none !important;
    }

    /* Ensure proper page breaks */
    .overall-score-section,
    .category-scores-section,
    .detailed-results-section,
    .result-category {
        page-break-inside: avoid;
    }

    /* Print header */
    .results-area::before {
        content: 'SEO Audit Report';
        display: block;
        font-size: 28px;
        font-weight: 700;
        color: #000;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #000;
    }
}
