@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: rgb(34, 32, 32);
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}

/* Ensure proper spacing for fixed header */
html {
    scroll-behavior: smooth;
}

#submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

#wrapper {
    transition: all 0.3s ease-in-out;
}

.profile-peek-icon {
    transition: all 0.3s ease-in-out;
}

.profile-peek-icon:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px !important;
        height: auto !important;
        min-height: 80px;
    }

    header > div {
        margin: 5px 0 !important;
        min-width: auto !important;
    }

    /* Adjust wrapper padding for mobile */
    #wrapper {
        padding-top: 120px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Make search box responsive on mobile */
    .search-container {
        max-width: 100% !important;
        margin: 0 10px !important;
    }
}

p {
    margin: 0;
    color: white;
}

/* Search box animations */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

@keyframes pulse-glow {
    0% { 
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.8), 0 0 30px rgba(0, 123, 255, 0.6);
    }
    100% { 
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }
}

@keyframes fadeIn {
    0% { 
        opacity: 0;
        transform: translateY(-10px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search box hover effects */
.search-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

/* Search input placeholder styling */
input[placeholder]::placeholder {
    color: rgba(248, 250, 252, 0.5) !important;
    opacity: 1 !important;
}

.search-button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Dropdown button hover effects */
.dropdown-button:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Trade dropdown item hover effects */
.trade-dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(40, 167, 69, 0.15) 100%) !important;
    transform: translateX(4px);
    padding-left: 20px !important;
    color: #ffffff !important;
    box-shadow: inset 3px 0 0 rgba(0, 123, 255, 0.6);
}

/* Search button hover effects */
.search-button:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.12) 100%) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
}

.search-button:active:not(:disabled) {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15) !important;
}

/* Social link hover effects */
.social-link:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.15) 100%) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.social-link:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

/* Profile card hover effects */
.profile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Stat card hover effects */
.stat-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Link card hover effects */
.link-card:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(96, 165, 250, 0.2) 100%) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2) !important;
}

/* About button hover effects */
.about-button:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.12) 100%) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2) !important;
}

.about-button:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15) !important;
}
