/* Homiies.id Custom Styles */

:root {
    --primary-color: #4a90ff;
    --secondary-color: #00d4aa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --border-color: #e9ecef;
    --text-muted: #6c757d;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Homiies-style Search Bar Enhancements */
.homiies-search-container {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 30px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-input-container:hover {
    border-color: #4a90ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 255, 0.15);
}

/* Header & Navigation */
.navbar {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(74, 144, 255, 0.1);
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    border-radius: 0.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    padding: 6rem 0 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="20" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="15" fill="rgba(255,255,255,0.1)"/><circle cx="150" cy="800" r="25" fill="rgba(255,255,255,0.1)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Search Form */
.search-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175);
    margin-top: 2rem;
}

.search-tabs {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.search-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    color: var(--text-muted);
    font-weight: 500;
    border-radius: 0.5rem 0.5rem 0 0;
    transition: all 0.3s ease;
}

.search-tab.active {
    background: var(--primary-color);
    color: white;
}

.form-select, .form-control {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-select:focus, .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 255, 0.25);
}

.btn-search {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #3a7bd5;
    transform: translateY(-1px);
}

/* Quick Stats */
.quick-stats {
    padding: 3rem 0;
    background: var(--light-color);
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Property Cards */
.property-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.15);
}

.property-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.property-favorite {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.property-favorite:hover, .property-favorite.active {
    color: var(--danger-color);
    background: rgba(220, 53, 69, 0.1);
}

.property-info {
    padding: 1.5rem;
}

.property-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.4;
}

.property-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.property-location i {
    margin-right: 0.5rem;
}

.property-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.property-spec {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.property-spec i {
    margin-right: 0.25rem;
    width: 14px;
}

.property-agent {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.agent-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
}

.agent-info {
    flex: 1;
}

.agent-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.agent-phone {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.category-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #3a7bd5;
    border-color: #3a7bd5;
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .search-form {
        padding: 1.5rem;
    }
    
    .property-specs {
        gap: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(74, 144, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Homiies-style Search Bar Complete Styles */
.search-tabs {
    justify-content: flex-start;
    margin-bottom: 20px;
}

.search-tab {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #6c757d;
    cursor: pointer;
}

.search-tab.active {
    background: linear-gradient(135deg, #4a90ff, #3d7fff);
    border-color: #4a90ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 255, 0.3);
}

.search-tab:hover:not(.active) {
    background: #e9ecef;
    border-color: #4a90ff;
    transform: translateY(-1px);
}

.search-bar-wrapper {
    position: relative;
}

.search-input-container {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    gap: 10px;
}

.search-input-container:focus-within {
    border-color: #4a90ff;
    box-shadow: 0 0 0 3px rgba(74, 144, 255, 0.1);
}

.search-icon {
    color: #6c757d;
    font-size: 18px;
    margin-left: 5px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    padding: 12px 10px;
    color: #333;
}

.search-input::placeholder {
    color: #adb5bd;
}

.search-filters {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-select {
    border: none;
    background: transparent;
    color: #6c757d;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    background: rgba(74, 144, 255, 0.1);
    color: #4a90ff;
}

.search-button {
    background: linear-gradient(135deg, #4a90ff, #3d7fff);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 5px;
}

.search-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(74, 144, 255, 0.4);
}

.quick-suggestions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.suggestion-label {
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.suggestion-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: linear-gradient(135deg, #4a90ff, #3d7fff);
    color: white;
    border-color: #4a90ff;
    transform: translateY(-1px);
}

/* Mobile Responsiveness for Homiies Search */
@media (max-width: 768px) {
    .search-filters {
        flex-direction: column;
        gap: 5px;
        align-items: stretch;
    }
    
    .filter-select {
        width: 100%;
        margin: 2px 0;
    }
    
    .search-input-container {
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
    }
    
    .quick-suggestions {
        justify-content: center;
    }
    
    .suggestion-tag {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* Utilities */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.border-primary { border-color: var(--primary-color) !important; }

/* Advertisement Banners */
.advertisement-banners {
    background: #f8f9fa;
}

/* Banner Carousel Styles */
.banner-carousel-container {
    max-width: 100%;
    overflow: hidden;
}

.banner-carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.banner-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
}

.banner-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* Desktop: Show 4 banners */
@media (min-width: 1200px) {
    .banner-slide {
        min-width: calc(25% - 11.25px);
    }
}

/* Tablet: Show 2 banners */
@media (min-width: 768px) and (max-width: 1199px) {
    .banner-slide {
        min-width: calc(50% - 7.5px);
    }
}

/* Mobile: Show 1 banner */
@media (max-width: 767px) {
    .banner-slide {
        min-width: 100%;
    }
    
    .banner-carousel-track {
        gap: 0;
    }
}

/* Navigation Arrows */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-nav:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.05);
}

.banner-nav-prev {
    left: -20px;
}

.banner-nav-next {
    right: -20px;
}

.banner-nav i {
    color: #4a90ff;
    font-size: 16px;
}

@media (max-width: 768px) {
    .banner-nav-prev {
        left: 10px;
    }
    
    .banner-nav-next {
        right: 10px;
    }
}

/* Banner Indicators */
.banner-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.banner-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-indicator.active {
    background: #4a90ff;
    transform: scale(1.2);
}

.banner-indicator:hover {
    background: #4a90ff;
    opacity: 0.8;
}

/* Dynamic Banner Styles */
.ad-banner {
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 80px;
    height: 100%;
}

.ad-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.ad-banner-dynamic {
    border-left: 4px solid rgba(255,255,255,0.3);
}

/* Banner Types */
.ad-banner-promo {
    background: linear-gradient(135deg, #4a90ff 0%, #357ae8 100%);
    color: white;
}

.ad-banner-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
}

.ad-banner-warning {
    background: #fff;
    border: 2px solid #ffc107;
    color: #333;
}

.ad-banner-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
}

/* Cari Properti Banner */
.ad-banner-blue {
    background: linear-gradient(135deg, #4a90ff 0%, #357ae8 100%);
    color: white;
}

.ad-banner-blue .ad-icon {
    background: rgba(255,255,255,0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ad-banner-blue .ad-title {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.ad-banner-blue .ad-subtitle {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Pasang Iklan Banner */
.ad-banner-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.ad-banner-orange .ad-icon {
    background: rgba(255,255,255,0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ad-banner-orange .ad-title {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.ad-banner-orange .ad-subtitle {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Dynamic Banner Content */
.ad-icon {
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ad-content {
    flex-grow: 1;
    min-width: 0;
}

.ad-title {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.ad-subtitle {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.ad-description {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.3;
}

.ad-cta .btn-like {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ad-arrow {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ad-banner:hover .ad-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Warning Banner Specific Styles */
.ad-banner-warning .ad-icon {
    background: #ffc107;
    color: #333;
}

.ad-banner-warning .ad-cta .btn-like {
    background: #dc3545;
    color: white;
}

.ad-banner-warning .ad-arrow {
    color: #ffc107;
}

/* Responsive Design for Ad Banners */
@media (max-width: 768px) {
    .ad-banner {
        min-height: 70px;
        padding: 12px;
        gap: 10px;
    }
    
    .ad-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .ad-title {
        font-size: 14px;
    }
    
    .ad-subtitle {
        font-size: 12px;
    }
    
    .ad-description {
        font-size: 11px;
    }
}

/* Homiies Banners */
.ad-banner-pinhome {
    background: linear-gradient(135deg, #4a90ff 0%, #357ae8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ad-banner-pinhome .pinhome-content {
    flex: 1;
}

.ad-banner-pinhome .pinhome-logo {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.ad-banner-pinhome .pinhome-text {
    line-height: 1.3;
    margin-bottom: 5px;
}

.ad-banner-pinhome .pinhome-cta {
    font-size: 12px;
    opacity: 0.9;
    text-decoration: underline;
}

.ad-banner-pinhome .pinhome-image {
    border-radius: 8px;
    overflow: hidden;
}

/* Homiies Warning Banner */
.ad-banner-pinhome-warning {
    background: #fff;
    border: 2px solid #ff4444;
    color: #333;
    position: relative;
}

.ad-banner-pinhome-warning .warning-icon {
    color: #ff4444;
    font-size: 24px;
    margin-right: 5px;
}

.ad-banner-pinhome-warning .pinhome-logo {
    font-size: 14px;
    font-weight: 700;
    color: #4a90ff;
    margin-bottom: 3px;
}

.ad-banner-pinhome-warning .warning-text {
    line-height: 1.2;
    font-size: 12px;
    margin-bottom: 5px;
}

.ad-banner-pinhome-warning .warning-cta {
    background: #ff4444;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
}

.ad-banner-pinhome-warning .pinhome-avatar {
    border-radius: 8px;
    overflow: hidden;
}

.ad-arrow {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

/* Responsive Design for Ad Banners */
@media (max-width: 768px) {
    .ad-banner {
        min-height: 70px;
        padding: 12px;
        gap: 10px;
    }
    
    .ad-banner-blue .ad-icon,
    .ad-banner-orange .ad-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .ad-banner-blue .ad-title,
    .ad-banner-orange .ad-title {
        font-size: 14px;
    }
    
    .ad-banner-blue .ad-subtitle,
    .ad-banner-orange .ad-subtitle {
        font-size: 12px;
    }
    
    .ad-banner-pinhome .pinhome-logo {
        font-size: 14px;
    }
    
    .ad-banner-pinhome .pinhome-text {
        font-size: 11px;
    }
    
    .ad-banner-pinhome-warning .warning-text {
        font-size: 11px;
    }
}
