/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00a8e8;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Brand coloring for logo */
.brand-simple {
    color: #ffffff;
}
.brand-highlight {
    color: var(--primary-color);
}

/* Hero Section custom effects */
.hero {
    background: 
        linear-gradient(135deg, rgba(0, 168, 232, 0.03) 0%, rgba(0, 119, 182, 0.08) 100%),
        radial-gradient(circle at 20% 50%, rgba(0, 168, 232, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 119, 182, 0.08) 0%, transparent 50%),
        linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.hero-image::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.95) 100%);
    border-radius: 50%;
    box-shadow: 
        0 20px 60px rgba(0, 168, 232, 0.15),
        inset 0 -20px 40px rgba(0, 168, 232, 0.05);
    z-index: -1;
}
.hero-display-img {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 168, 232, 0.2));
    position: relative;
    z-index: 2;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Community Section custom styles */
.community-intro strong {
    color: var(--primary-color);
}
.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}
.platform-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.platform-link:hover {
    color: #0077b6;
}
.social-icon {
    transition: transform 0.3s, background 0.3s;
}
.social-icon:hover {
    transform: scale(1.1);
    background: #0077b6;
}

/* Coming Soon Section custom styles */
.coming-soon-section {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.03) 0%, rgba(0, 119, 182, 0.08) 100%);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 0.7rem;
}

.footer p {
    opacity: 0.8;
    margin: 0;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar .container {
        flex-wrap: wrap;
        position: relative;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #3a3a3a;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-image::before {
        width: 320px;
        height: 320px;
    }
    
    .hero-display-img {
        max-width: 300px;
        margin-top: 2rem;
    }
}