:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --background: #f8f9fa;
    --text: #1F2937;
    --card-bg: rgba(255, 255, 255, 0.8);
    --modal-bg: rgba(0, 0, 0, 0.7);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    animation: fadeInDown 0.8s ease-out;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.search-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
    transition: transform 0.3s;
}

.search-card:hover {
    transform: translateY(-5px);
}

.title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

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

.input-group {
    position: relative;
    animation: scaleIn 0.5s ease-out 0.6s forwards;
    opacity: 0;
}

input {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
    transform: scale(1.02);
}

label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    pointer-events: none;
    transition: all 0.3s;
}

input:focus ~ label,
input:valid ~ label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary);
    background: white;
    padding: 0 0.5rem;
}

.search-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease-out 0.9s forwards;
    opacity: 0;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.search-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.search-button:hover::after {
    left: 100%;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--modal-bg);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.radar {
    width: 150px;
    height: 150px;
    background: conic-gradient(from 0deg, transparent 0%, transparent 50%, var(--primary) 100%);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: radar 2s linear infinite;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.dots span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 0.5s ease-in-out infinite;
}

.dots span:nth-child(2) {
    animation-delay: 0.1s;
}

.dots span:nth-child(3) {
    animation-delay: 0.2s;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 3px;
    margin: 2rem 0;
    overflow: hidden;
}

#progressFill {
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s;
}

.view-profile-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.view-profile-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes radar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .logo span {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .container {
        padding: 6rem 1rem 1rem;
    }

    .search-card {
        padding: 2rem;
    }

    .title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.5rem;
    }

    .title {
        font-size: 1.75rem;
    }

    .modal-content {
        padding: 2rem 1rem;
    }
}
/* Verification Message Styling */
.verification-message {
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 480px;
    margin: 0 auto;
    background: rgba(30, 58, 138, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(147, 197, 253, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-out forwards;
}

.verification-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.verification-content {
    padding: 0 1.5rem;
}

.verification-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.verification-content strong {
    color: #93c5fd;
    font-weight: 600;
}

.small-text {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 1.5rem 0;
    line-height: 1.6;
}

.note {
    font-size: 0.9rem;
    color: #bfdbfe;
    margin-top: 2rem;
    position: relative;
    padding-top: 1rem;
}

.note::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.5), transparent);
}

/* Success Message Styling */
.verification-success {
    padding: 2.5rem;
    text-align: center;
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.verification-success svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: #10b981;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

.verification-success p {
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #f0f9ff;
    font-weight: 500;
}

.verification-success p:last-child {
    color: #a5b4fc;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .verification-message {
        padding: 1.5rem;
    }
    
    .verification-message h3 {
        font-size: 1.5rem;
    }
    
    .verification-content {
        padding: 0 1rem;
    }
    
    .verification-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .verification-message {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .verification-message h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .small-text {
        font-size: 0.85rem;
    }
}
.search-description {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.search-description p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.search-description::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

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

@keyframes shine {
  0% {
    left: -50%;
    top: -50%;
  }
  50% {
    left: 20%;
    top: 20%;
  }
  100% {
    left: 120%;
    top: 120%;
  }
}

/* Gift emoji animation */
.search-description p::before {
  content: "🎁";
  display: inline-block;
  animation: bounce 1.5s infinite;
  margin-right: 8px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(10deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-3px) rotate(-10deg);
  }
}