.search-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a1d3a 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.search-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="gold" opacity="0.3"/><circle cx="90" cy="20" r="1.5" fill="gold" opacity="0.2"/><circle cx="20" cy="80" r="0.8" fill="gold" opacity="0.4"/><circle cx="80" cy="90" r="1.2" fill="gold" opacity="0.3"/><circle cx="50" cy="30" r="0.6" fill="gold" opacity="0.5"/><circle cx="30" cy="50" r="1" fill="gold" opacity="0.2"/><circle cx="70" cy="60" r="0.9" fill="gold" opacity="0.3"/></svg>') repeat;
    animation: float 25s infinite linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.search-hero {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.search-container {
    max-width: 800px;
    width: 100%;
}

.search-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.search-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.search-form {
    width: 100%;
}

.search-input-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1.2rem 1.5rem;
    color: white;
    font-size: 1.1rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    background: linear-gradient(135deg, #FFD700, #ffc107);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.search-icon {
    font-size: 1.2rem;
}

.search-filters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.filter-label:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.6);
}

.filter-label input[type="radio"] {
    display: none;
}

.filter-label input[type="radio"]:checked + .filter-text {
    color: #FFD700;
    font-weight: 600;
}

.filter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.results-section {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-title {
    font-size: 2rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.results-count {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.no-results p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.suggestions h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.suggestions ul {
    list-style: none;
    padding: 0;
}

.suggestions li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.suggestions li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
}

.results-group {
    margin-bottom: 3rem;
}

.group-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.group-icon {
    font-size: 1.8rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.2rem;
    color: #FFD700;
    font-weight: 600;
    margin: 0;
}

.card-badge {
    background: linear-gradient(135deg, #FFD700, #ffc107);
    color: #1a1d3a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    margin-bottom: 1.5rem;
}

.card-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.card-content strong {
    color: #FFD700;
}

.card-actions {
    display: flex;
    justify-content: flex-end;
}

.action-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn.primary {
    background: linear-gradient(135deg, #FFD700, #ffc107);
    color: #1a1d3a;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.popular-searches {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

.search-suggestion {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.search-suggestion:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.suggestion-icon {
    font-size: 2rem;
}

.suggestion-text {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .search-title {
        font-size: 2rem;
    }
    
    .search-filters {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .searches-grid {
        grid-template-columns: 1fr;
    }
    
    .search-input-wrapper {
        flex-direction: column;
        border-radius: 16px;
    }
    
    .search-input {
        width: 100%;
        border-radius: 12px 12px 0 0;
    }
    
    .search-btn {
        border-radius: 0 0 12px 12px;
        width: 100%;
        margin: 0;
    }
}
