
/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #f8fafc;
    background-color: #0f172a;
    transition: background 0.3s, color 0.3s;
}

/* Navigation Styles */
header nav a {
    transition: color 0.3s, text-shadow 0.3s;
}
header nav a:hover {
    color: #a3e635 !important;
    text-shadow: 0 0 10px rgba(163, 230, 53, 0.3);
}

/* Button Styles */
button.bg-amber-600 {
    background-color: #fbbf24;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
button.bg-amber-600:hover {
    background-color: #f59e0b;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

/* Form Styles */
input, textarea {
    background-color: rgba(17, 24, 39, 0.4) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.3);
}

/* Card Styles */
.bg-black/30 {
    background-color: rgba(10, 15, 27, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.3s;
}
.bg-black/30:hover {
    background-color: rgba(10, 15, 27, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Gradient Styles */
.from-teal-400 {
    --tw-gradient-from: #2dd4bf;
    --tw-gradient-to: #2dd4bf;
}

.to-cyan-300 {
    --tw-gradient-to: #88e6da;
}

/* Animation Styles */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.95; transform: scale(1.05); }
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Interactive Elements */
#backToTop {
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
#backToTop svg {
    transition: color 0.3s;
}
#backToTop:hover svg {
    color: #38bdf8;
}

/* Modal Styles */
#successModal .bg-green-100 {
    background-color: rgba(34, 197, 94, 0.1) !important;
}
#successModal .text-green-500 {
    color: #05966a !important;
}

/* Link Hover Effects */
a:hover {
    color: #a3e635 !important;
    text-decoration: underline;
}

/* Footer Styles */
footer {
    border-color: rgba(255, 255, 255, 0.05) !important;
}
footer a {
    transition: color 0.3s;
}
footer a:hover {
    color: #a3e635 !important;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 6px;
    background: rgba(255, 255, 255, 0.02);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #38bdf8, #2dd4bf);
    border-radius: 3px;
}
