/* Dark Theme Home Styles */
:root {
    --blue: #58a6ff;
    --dark-blue: #0d1117;
    --darker-blue: #010409;
    --light-blue: rgba(88, 166, 255, 0.1);
}

/* Navbar Styles */
.navbar.glassmorphic {
    background: rgba(13, 17, 23, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(88, 166, 255, 0.1);
}

.navbar .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(13, 17, 23, 0.95), rgba(1, 4, 9, 0.95));
}

.hero-content {
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 166, 255, 0.1);
}

/* Glassmorphic Effects */
.glassmorphic {
    background: rgba(13, 17, 23, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 166, 255, 0.1) !important;
}

.bg-blue-glass {
    background: rgba(88, 166, 255, 0.2) !important;
    backdrop-filter: blur(5px);
}

/* Button Styles */
.btn-blue-glass {
    background: rgba(88, 166, 255, 0.2);
    border: 1px solid rgba(88, 166, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-blue-glass:hover {
    background: rgba(88, 166, 255, 0.3);
    border: 1px solid rgba(88, 166, 255, 0.4);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(88, 166, 255, 0.3);
}

/* Text Styles */
.text-blue {
    color: var(--blue) !important;
}

.glow-text {
    text-shadow: 0 0 10px rgba(88, 166, 255, 0.5);
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-blue:hover {
    color: var(--blue) !important;
}

/* Feature Cards */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card.hover-scale:hover .feature-icon {
    transform: scale(1.1);
}

/* Image Effects */
.glow-image {
    filter: drop-shadow(0 0 5px rgba(88, 166, 255, 0.5));
}

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Currency Section */
.currency-icon {
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.currency-icon:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}
