:root {
    --primary-color: #6C5CE7;
    --secondary-color: #a29bfe;
    --danger-color: #ff6b6b;
    --text-color: #2d3436;
    --light-text: #636e72;
    --background: #ffffff;
    --light-background: #f5f6fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-scammed {
    background-color: var(--danger-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    padding: 8rem 5% 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-background) 0%, var(--background) 100%);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-container form {
    display: flex;
    gap: 1rem;
}

.search-container input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--light-text);
    border-radius: 5px;
    font-size: 1rem;
}

.search-container input.error {
    border-color: var(--danger-color);
    background-color: rgba(255, 107, 107, 0.05);
}

.validation-error {
    color: var(--danger-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: left;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: rgba(255, 107, 107, 0.1);
    border-left: 3px solid var(--danger-color);
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: var(--secondary-color);
}

.description {
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-text);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    background-color: var(--light-background);
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background-color: var(--background);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Verify Page Styles */
.verify-container {
    padding: 8rem 5% 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.verification-info {
    margin-top: 4rem;
}

.verification-info h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.info-box {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-box h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Report Page Styles */
.report-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.report-header h1 {
    font-size: 2.5rem;
}

.report-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.report-date {
    color: var(--light-text);
}

.refresh-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.refresh-btn:hover {
    background-color: var(--secondary-color);
}

/* Detail Sections */
.detail-section {
    background-color: var(--light-background);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-section h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.tech-grid, .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.tech-item, .info-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tech-label, .info-label {
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 5px;
}

.tech-value, .info-value {
    word-break: break-word;
}

/* Administrator Section */
.admin-info .info-grid {
    grid-template-columns: 1fr;
}

.admin-info .info-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
}

.admin-info .info-label {
    margin-bottom: 0;
    flex: 0 0 150px;
}

.admin-info .info-value {
    text-align: right;
    font-weight: 500;
}

/* Server and Registrar Sections */
.server-info .info-grid, .registrar-info .info-grid {
    grid-template-columns: 1fr;
}

.server-info .info-item, .registrar-info .info-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
}

.server-info .info-label, .registrar-info .info-label {
    margin-bottom: 0;
    flex: 0 0 150px;
}

.server-info .info-value, .registrar-info .info-value {
    text-align: right;
    font-weight: 500;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-danger {
    background-color: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
}

/* Reviews Section Styles */
.reviews-section {
    background-color: var(--light-background);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reviews-section h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.reviews-section h3 {
    margin: 25px 0 15px;
    color: var(--text-color);
    font-size: 1.4rem;
}

.reviews-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.avg-rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.avg-rating-score {
    display: flex;
    align-items: baseline;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.rating-max {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-left: 5px;
}

.avg-rating-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.stars {
    font-size: 1.5rem;
    color: #dfe6e9;
    margin-bottom: 5px;
}

.star.filled {
    color: #fdcb6e;
}

.total-reviews {
    color: var(--light-text);
    font-size: 0.9rem;
}

.rating-breakdown {
    flex: 1;
    min-width: 300px;
}

.rating-bar-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-label {
    width: 40px;
    text-align: right;
    margin-right: 10px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.rating-bar {
    flex: 1;
    height: 12px;
    background-color: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 10px;
}

.rating-fill {
    height: 100%;
    background-color: #fdcb6e;
    border-radius: 10px;
}

.rating-count {
    width: 30px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.reviews-list {
    margin-bottom: 30px;
}

.review-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.review-date {
    color: var(--light-text);
    font-size: 0.85rem;
}

.review-rating {
    font-size: 1.2rem;
    color: #dfe6e9;
}

.review-content {
    line-height: 1.6;
    color: var(--text-color);
}

.no-reviews {
    text-align: center;
    color: var(--light-text);
    padding: 20px;
    font-style: italic;
}

.submit-review {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.submit-review h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-height: 120px;
    font-size: 1rem;
    resize: vertical;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 1.8rem;
    color: #dfe6e9;
    cursor: pointer;
    margin-right: 5px;
    transition: color 0.2s;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #fdcb6e;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

/* Technical Information Section - FAQ Style */
.technical-info {
    margin-bottom: 30px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-content {
    padding: 0 20px 20px;
    border-top: 1px solid #eee;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background-color: var(--light-background);
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tech-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.tech-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.tech-value {
    word-break: break-word;
    color: var(--light-text);
    font-size: 0.95rem;
}

.tech-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.tech-list li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.tech-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.tech-boolean {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.85rem;
}

.tech-true {
    background-color: rgba(46, 213, 115, 0.15);
    color: #2ed573;
}

.tech-false {
    background-color: rgba(255, 71, 87, 0.15);
    color: #ff4757;
}

.no-tech-info {
    text-align: center;
    color: var(--light-text);
    padding: 20px;
    font-style: italic;
}

/* Facts Container Styles */
.facts-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.facts-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.facts-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f2ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.facts-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #333;
}

.accordion-container {
    padding: 10px 0;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-title {
    font-weight: 500;
    color: #444;
}

.accordion-toggle {
    font-size: 1.2rem;
    color: #999;
    transform: rotate(90deg);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(270deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.info-list {
    padding: 15px 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.info-row:last-child {
    border-bottom: none;
}

.info-key {
    font-weight: 500;
    color: #666;
}

.info-value {
    text-align: right;
    color: #333;
}

.boolean-value {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.true-value {
    background-color: rgba(46, 213, 115, 0.15);
    color: #2ed573;
}

.false-value {
    background-color: rgba(255, 71, 87, 0.15);
    color: #ff4757;
}

.no-data {
    padding: 15px 20px;
    color: #999;
    font-style: italic;
    text-align: center;
}

.facts-list {
    list-style-type: none;
    padding: 15px 20px;
    margin: 0;
}

.fact-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-item:before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #999;
}

.fact-item.positive:before {
    color: #2ed573;
}

.fact-item.negative:before {
    color: #ff4757;
}

/* Key Points Section */
.key-points-section {
    margin-bottom: 30px;
}

.key-points-section h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.points-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.points-column {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.positive-column {
    background-color: #f0fff4;
    border: 1px solid #e6ffee;
}

.negative-column {
    background-color: #fff5f5;
    border: 1px solid #ffe6e6;
}

.points-column h3 {
    padding: 15px;
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.positive-column h3 {
    color: #38a169;
}

.negative-column h3 {
    color: #e53e3e;
}

.points-list {
    list-style: none;
    padding: 15px;
    margin: 0;
}

.point-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.point-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.point-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.point-icon.positive {
    background-color: #38a169;
    color: white;
}

.point-icon.negative {
    background-color: #e53e3e;
    color: white;
}

.point-icon i {
    font-size: 0.8rem;
}

.point-content {
    flex: 1;
    line-height: 1.5;
}

.point-content strong {
    font-weight: 600;
}

/* Facts Section */
.facts-section {
    margin-bottom: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.facts-section h2 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #333;
    text-align: center;
}

.facts-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fact-item-horizontal {
    background-color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.fact-item-horizontal i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Website Screenshot Section */
.website-screenshot {
    margin-bottom: 30px;
}

.website-screenshot h2 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #333;
}

.screenshot-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.screenshot-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.no-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.no-screenshot i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.visit-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.visit-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.visit-btn i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .search-container form {
        flex-direction: column;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .report-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 20px;
    }
    
    .avg-rating-container {
        width: 100%;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-rating {
        margin-top: 10px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-value {
        text-align: left;
        margin-top: 5px;
    }
    
    .points-container {
        flex-direction: column;
    }
    
    .points-column {
        min-width: 100%;
    }
    
    .facts-list-horizontal {
        flex-direction: column;
    }
    
    .fact-item-horizontal {
        width: 100%;
    }
    
    .screenshot-overlay {
        opacity: 1;
    }
}

/* Scam Directory Section Styles */
.scam-directory-section {
    margin: 2rem 0;
    background-color: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.scam-directory-section h2 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.scam-directory-intro {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.scam-status-indicator {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.scam-status-indicator.safe {
    background-color: rgba(46, 213, 115, 0.15);
    color: #2ed573;
    border-left: 4px solid #2ed573;
}

.scam-status-indicator.warning {
    background-color: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
    border-left: 4px solid #ff6b6b;
}

.scam-status-indicator i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.scam-directories-list {
    margin-top: 1.5rem;
}

.scam-directories-list h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.directory-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.directory-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 6px;
    background-color: var(--light-background);
    transition: transform 0.2s ease;
}

.directory-item:hover {
    transform: translateY(-2px);
}

.directory-item.listed {
    border-left: 3px solid #ff6b6b;
}

.directory-item.not-listed {
    border-left: 3px solid #2ed573;
}

.directory-icon {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.directory-item.listed .directory-icon {
    color: #ff6b6b;
}

.directory-item.not-listed .directory-icon {
    color: #2ed573;
}

.directory-info {
    display: flex;
    flex-direction: column;
}

.directory-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.directory-status {
    font-size: 0.85rem;
    color: var(--light-text);
}

.directory-item.no-data {
    grid-column: 1 / -1;
    justify-content: center;
    color: var(--light-text);
    font-style: italic;
}

.scam-directory-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(108, 92, 231, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.scam-directory-note strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .directory-list {
        grid-template-columns: 1fr;
    }
    
    .scam-directory-section {
        padding: 1.5rem;
    }
}

/* Website Review Section Styles */
.website-review-section {
    margin: 30px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.website-review-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.website-review-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-content {
    line-height: 1.6;
    color: #444;
    font-size: 1.05rem;
}

.website-type-info h3, 
.additional-info-section h3,
.website-analysis-summary h3 {
    font-size: 1.4rem;
    color: #444;
    margin-bottom: 15px;
}

/* Additional Info Grid Styles */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.info-item {
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 12px 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.info-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.info-value {
    color: #333;
    font-size: 1rem;
}

/* Analysis Summary Styles */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.summary-item {
    background-color: #f5f7fa;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.summary-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.summary-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.score-value.good, .summary-value.good {
    color: #28a745;
}

.score-value.medium, .summary-value.medium {
    color: #ffc107;
}

.score-value.bad, .summary-value.bad {
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .website-review-section {
        padding: 15px;
    }
    
    .info-grid, .summary-grid {
        grid-template-columns: 1fr;
    }
} 