* {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gaming-gradient {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
}

.gold-gradient {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
}

.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

.modal {
    display: none;
}

.modal.active {
    display: flex;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-bubble {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 300px;
    max-width: 90vw;
}

.chat-bubble.active {
    display: block;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-image {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 60%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .brand-image {
        width: 40px !important;
        height: 40px !important;
    }
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.2rem !important; }
    .grid {
        grid-template-columns: 1fr !important;
    }
}
