* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #333;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 0;
}

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

.search-bar {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 18px 25px 18px 50px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    background: #1f1f1f;
    border-color: #5648fb;
    box-shadow: 0 8px 32px rgba(86, 72, 251, 0.3), 0 0 0 2px rgba(86, 72, 251, 0.2);
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: #888;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
}

.search-icon-right {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.search-icon-right:hover {
    color: #5648fb;
}

.content-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.content-block {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 35px;
    min-height: 200px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.content-block:hover {
    background: #1f1f1f;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.content-block.empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
}

.result-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.result-card:hover {
    background: #1f1f1f;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.result-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(86, 72, 251, 0.2);
    color: #5648fb;
}

.result-card.success .result-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.result-card.error .result-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.result-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.result-message {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.result-details {
    background: #1a1a1a;
    border-radius: 6px;
    padding: 20px;
    border: 1px solid #444;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: #888;
    font-size: 0.9rem;
}

.detail-value {
    color: #ffffff;
    font-weight: 500;
    word-break: break-all;
    text-align: right;
    max-width: 60%;
}

.detail-value a {
    color: #5648fb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.detail-value a:hover {
    color: #a855f7;
    text-decoration: underline;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
}

.verification-badge.uxento {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.verification-badge.not-uxento {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.loading {
    text-align: center;
    padding: 40px 20px;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #333;
    border-top: 3px solid #5648fb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p {
    color: #888;
    font-size: 1rem;
}

.footer {
    margin-top: 40px;
    padding: 25px 30px;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #333;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.created-by {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.creator-link {
    color: #5648fb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    font-weight: 600;
}

.creator-link:hover {
    color: #a855f7;
}

.copyright {
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 15px 20px;
    }
    
    .logo {
        gap: 12px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .content-block {
        padding: 20px;
        min-height: 150px;
    }
    
    .result-card {
        padding: 20px;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .detail-value {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .search-input {
        padding: 12px 15px 12px 40px;
    }
    
    .content-block {
        padding: 15px;
    }
    
    .result-card {
        padding: 15px;
    }
}