/* Site Detail Page - Modern Design */
.site-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #fff;
}

/* Site Header */
.site-header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(42, 42, 78, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.site-logo-section {
    display: flex;
    gap: 25px;
    align-items: center;
}

.site-logo {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.site-basic-info {
    flex: 1;
}

.site-name {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.current-domain {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.current-domain:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-1px);
}

.domain-text {
    color: #10b981;
    font-weight: 700;
    margin-right: 6px;
    text-shadow: 0 1px 3px rgba(16, 185, 129, 0.3);
}

.domain-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.1);
}

.domain-link:hover {
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.2);
    text-decoration: none;
    transform: scale(1.05);
}

.site-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rating-value {
    font-size: 24px;
    font-weight: bold;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 20px;
    color: #555;
    transition: color 0.3s ease;
}

.star.filled {
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.rating-text {
    color: #10b981;
    font-weight: 600;
    font-size: 16px;
}

.site-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.site-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.bonus-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 250px;
}

.bonus-type {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-amount {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.bonus-description {
    font-size: 12px;
    color: #ccc;
    line-height: 1.4;
}

.visit-site-btn {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

.visit-site-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
    color: white;
    text-decoration: none;
}

/* Site Summary Cards */
.site-summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(42, 42, 78, 0.7));
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.card-content {
    flex: 1;
}

.card-label {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 5px;
    font-weight: 500;
}

.card-value {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

/* Tabs */
.site-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 0;
    flex-wrap: wrap;
    background: rgba(26, 26, 46, 0.5);
    padding: 5px;
    border-radius: 15px 15px 0 0;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-bottom: none;
}

.tab-button {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: #ccc;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.tab-button:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.tab-button.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Tab Panels */
.tab-panels {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(42, 42, 78, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0 0 15px 15px;
    padding: 30px;
    min-height: 400px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

/* Panel Grid */
.panel-grid {
    display: grid;
    gap: 30px;
}

.panel-section {
    background: rgba(10, 14, 26, 0.5);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.panel-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #60a5fa;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pros and Cons Lists */
.pros-list, .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li, .cons-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    position: relative;
    padding-left: 25px;
}

.pros-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cons-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    background: rgba(10, 14, 26, 0.3);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 10px;
}

.feature-description {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits li {
    padding: 5px 0;
    color: #ccc;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.feature-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.info-item {
    background: rgba(10, 14, 26, 0.3);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.info-item strong {
    color: #60a5fa;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.info-item span {
    color: #ccc;
}

/* Games Overview */
.games-overview h3 {
    font-size: 24px;
    color: #60a5fa;
    margin-bottom: 25px;
    text-align: center;
}

.total-games {
    text-align: center;
    margin-bottom: 30px;
    background: rgba(10, 14, 26, 0.5);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.games-count {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 5px;
}

.games-label {
    color: #ccc;
    font-size: 16px;
}

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

.game-category {
    background: rgba(10, 14, 26, 0.5);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
}

.game-count {
    font-size: 24px;
    font-weight: bold;
    color: #60a5fa;
    margin-bottom: 8px;
}

.game-type {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.game-providers {
    font-size: 12px;
    color: #ccc;
}

/* Bonus Details */
.bonus-details h3 {
    font-size: 24px;
    color: #60a5fa;
    margin-bottom: 25px;
    text-align: center;
}

.bonus-card {
    background: rgba(10, 14, 26, 0.5);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-left: 4px solid #f59e0b;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.bonus-type {
    font-size: 18px;
    font-weight: bold;
    color: #f59e0b;
}

.bonus-amount {
    font-size: 20px;
    font-weight: 900;
    color: #10b981;
}

.bonus-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.term-item {
    background: rgba(10, 14, 26, 0.3);
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
}

.term-item strong {
    color: #60a5fa;
}

/* Payment Info */
.payment-info h3 {
    font-size: 24px;
    color: #60a5fa;
    margin-bottom: 25px;
    text-align: center;
}

.payment-section {
    margin-bottom: 30px;
}

.payment-section h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method {
    background: rgba(10, 14, 26, 0.5);
    border-radius: 8px;
    padding: 15px 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #ccc;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-3px);
    background: rgba(59, 130, 246, 0.1);
}

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

.limit-item {
    background: rgba(10, 14, 26, 0.3);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.limit-item strong {
    color: #60a5fa;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Security Info */
.security-info h3 {
    font-size: 24px;
    color: #60a5fa;
    margin-bottom: 25px;
    text-align: center;
}

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

.security-item {
    background: rgba(10, 14, 26, 0.5);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.security-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
}

.security-content {
    flex: 1;
}

.security-content strong {
    color: #10b981;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.security-content p {
    color: #ccc;
    line-height: 1.5;
    margin: 0 0 5px 0;
}

.security-content small {
    color: #999;
    font-size: 12px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.cta-content h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-button {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
    color: white;
    text-decoration: none;
}

/* Site Not Found */
.site-not-found {
    text-align: center;
    padding: 60px 20px;
}

.not-found-content h1 {
    font-size: 36px;
    color: #ef4444;
    margin-bottom: 20px;
}

.not-found-content p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 30px;
}

.back-btn {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-detail-container {
        padding: 15px;
    }
    
    .site-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .site-logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .site-name {
        font-size: 24px;
    }
    
    .site-summary-cards {
        grid-template-columns: 1fr;
    }
    
    .site-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .tab-button {
        border-radius: 0;
        border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    }
    
    .tab-button:first-child {
        border-radius: 15px 15px 0 0;
    }
    
    .tab-button:last-child {
        border-radius: 0;
        border-bottom: none;
    }
    
    .tab-panels {
        border-radius: 0 0 15px 15px;
        padding: 20px;
    }
    
    .bonus-header {
        flex-direction: column;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-limits {
        grid-template-columns: 1fr;
    }
    
    .bonus-terms {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .site-name {
        font-size: 20px;
    }
    
    .site-rating {
        flex-direction: column;
        gap: 10px;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
    }
    
    .card-icon {
        margin: 0 auto;
    }
    
    .final-cta {
        padding: 25px 15px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .article-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .article-section-content {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .article-heading {
        font-size: 16px;
    }
    
    .article-text {
        font-size: 14px;
    }
    
    .article-cta {
        padding: 15px;
        margin-top: 20px;
    }
    
    .article-cta-content h3 {
        font-size: 18px;
    }
    
    .article-cta-content p {
        font-size: 13px;
    }
    
    .article-cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Article Section */
.article-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(42, 42, 78, 0.7));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.article-title {
    font-size: 32px;
    font-weight: 900;
    color: #3b82f6;
    margin: 0;
    text-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-section-content {
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(10, 14, 26, 0.5);
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.article-section-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    border-left-color: #10b981;
}

.article-heading {
    font-size: 24px;
    font-weight: bold;
    color: #60a5fa;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-heading::before {
    content: "📖";
    font-size: 20px;
}

.article-text {
    font-size: 16px;
    line-height: 1.8;
    color: #e2e8f0;
    margin: 0;
    text-align: justify;
}

/* Article CTA */
.article-cta {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    text-align: center;
}

.article-cta-content h3 {
    font-size: 24px;
    color: #3b82f6;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.article-cta-content p {
    font-size: 16px;
    color: #cbd5e1;
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.article-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
    background: linear-gradient(45deg, #2563eb, #059669);
    color: white;
    text-decoration: none;
}

/* Popular Tags Section */
.popular-tags-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(42, 42, 78, 0.7));
    border-radius: 15px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(15px);
}

.tags-title {
    color: #3b82f6;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    text-transform: lowercase;
}

.tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
    background: linear-gradient(45deg, #10b981, #3b82f6);
    color: white;
    text-decoration: none;
}

.tag:active {
    transform: translateY(-1px) scale(1.02);
}

/* Article Responsive */
@media (max-width: 768px) {
    .article-section {
        padding: 25px;
        margin-top: 30px;
    }
    
    .article-title {
        font-size: 26px;
    }
    
    .article-section-content {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .article-heading {
        font-size: 20px;
    }
    
    .article-text {
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }
    
    .article-cta {
        padding: 20px;
        margin-top: 30px;
    }
    
    .article-cta-content h3 {
        font-size: 20px;
    }
    
    .article-cta-content p {
        font-size: 14px;
    }
    
    .article-cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* SEO Image Gallery - Clean Professional Design */
.seo-image-gallery {
    margin: 50px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    backdrop-filter: blur(20px);
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 15px;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 1px;
}

.gallery-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.image-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.image-placeholder {
    height: 180px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: all 0.6s ease;
}

.image-card:hover .image-placeholder::before {
    left: 100%;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover .image-placeholder img {
    transform: scale(1.05);
}

.image-placeholder svg {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.image-card:hover .image-placeholder svg {
    opacity: 1;
    transform: scale(1.1);
}

.image-info {
    padding: 20px;
    background: rgba(15, 23, 42, 0.8);
}

.image-title {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.image-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.image-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
}

.image-tag:hover {
    background: rgba(59, 130, 246, 0.3);
    color: #dbeafe;
    transform: translateY(-1px);
}

/* Gallery Stats */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 35px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.stat-item {
    text-align: center;
    padding: 10px 15px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Modal Styles - Professional Design */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.modal-content {
    position: relative;
    margin: 3% auto;
    width: 95%;
    max-width: 1000px;
    height: 90%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-image-container {
    display: flex;
    height: 100%;
    flex: 1;
}

.modal-image {
    width: 65%;
    height: 100%;
    object-fit: cover;
    background: #1e293b;
}

.modal-info {
    width: 35%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(15, 23, 42, 0.95);
    overflow-y: auto;
}

.modal-title {
    color: #f8fafc;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    padding-bottom: 15px;
}

.modal-description {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: justify;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.modal-tag {
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.3));
    color: #e2e8f0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.modal-tag:hover {
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.5), rgba(16, 185, 129, 0.5));
    transform: translateY(-2px);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f5f9;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-modal:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.9);
    color: #f1f5f9;
    border: 2px solid rgba(59, 130, 246, 0.3);
    font-size: 28px;
    padding: 20px 25px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.modal-nav:hover {
    background: rgba(59, 130, 246, 0.8);
    border-color: rgba(59, 130, 246, 0.8);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

/* Mobile Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 98%;
        height: 85%;
        border-radius: 15px;
    }
    
    .modal-image-container {
        flex-direction: column;
    }
    
    .modal-image {
        width: 100%;
        height: 60%;
    }
    
    .modal-info {
        width: 100%;
        height: 40%;
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .modal-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .close-modal {
        top: 15px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .modal-nav {
        font-size: 20px;
        padding: 15px 18px;
    }
    
    .modal-prev {
        left: 15px;
    }
    
    .modal-next {
        right: 15px;
    }
}

/* Responsive Design for Image Gallery */
@media (max-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .gallery-title {
        font-size: 2.2rem;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .seo-image-gallery {
        padding: 40px 25px;
        margin: 40px 0;
        border-radius: 20px;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .image-card {
        border-radius: 15px;
    }
    
    .image-placeholder {
        padding: 30px 15px;
        min-height: 150px;
        border-radius: 15px 15px 0 0;
    }
    
    .image-info {
        padding: 20px;
        border-radius: 0 0 15px 15px;
    }
    
    .image-title {
        font-size: 1.1rem;
    }
    
    .image-description {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .image-tags {
        gap: 8px;
    }
    
    .image-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .gallery-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stat-item {
        padding: 15px;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 10px;
    }
    
    .view-all-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 95%;
        height: 95%;
        margin: 2.5% auto;
    }
    
    .modal-nav {
        padding: 10px 15px;
        font-size: 20px;
    }
    
    .close-modal {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
    
    .modal-info {
        padding: 15px;
        margin-top: 15px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .seo-image-gallery {
        padding: 30px 15px;
        margin: 30px 0;
    }
    
    .gallery-title {
        font-size: 1.6rem;
    }
    
    .gallery-subtitle {
        font-size: 0.9rem;
    }
    
    .image-grid {
        gap: 15px;
        margin-top: 30px;
    }
    
    .image-placeholder {
        padding: 20px 10px;
        min-height: 120px;
    }
    
    .image-info {
        padding: 15px;
    }
    
    .image-title {
        font-size: 1rem;
    }
    
    .image-description {
        font-size: 0.85rem;
    }
    
    .image-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .gallery-stats {
        padding: 15px;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .view-all-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}
