: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 - Redesigned */
.scam-directory-section {
    margin: 2.5rem 0;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 0;
    overflow: hidden;
}

.section-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 1px solid #f1f1f1;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header h2 i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.section-divider {
    height: 3px;
    width: 60px;
    background: var(--primary-color);
    margin-top: 1rem;
}

.scam-directory-container {
    padding: 1.5rem 2rem 2rem;
}

.section-description {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Status Card Styles */
.scam-status-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.scam-status-card:hover {
    transform: translateY(-3px);
}

.scam-status-card.safe {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.1), rgba(46, 213, 115, 0.05));
    border-left: 5px solid #2ed573;
}

.scam-status-card.warning {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
    border-left: 5px solid #ff6b6b;
}

.status-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    padding-top: 0.5rem;
}

.scam-status-card.safe .status-icon {
    color: #2ed573;
}

.scam-status-card.warning .status-icon {
    color: #ff6b6b;
}

.status-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.status-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Directories Section */
.directories-section {
    margin-bottom: 2rem;
}

.directories-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: #333;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.directories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.directory-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    overflow: hidden;
}

.directory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.directory-card.listed {
    background: linear-gradient(135deg, #fff, #fff9f9);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.directory-card.not-listed {
    background: linear-gradient(135deg, #fff, #f9fffc);
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.directory-status-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.success {
    background-color: rgba(46, 213, 115, 0.15);
    color: #2ed573;
}

.status-badge.danger {
    background-color: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

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

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

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

.directory-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.directory-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* No Data Card */
.no-data-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px dashed #ddd;
}

.no-data-icon {
    font-size: 1.5rem;
    color: #aaa;
    margin-right: 1rem;
}

.no-data-card p {
    color: #888;
    font-size: 1rem;
    margin: 0;
}

/* Info Card */
.info-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: rgba(108, 92, 231, 0.08);
    border-left: 5px solid #6c5ce7;
}

.info-icon {
    font-size: 1.5rem;
    color: #6c5ce7;
    margin-right: 1.25rem;
    padding-top: 0.25rem;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .directories-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .scam-directory-section {
        margin: 2rem 0;
        border-radius: 10px;
    }
    
    .section-header {
        padding: 1.25rem 1.5rem;
    }
    
    .scam-directory-container {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    
    .scam-status-card {
        flex-direction: column;
        padding: 1.25rem;
    }
    
    .status-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .directories-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        flex-direction: column;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .status-content h3 {
        font-size: 1.15rem;
    }
    
    .directories-section h3 {
        font-size: 1.1rem;
    }
}

/* 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;
    }
} 

/* Modern Report Page Styles - 2024 Redesign */
.report-page {
    background-color: #f8fafc;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.report-hero {
    background: linear-gradient(135deg, #4a6cf7, #6c5ce7);
    padding: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.report-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.report-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.report-domain {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.report-domain-url {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.report-meta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.report-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    min-width: 150px;
}

.meta-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.report-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.report-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.report-btn-primary {
    background-color: white;
    color: #4a6cf7;
}

.report-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.report-btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.report-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.report-content {
    max-width: 1200px;
    margin: -50px auto 3rem;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.report-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 2rem;
}

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

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

.report-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.report-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.report-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.report-card-title i {
    color: #4a6cf7;
}

.report-card-body {
    padding: 1.5rem;
}

.report-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f1f5f9;
    background-color: #f8fafc;
    font-size: 0.9rem;
    color: #64748b;
}

/* Score Circle */
.score-circle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.modern-score-circle {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: conic-gradient(var(--score-color) var(--score-percent), #e2e8f0 var(--score-percent));
}

.modern-score-circle::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: white;
}

.score-value {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    font-weight: 700;
    color: var(--score-color);
}

.score-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

.score-description {
    color: #64748b;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.score-safe {
    --score-color: #10b981;
    --score-percent: 100%;
}

.score-caution {
    --score-color: #f59e0b;
    --score-percent: 60%;
}

.score-danger {
    --score-color: #ef4444;
    --score-percent: 30%;
}

/* Website Type */
.website-type-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.type-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.type-badge {
    background-color: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.type-badge i {
    color: #4a6cf7;
}

.type-description {
    color: #475569;
    line-height: 1.6;
}

/* Info Grid */
.modern-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
}

.modern-info-item {
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.modern-info-item:hover {
    background-color: #f1f5f9;
    transform: translateY(-3px);
}

.modern-info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.modern-info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    word-break: break-word;
}

.value-positive {
    color: #10b981;
}

.value-negative {
    color: #ef4444;
}

.value-neutral {
    color: #f59e0b;
}

/* Screenshot Section */
.modern-screenshot {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.screenshot-domain {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .report-grid {
        grid-template-columns: 1fr;
    }
    
    .report-domain {
        font-size: 2rem;
    }
    
    .report-meta-info {
        gap: 1rem;
    }
    
    .report-meta-item {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .report-hero {
        padding: 2rem 0;
    }
    
    .report-domain {
        font-size: 1.75rem;
    }
    
    .report-domain-url {
        font-size: 1rem;
    }
    
    .report-meta-info {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .report-meta-item {
        width: 100%;
        max-width: 300px;
    }
    
    .report-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .report-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .modern-info-grid {
        grid-template-columns: 1fr;
    }
    
    .score-circle-container {
        padding: 1.5rem;
    }
    
    .modern-score-circle {
        width: 150px;
        height: 150px;
    }
    
    .modern-score-circle::before {
        width: 120px;
        height: 120px;
    }
    
    .score-value {
        font-size: 2.5rem;
    }
} 