@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #eab308;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ca8a04;
}

/* Slide transitions */
.slide {
    transition: opacity 0.8s ease-in-out;
}

/* Mobile menu animation */
#mobileMenu {
    transition: all 0.3s ease;
}

/* Form focus effects */
input:focus, textarea:focus, select:focus {
    outline: none;
    ring: 2px solid #eab308;
}

/* Button hover effects */
button, .btn {
    transition: all 0.3s ease;
}

/* Card hover effects */
.hover\:scale-105:hover {
    transform: scale(1.05);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Logo Styles */
.logo {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-getpaid {
    color: #eab308;
}

.logo-entertainment {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 8px;
}

.logo-sub {
    font-size: 0.7rem;
    color: #9ca3af;
    letter-spacing: 1px;
}

/* For mobile */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.1rem;
    }
    .logo-entertainment {
        font-size: 0.7rem;
    }
}