/* Product Research Tools - Dark Theme */
.prt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #e0e0e0;
}

.prt-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    border-radius: 12px;
    border: 1px solid #2d3748;
}

.prt-header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    font-weight: 700;
    color: #f7fafc;
}

.prt-header p {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.9;
    color: #cbd5e0;
}

/* Tab Navigation */
.prt-tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.prt-tab-btn {
    padding: 12px 20px;
    border: 1px solid #4a5568;
    background: #2d3748;
    color: #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.prt-tab-btn:hover {
    background: #4a5568;
    transform: translateY(-1px);
    border-color: #667eea;
}

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

/* Tool Panels */
.prt-tool-panel {
    display: none;
    background: #2d3748;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    min-height: 400px;
    border: 1px solid #4a5568;
}

.prt-tool-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

.prt-tool-panel h2 {
    margin: 0 0 20px 0;
    color: #f7fafc;
    font-size: 1.8em;
    border-bottom: 2px solid #4a5568;
    padding-bottom: 10px;
}

/* Form Elements */
.prt-form-group {
    margin-bottom: 20px;
}

.prt-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #cbd5e0;
}

.prt-form-group input,
.prt-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #4a5568;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background: #1a202c;
    color: #e2e8f0;
}

.prt-form-group input::placeholder {
    color: #718096;
}

.prt-form-group input:focus,
.prt-form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    background: #2d3748;
}

.prt-calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Buttons */
.prt-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.prt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.4);
}

/* Results Sections */
.prt-results {
    margin-top: 30px;
    padding: 20px;
    background: #1a202c;
    border-radius: 8px;
    min-height: 100px;
    border: 1px solid #4a5568;
}

.prt-results:empty {
    display: none;
}

/* Loading Overlay */
.prt-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    color: white;
}

.prt-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

/* Trending Products Results */
.prt-trending-results h3 {
    color: #f7fafc;
    margin-bottom: 15px;
}

.prt-source-info {
    color: #a0aec0;
    font-style: italic;
    margin-bottom: 20px;
}

.prt-platform-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #2d3748;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    border: 1px solid #4a5568;
}

.prt-platform-section h4 {
    color: #81e6d9;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.1em;
}

.prt-trend-item,
.prt-social-item,
.prt-reddit-item,
.prt-amazon-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #1a202c;
    border-radius: 6px;
    border-left: 3px solid #48bb78;
    border: 1px solid #4a5568;
}

.prt-trend-item h5,
.prt-social-item h5,
.prt-reddit-item h5,
.prt-amazon-item h5 {
    margin: 0 0 10px 0;
    color: #f7fafc;
}

.prt-metrics,
.prt-social-metrics,
.prt-reddit-meta,
.prt-amazon-metrics {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.prt-metric,
.prt-metrics span,
.prt-social-metrics span,
.prt-reddit-meta span,
.prt-amazon-metrics span {
    padding: 4px 8px;
    background: #2d3748;
    border-radius: 4px;
    font-size: 0.9em;
    border: 1px solid #4a5568;
    color: #e2e8f0;
}

.prt-related-keywords,
.prt-hashtags {
    margin-top: 10px;
    font-size: 0.9em;
    color: #a0aec0;
}

.prt-sales-estimate {
    color: #68d391;
    font-weight: 600;
    margin-top: 5px;
}

/* Profit Calculator Results */
.prt-profit-results {
    background: #2d3748;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #4a5568;
}

.prt-profit-summary h3 {
    margin-bottom: 20px;
    color: #f7fafc;
}

.prt-profit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.prt-profit-card {
    background: #1a202c;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.prt-profit-card h4 {
    margin: 0 0 10px 0;
    color: #a0aec0;
    font-size: 0.9em;
    text-transform: uppercase;
}

.prt-big-number {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 5px;
    color: #e2e8f0;
}

.prt-status {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8em;
}

/* Profitability Status Colors */
.prt-excellent {
    border-color: #48bb78;
    background: #1a2e1a;
}

.prt-excellent .prt-big-number {
    color: #68d391;
}

.prt-good {
    border-color: #4299e1;
    background: #1a202e;
}

.prt-good .prt-big-number {
    color: #63b3ed;
}

.prt-fair {
    border-color: #ed8936;
    background: #2e221a;
}

.prt-fair .prt-big-number {
    color: #fbb040;
}

.prt-poor {
    border-color: #f56565;
    background: #2e1a1a;
}

.prt-poor .prt-big-number {
    color: #fc8181;
}

.prt-cost-breakdown {
    margin-bottom: 30px;
    padding: 20px;
    background: #1a202c;
    border-radius: 8px;
    border: 1px solid #4a5568;
}

.prt-cost-breakdown h4 {
    margin-bottom: 15px;
    color: #f7fafc;
}

.prt-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.prt-breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: #2d3748;
    border-radius: 4px;
    border-left: 3px solid #667eea;
    color: #e2e8f0;
}

.prt-recommendations,
.prt-niche-recommendations {
    padding: 20px;
    background: #1a2d3a;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #2d5a7b;
}

.prt-recommendations h4,
.prt-niche-recommendations h4 {
    margin-bottom: 15px;
    color: #81e6d9;
}

.prt-recommendations ul,
.prt-recommendations-list {
    margin: 0;
    padding-left: 20px;
}

.prt-recommendations li {
    margin-bottom: 8px;
    color: #e2e8f0;
}

.prt-recommendation {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    gap: 10px;
}

.prt-recommendation.success {
    background: #1a2e1a;
    border-left: 4px solid #48bb78;
    color: #c6f6d5;
}

.prt-recommendation.warning {
    background: #2e221a;
    border-left: 4px solid #ed8936;
    color: #feebc8;
}

.prt-scenarios {
    margin-top: 20px;
}

.prt-scenarios h4 {
    margin-bottom: 15px;
    color: #f7fafc;
}

.prt-scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.prt-scenario-card {
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #4a5568;
    background: #1a202c;
}

.prt-scenario-card h5 {
    margin: 0 0 10px 0;
    color: #f7fafc;
}

.prt-best-case {
    border-color: #48bb78;
    background: #1a2e1a;
}

.prt-worst-case {
    border-color: #f56565;
    background: #2e1a1a;
}

/* Niche Validator Results */
.prt-niche-results {
    background: #2d3748;
    border-radius: 8px;
    border: 1px solid #4a5568;
}

.prt-niche-summary {
    text-align: center;
    padding: 30px 20px;
    border-bottom: 1px solid #4a5568;
}

.prt-niche-summary h3 {
    margin-bottom: 20px;
    color: #f7fafc;
}

.prt-overall-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.prt-score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 6px solid;
    position: relative;
}

.prt-score-number {
    font-size: 2.5em;
    font-weight: 700;
    color: white;
}

.prt-score-grade {
    font-size: 1.2em;
    font-weight: 600;
    color: white;
}

.prt-score-excellent {
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-color: #48bb78;
}

.prt-score-good {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    border-color: #4299e1;
}

.prt-score-fair {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    border-color: #ed8936;
}

.prt-score-poor {
    background: linear-gradient(135deg, #f56565, #e53e3e);
    border-color: #f56565;
}

.prt-score-very-poor {
    background: linear-gradient(135deg, #718096, #4a5568);
    border-color: #718096;
}

.prt-score-info {
    text-align: center;
}

.prt-star-rating {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.prt-opportunity-level {
    color: #a0aec0;
    font-size: 1.1em;
}

.prt-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.prt-metric-card {
    background: #1a202c;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    border: 1px solid #4a5568;
}

.prt-metric-card h4 {
    margin: 0 0 10px 0;
    color: #f7fafc;
    font-size: 1.1em;
}

.prt-metric-score {
    font-size: 1.8em;
    font-weight: 700;
    color: #81e6d9;
    margin-bottom: 10px;
}

.prt-metric-details div {
    margin-bottom: 5px;
    color: #cbd5e0;
    font-size: 0.9em;
}

.prt-sub-niches {
    padding: 20px;
    background: #1a202c;
    margin-top: 20px;
    border-radius: 8px;
    border: 1px solid #4a5568;
}

.prt-sub-niches h4 {
    margin-bottom: 15px;
    color: #f7fafc;
}

.prt-sub-niche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.prt-sub-niche-card {
    background: #2d3748;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #4a5568;
}

.prt-sub-niche-card h5 {
    margin: 0 0 10px 0;
    color: #f7fafc;
    font-size: 1em;
}

.prt-sub-niche-metrics {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.prt-sub-niche-metrics span {
    font-size: 0.85em;
    color: #cbd5e0;
}

/* Competitor Analysis Results */
.prt-competitor-results {
    background: #2d3748;
    border-radius: 8px;
    border: 1px solid #4a5568;
}

.prt-competitor-header {
    padding: 20px;
    background: #1a202c;
    border-bottom: 1px solid #4a5568;
    border-radius: 8px 8px 0 0;
}

.prt-competitor-section {
    padding: 20px;
    border-bottom: 1px solid #4a5568;
}

.prt-competitor-section:last-child {
    border-bottom: none;
}

.prt-competitor-section h4 {
    margin-bottom: 15px;
    color: #f7fafc;
    border-bottom: 2px solid #4a5568;
    padding-bottom: 8px;
}

.prt-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.prt-overview-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #1a202c;
    border-radius: 4px;
    color: #e2e8f0;
    border: 1px solid #4a5568;
}

.prt-traffic-summary {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.prt-stat-card {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 15px;
    background: #1a202c;
    border-radius: 6px;
    border: 1px solid #4a5568;
}

.prt-stat-card h5 {
    margin: 0 0 5px 0;
    color: #a0aec0;
    font-size: 0.9em;
    text-transform: uppercase;
}

.prt-big-stat {
    font-size: 1.5em;
    font-weight: 700;
    color: #f7fafc;
}

.prt-swot-analysis {
    margin: 20px 0;
}

.prt-swot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.prt-swot-card {
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid;
}

.prt-swot-card h5 {
    margin: 0 0 10px 0;
    color: #f7fafc;
}

.prt-swot-card ul {
    margin: 0;
    padding-left: 15px;
}

.prt-swot-card li {
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #e2e8f0;
}

.prt-strengths {
    background: #1a2e1a;
    border-color: #48bb78;
}

.prt-weaknesses {
    background: #2e1a1a;
    border-color: #f56565;
}

.prt-opportunities {
    background: #1a2d3a;
    border-color: #4fd1c7;
}

.prt-threats {
    background: #2e221a;
    border-color: #ed8936;
}

/* Product Analysis Specific */
.prt-product-analysis {
    padding: 20px;
}

.prt-product-summary {
    margin-bottom: 20px;
    padding: 15px;
    background: #1a202c;
    border-radius: 6px;
    border: 1px solid #4a5568;
}

.prt-product-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.prt-stat {
    color: #cbd5e0;
    font-size: 0.9em;
}

.prt-categories {
    margin-bottom: 20px;
}

.prt-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prt-category-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: #2d3748;
    border-radius: 4px;
    border: 1px solid #4a5568;
    color: #e2e8f0;
}

.prt-category-count {
    color: #81e6d9;
    font-weight: 600;
}

.prt-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.prt-product-card {
    background: #2d3748;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #4a5568;
    transition: box-shadow 0.3s ease;
}

.prt-product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-color: #667eea;
}

.prt-product-card h6 {
    margin: 0 0 10px 0;
    color: #f7fafc;
    font-size: 1em;
}

.prt-product-details {
    margin-bottom: 10px;
}

.prt-product-details div {
    margin-bottom: 4px;
    font-size: 0.85em;
    color: #cbd5e0;
}

.prt-product-insights {
    padding-top: 8px;
    border-top: 1px solid #4a5568;
    font-size: 0.8em;
    color: #68d391;
}

/* Tables */
.prt-table-header,
.prt-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 10px;
    align-items: center;
}

.prt-table-header {
    background: #1a202c;
    font-weight: 600;
    color: #f7fafc;
    border-radius: 6px 6px 0 0;
    border-bottom: 2px solid #4a5568;
}

.prt-table-row {
    border-bottom: 1px solid #4a5568;
    font-size: 0.9em;
    color: #e2e8f0;
}

.prt-table-row:nth-child(even) {
    background: #1a202c;
}

.prt-table-row:hover {
    background: #2d3748;
}

/* Competition levels */
.prt-competition-low {
    color: #68d391;
    font-weight: 600;
}

.prt-competition-medium {
    color: #fbb040;
    font-weight: 600;
}

.prt-competition-high {
    color: #fc8181;
    font-weight: 600;
}

/* Keyword Research Results */
.prt-keyword-results {
    background: #2d3748;
    border-radius: 8px;
    border: 1px solid #4a5568;
}

.prt-keyword-summary {
    padding: 20px;
    border-bottom: 1px solid #4a5568;
}

.prt-keyword-summary h3 {
    margin-bottom: 10px;
    color: #f7fafc;
}

.prt-keyword-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.prt-keyword-stat {
    color: #cbd5e0;
    font-size: 0.9em;
}

.prt-all-platforms {
    padding: 20px;
}

.prt-platform-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #1a202c;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    border: 1px solid #4a5568;
}

.prt-platform-section h4 {
    margin-bottom: 15px;
    color: #81e6d9;
    text-transform: uppercase;
}

.prt-keywords-table,
.prt-amazon-table,
.prt-youtube-table,
.prt-pinterest-table {
    margin-bottom: 20px;
}

.prt-keywords-table h5,
.prt-amazon-table h5,
.prt-youtube-table h5,
.prt-pinterest-table h5 {
    margin-bottom: 10px;
    color: #f7fafc;
}

.prt-keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prt-keyword-tag {
    padding: 6px 12px;
    background: #667eea;
    color: white;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 500;
}

.prt-related-searches,
.prt-people-ask,
.prt-backend-keywords,
.prt-content-gaps,
.prt-board-ideas {
    margin-top: 20px;
    padding: 15px;
    background: #1a202c;
    border-radius: 6px;
    border: 1px solid #4a5568;
}

.prt-related-searches h5,
.prt-people-ask h5,
.prt-backend-keywords h5,
.prt-content-gaps h5,
.prt-board-ideas h5 {
    margin-bottom: 10px;
    color: #f7fafc;
    font-size: 1em;
}

.prt-people-ask ul {
    margin: 0;
    padding-left: 15px;
}

.prt-people-ask li {
    margin-bottom: 5px;
    color: #cbd5e0;
    font-size: 0.9em;
}

.prt-content-opportunities,
.prt-keyword-opportunities,
.prt-content-ideas {
    padding: 20px;
    background: #1a2d3a;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #2d5a7b;
}

.prt-content-opportunities h4,
.prt-keyword-opportunities h4,
.prt-content-ideas h4 {
    margin-bottom: 15px;
    color: #81e6d9;
}

.prt-content-opportunities ul,
.prt-keyword-opportunities ul,
.prt-content-ideas ul {
    margin: 0;
    padding-left: 20px;
}

.prt-content-opportunities li,
.prt-keyword-opportunities li,
.prt-content-ideas li {margin-bottom: 8px;
color: #e2e8f0;
font-size: 0.9em;
}
/* E-commerce keyword categories */
.prt-ecommerce-keywords {
padding: 20px;
}
.prt-ecommerce-category {
margin-bottom: 20px;
padding: 15px;
background: #1a202c;
border-radius: 6px;
border-left: 3px solid #667eea;
border: 1px solid #4a5568;
}
.prt-ecommerce-category h5 {
margin-bottom: 10px;
color: #f7fafc;
font-size: 1em;
}
/* Social Media Analysis */
.prt-social-analysis {
padding: 20px;
}
.prt-social-overview {
margin-bottom: 20px;
padding: 15px;
background: #1a202c;
border-radius: 6px;
border: 1px solid #4a5568;
}
.prt-social-stat {
color: #cbd5e0;
margin-bottom: 5px;
}
.prt-platforms-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
margin-bottom: 20px;
}
.prt-platform-card {
background: #2d3748;
padding: 15px;
border-radius: 6px;
border: 1px solid #4a5568;
}
.prt-platform-card h6 {
margin: 0 0 10px 0;
color: #f7fafc;
font-size: 1em;
padding-bottom: 5px;
border-bottom: 1px solid #4a5568;
}
.prt-platform-stats div {
margin-bottom: 4px;
font-size: 0.85em;
color: #cbd5e0;
}
.prt-content-strategy {
margin-top: 20px;
padding: 15px;
background: #1a202c;
border-radius: 6px;
border: 1px solid #4a5568;
}
.prt-content-breakdown {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 15px;
}
.prt-content-type {
display: flex;
justify-content: space-between;
padding: 6px 10px;
background: #2d3748;
border-radius: 4px;
font-size: 0.85em;
color: #e2e8f0;
border: 1px solid #4a5568;
}
.prt-content-insights div {
margin-bottom: 5px;
color: #cbd5e0;
font-size: 0.9em;
}
/* Advertising Analysis */
.prt-ads-analysis {
padding: 20px;
}
.prt-ad-platforms {
margin-bottom: 20px;
}
.prt-ad-platform-card {
background: #1a202c;
padding: 15px;
margin-bottom: 15px;
border-radius: 6px;
border-left: 3px solid #667eea;
border: 1px solid #4a5568;
}
.prt-ad-platform-card h6 {
margin: 0 0 10px 0;
color: #f7fafc;
}
.prt-ad-details div {
margin-bottom: 4px;
font-size: 0.85em;
color: #cbd5e0;
}
.prt-ad-copy {
margin-bottom: 20px;
padding: 15px;
background: #1a202c;
border-radius: 6px;
border: 1px solid #4a5568;
}
.prt-ad-copy-section {
margin-bottom: 15px;
}
.prt-ad-copy-section h6 {
margin-bottom: 8px;
color: #f7fafc;
font-size: 0.95em;
}
.prt-ad-copy-section ul {
margin: 0;
padding-left: 15px;
}
.prt-ad-copy-section li {
margin-bottom: 4px;
font-size: 0.85em;
color: #cbd5e0;
}
.prt-techniques {
color: #cbd5e0;
font-size: 0.85em;
}
.prt-ad-performance {
padding: 15px;
background: #1a202c;
border-radius: 6px;
border: 1px solid #4a5568;
}
.prt-performance-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 10px;
}
.prt-performance-item {
display: flex;
flex-direction: column;
padding: 10px;
background: #2d3748;
border-radius: 4px;
text-align: center;
border: 1px solid #4a5568;
}
.prt-performance-item span:first-child {
font-size: 0.8em;
color: #a0aec0;
margin-bottom: 4px;
}
.prt-performance-item strong {
color: #e2e8f0;
}
/* Pricing Analysis */
.prt-pricing-analysis {
padding: 20px;
}
.prt-pricing-strategy {
margin-bottom: 20px;
padding: 15px;
background: #1a202c;
border-radius: 6px;
border: 1px solid #4a5568;
}
.prt-strategy-details {
display: flex;
flex-direction: column;
gap: 8px;
}
.prt-strategy-item {
display: flex;
justify-content: space-between;
padding: 6px 10px;
background: #2d3748;
border-radius: 4px;
font-size: 0.85em;
color: #e2e8f0;
border: 1px solid #4a5568;
}
.prt-price-ranges {
margin-bottom: 20px;
}
.prt-ranges-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
}
.prt-range-card {
padding: 15px;
background: #1a202c;
border-radius: 6px;
text-align: center;
border: 1px solid #4a5568;
}
.prt-range-card h6 {
margin: 0 0 8px 0;
color: #f7fafc;
font-size: 0.9em;
text-transform: uppercase;
}
.prt-range-card div {
color: #cbd5e0;
}
.prt-discounts {
padding: 15px;
background: #1a202c;
border-radius: 6px;
border: 1px solid #4a5568;
}
.prt-discount-section {
margin-bottom: 15px;
}
.prt-discount-section h6 {
margin-bottom: 8px;
color: #f7fafc;
font-size: 0.95em;
}
.prt-discount-item {
display: flex;
justify-content: space-between;
padding: 4px 8px;
margin-bottom: 4px;
background: #2d3748;
border-radius: 3px;
font-size: 0.8em;
color: #e2e8f0;
border: 1px solid #4a5568;
}
.prt-discount-section ul {
margin: 0;
padding-left: 15px;
}
.prt-discount-section li {
margin-bottom: 4px;
font-size: 0.85em;
color: #cbd5e0;
}
/* Traffic Analysis */
.prt-traffic-analysis {
padding: 20px;
}
.prt-traffic-overview {
margin-bottom: 20px;
padding: 15px;
background: #1a202c;
border-radius: 6px;
text-align: center;
border: 1px solid #4a5568;
}
.prt-main-stat {
font-size: 1.2em;
color: #f7fafc;
}
.prt-traffic-sources {
margin-bottom: 20px;
}
.prt-sources-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 10px;
}
.prt-source-item {
display: flex;
justify-content: space-between;
padding: 8px 12px;
background: #1a202c;
border-radius: 4px;
font-size: 0.9em;
color: #e2e8f0;
border: 1px solid #4a5568;
}
.prt-source-percentage {
color: #81e6d9;
font-weight: 600;
}
.prt-demographics {
margin-bottom: 20px;
padding: 15px;
background: #1a202c;
border-radius: 6px;
border: 1px solid #4a5568;
}
.prt-demo-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.prt-demo-section h6 {
margin-bottom: 8px;
color: #f7fafc;
font-size: 0.95em;
}
.prt-demo-item {
display: flex;
justify-content: space-between;
padding: 4px 8px;
margin-bottom: 4px;
background: #2d3748;
border-radius: 3px;
font-size: 0.8em;
color: #e2e8f0;
border: 1px solid #4a5568;
}
.prt-engagement {
padding: 15px;
background: #1a202c;
border-radius: 6px;
border: 1px solid #4a5568;
}
.prt-engagement-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
}
.prt-engagement-card {
padding: 15px;
background: #2d3748;
border-radius: 6px;
text-align: center;
border: 1px solid #4a5568;
}
.prt-engagement-card h6 {
margin: 0 0 8px 0;
color: #a0aec0;
font-size: 0.8em;
text-transform: uppercase;
}
.prt-engagement-value {
font-size: 1.2em;
font-weight: 600;
color: #f7fafc;
}
/* SEO Analysis */
.prt-seo-analysis {
padding: 20px;
}
.prt-seo-authority {
margin-bottom: 20px;
}
.prt-authority-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
}
.prt-authority-card {
padding: 15px;
background: #1a202c;
border-radius: 6px;
text-align: center;
border: 1px solid #4a5568;
}
.prt-authority-card h5 {
margin: 0 0 8px 0;
color: #a0aec0;
font-size: 0.8em;
text-transform: uppercase;
}
.prt-authority-score {
font-size: 1.5em;
font-weight: 700;
color: #81e6d9;
}
.prt-backlinks {
margin-bottom: 20px;
padding: 15px;
background: #1a202c;
border-radius: 6px;
border: 1px solid #4a5568;
}
.prt-backlink-stats {
display: flex;
flex-wrap: wrap;
gap: 15px;
}
.prt-backlink-stat {
display: flex;
align-items: center;
gap: 5px;
font-size: 0.9em;
color: #cbd5e0;
}
.prt-top-keywords {
margin-bottom: 20px;
}
.prt-technical-seo {
padding: 15px;
background: #1a202c;
border-radius: 6px;
border: 1px solid #4a5568;
}
.prt-technical-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 10px;
}
.prt-technical-item {
display: flex;
justify-content: space-between;
padding: 8px 12px;
background: #2d3748;
border-radius: 4px;
font-size: 0.85em;
border-left: 3px solid transparent;
color: #e2e8f0;
}
.prt-status-good {
border-left-color: #48bb78;
background: #1a2e1a;
}
.prt-status-fair {
border-left-color: #ed8936;
background: #2e221a;
}
.prt-status-poor {
border-left-color: #f56565;
background: #2e1a1a;
}
/* Cross-platform section */
.prt-cross-platform {
margin-top: 20px;
padding: 20px;
background: #1a2d3a;
border-radius: 8px;
border-left: 4px solid #4299e1;
border: 1px solid #2d5a7b;
}
.prt-cross-platform h4 {
margin-bottom: 15px;
color: #81e6d9;
}
.prt-cross-platform ul {
margin: 0;
padding-left: 20px;
}
.prt-cross-platform li {
margin-bottom: 8px;
color: #e2e8f0;
font-size: 0.9em;
}
/* Error states */
.prt-error {
padding: 15px;
background: #2e1a1a;
color: #fc8181;
border: 1px solid #f56565;
border-radius: 6px;
margin: 20px 0;
}
/* Success states */
.prt-success {
padding: 15px;
background: #1a2e1a;
color: #68d391;
border: 1px solid #48bb78;
border-radius: 6px;
margin: 20px 0;
}
/* Links styling for dark theme */
.prt-container a {
color: #81e6d9;
text-decoration: none;
transition: color 0.3s ease;
}
.prt-container a:hover {
color: #4fd1c7;
text-decoration: underline;
}
.prt-container a:visited {
color: #b794f6;
}
/* Scrollbar styling for dark theme */
.prt-container ::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.prt-container ::-webkit-scrollbar-track {
background: #2d3748;
border-radius: 4px;
}
.prt-container ::-webkit-scrollbar-thumb {
background: #4a5568;
border-radius: 4px;
}
.prt-container ::-webkit-scrollbar-thumb:hover {
background: #667eea;
}
/* Selection styling for dark theme */
.prt-container ::selection {
background: #667eea;
color: white;
}
.prt-container ::-moz-selection {
background: #667eea;
color: white;
}
/* Responsive Design for Dark Theme */
@media (max-width: 768px) {
.prt-container {
padding: 15px;
margin: 10px;
background: #1a1a1a;
}
.prt-header {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.prt-tool-panel {
    background: #2d3748;
    padding: 20px 15px;
}

.prt-results {
    background: #1a202c;
}
}
@media (max-width: 480px) {
.prt-container {
padding: 10px;
margin: 5px;
background: #1a1a1a;
}
.prt-header {
    padding: 15px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.prt-tool-panel {
    padding: 15px 10px;
    background: #2d3748;
}

.prt-form-group input,
.prt-form-group select {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
}

.prt-form-group input:focus,
.prt-form-group select:focus {
    background: #2d3748;
    border-color: #667eea;
}
}
/* Print styles for dark theme */
@media print {
.prt-container {
background: white !important;
color: black !important;
box-shadow: none;
}
.prt-tool-panel {
    background: white !important;
    color: black !important;
}

.prt-results {
    background: white !important;
    color: black !important;
}

.prt-header {
    background: #333 !important;
    color: white !important;
}
.prt-tab-btn.active {
    background: #fff;
    color: #000;
}

.prt-btn-primary {
    background: #fff;
    color: #000;
}

.prt-tool-panel {
    background: #000;
    border-color: #fff;
}
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.prt-loading-spinner {
    animation: none;
    border: 4px solid #667eea;
    border-top: 4px solid white;
}
}