/* AI Artists Page Styles */

.ai-artists-page {
    background: #fff;
    margin: -20px -15px 0;
    padding-bottom: 60px;
}

/* Hero Section */
.ai-artists-hero {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.ai-artists-hero h1 {
    font-size: 2.8em;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.ai-artists-hero .hero-subtitle {
    font-size: 1.15em;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.ai-artists-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.ai-artists-hero .hero-stat {
    text-align: center;
}

.ai-artists-hero .stat-number {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: #eba133;
}

.ai-artists-hero .stat-label {
    font-size: 0.9em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search Section */
.ai-artists-search {
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.ai-artists-search .search-form {
    display: flex;
    justify-content: center;
}

.ai-artists-search .form-group {
    display: flex;
    width: 100%;
    gap: 10px;
}

.ai-artists-search .form-control {
    flex: 1;
    border-radius: 50px;
    padding: 12px 20px;
    border: 2px solid #eee;
    font-size: 1em;
}

.ai-artists-search .form-control:focus {
    border-color: #eba133;
    outline: none;
    box-shadow: 0 0 0 3px rgba(235, 161, 51, 0.1);
}

.ai-artists-search .submit {
    border-radius: 50px;
    padding: 12px 25px;
}

/* Info Cards Section */
.ai-artists-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 50px 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.ai-artists-info .info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-artists-info .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.ai-artists-info .info-card i {
    font-size: 2.2em;
    color: #eba133;
    margin-bottom: 15px;
}

.ai-artists-info .info-card h3 {
    font-size: 1.15em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.ai-artists-info .info-card p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Rankings Header */
.ai-artists-rankings-header {
    text-align: center;
    padding: 40px 20px 30px;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.ai-artists-rankings-header h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.ai-artists-rankings-header h2 i {
    color: #eba133;
    margin-right: 10px;
}

.ai-artists-rankings-header p {
    color: #888;
    font-size: 1em;
    margin: 0;
}

/* Artist List Section */
.ai-artists-list {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Override existing top-dreamers styles for modern look */
.ai-artists-page .top-dreamers {
    background: transparent;
}

.ai-artists-page .top-dreamers .single-dreamer {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.ai-artists-page .top-dreamers .single-dreamer:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Rank badge - top left corner */
.ai-artists-page .top-dreamers .single-dreamer-rank-box {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #eba133, #e08d1a);
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 12px 0;
    padding: 0px;
}

.ai-artists-page .top-dreamers .single-dreamer-rank {
    color: #fff;
    font-size: 0.95em;
    font-weight: 700;
    margin: 0;
}

.ai-artists-page .top-dreamers .single-dreamer-rank .fa-trophy {
    color: #fff;
    font-size: 1em;
}

/* Profile section */
.ai-artists-page .top-dreamers .profile {
    text-align: center;
    width: 100%;
    float: none !important;
    padding: 0;
    margin-bottom: 15px;
}

.ai-artists-page .top-dreamers .profile > a {
    display: inline-block;
}

.ai-artists-page .top-dreamers .profile-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eba133;
    margin-bottom: 10px;
}

.ai-artists-page .top-dreamers .profile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-artists-page .top-dreamers .profile h4 {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.ai-artists-page .top-dreamers .profile li {
    line-height: 1.4;
}

.ai-artists-page .top-dreamers .profile li:last-child {
    font-size: 0.85em;
    color: #888;
}

.ai-artists-page .top-dreamers .profile li:last-child span {
    position: static !important;
    top: auto !important;
}

.ai-artists-page .top-dreamers .profile .inspiredby-icon-sized-25 svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 3px;
}

/* Images grid */
.ai-artists-page .top-dreamers .col-lg-10 {
    width: 100%;
    float: none !important;
    padding: 0;
}

.ai-artists-page .top-dreamers ul.best-dreams {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-artists-page .top-dreamers ul.best-dreams > li {
    text-align: center;
    display: block !important;
    float: none !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ai-artists-page .top-dreamers ul.best-dreams > li .light-gallery-item,
.ai-artists-page .top-dreamers ul.best-dreams > li .image-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.ai-artists-page .top-dreamers ul.best-dreams > li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.ai-artists-page .top-dreamers ul.best-dreams > li:hover img {
    transform: scale(1.05);
}

.ai-artists-page .top-dreamers .views-likes {
    font-size: 0.75em;
    color: #999;
    margin-top: 6px;
}

.ai-artists-page .top-dreamers .clearfix {
    display: none;
}

/* CTA Section */
.ai-artists-cta {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.ai-artists-cta h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.ai-artists-cta p {
    font-size: 1.05em;
    color: #666;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ai-artists-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ai-artists-cta .btn-orange {
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(235, 161, 51, 0.3);
}

.ai-artists-cta .btn-outline {
    padding: 12px 30px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid #ddd;
    color: #333;
    font-weight: 600;
    transition: all 0.2s ease;
}

.ai-artists-cta .btn-outline:hover {
    border-color: #eba133;
    color: #eba133;
    background: rgba(235, 161, 51, 0.05);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .ai-artists-info {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .ai-artists-hero {
        padding: 40px 20px;
    }

    .ai-artists-hero h1 {
        font-size: 2em;
    }

    .ai-artists-hero .hero-subtitle {
        font-size: 1em;
    }

    .ai-artists-hero .hero-stats {
        gap: 25px;
    }

    .ai-artists-hero .stat-number {
        font-size: 1.4em;
    }

    .ai-artists-rankings-header h2 {
        font-size: 1.4em;
    }

    .ai-artists-page .top-dreamers .single-dreamer {
        padding: 20px 15px;
    }

    .ai-artists-page .top-dreamers .profile-image {
        width: 60px;
        height: 60px;
    }

    .ai-artists-page .top-dreamers ul.best-dreams {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
    }

    .ai-artists-cta {
        padding: 40px 20px;
    }

    .ai-artists-cta h2 {
        font-size: 1.4em;
    }
}
