:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --background-color: #f8fafc;
    --card-background: rgba(255, 255, 255, 0.9);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 12px -2px rgba(0,0,0,0.15);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --border-color: rgba(0,0,0,0.1);
    --text-primary: #1e293b;
    --text-secondary: #64748b;
}

body {
    background: var(--background-color);
    background-image: 
        radial-gradient(at 40% 20%, rgba(37,99,235,0.1) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(96,165,250,0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(37,99,235,0.1) 0px, transparent 50%);
    background-attachment: fixed;
    color: #1e293b;
}

.website-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.website-info-card {
    background: var(--card-background);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.website-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.website-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.5);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.website-logo {
    width: 120px;
    height: 120px;
    border-radius: 1rem;
    overflow: hidden;
    margin-right: 1.5rem;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.website-logo i {
    font-size: 3rem;
    color: var(--primary-color);
}

.website-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.website-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.website-title a:hover {
    color: var(--primary-color);
}

.website-meta {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.website-meta span {
    margin-right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.website-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.website-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.website-actions .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.website-actions .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.website-screenshot {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.website-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.5);
    border-radius: 0 1rem 1rem 0;
    font-size: 1rem;
}

.related-websites {
    background: var(--card-background);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.related-websites h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.related-website-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}

.related-website-item:hover {
    background: rgba(37,99,235,0.1);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.related-website-logo {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    object-fit: contain;
    background: white;
    padding: 0.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.related-website-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-primary);
}

.related-website-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0.25rem 0 0;
}

.advertisement {
    margin-bottom: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.advertisement:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advertisement img {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .website-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    
    .website-logo {
        width: 64px;
        height: 64px;
    }
    
    .website-title {
        font-size: 1.5rem;
    }

    .website-actions {
        flex-direction: column;
        width: 100%;
    }

    .website-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.advertisement-top {
    max-width: 1200px;
    margin: 1rem auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.advertisement-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advertisement-top img {
    width: 100%;
    display: block;
}

.related-articles {
    background: var(--card-background);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.related-articles h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.related-articles .article-link {
    display: block;
    padding: 1rem;
    color: #334155;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.5rem;
}

.related-articles .article-link:hover {
    background: rgba(37,99,235,0.1);
    color: var(--primary-color);
    transform: translateX(10px);
}

.related-article-item {
    display: block;
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin-bottom: 1rem;
}

.related-article-item:hover {
    background: rgba(37,99,235,0.1);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.related-article-item h4 {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
}

.related-article-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.related-navs-horizontal {
    background: var(--card-background);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.related-navs-horizontal h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.related-navs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.related-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.related-nav-item:hover {
    background: rgba(37,99,235,0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.related-nav-logo {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.related-nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.related-nav-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-primary);
}

.related-nav-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0.25rem 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .related-navs-grid {
        grid-template-columns: 1fr;
    }
    
    .advertisement-top {
        margin: 1rem;
        border-radius: 0.5rem;
    }
} 