/* Base Styles & Variables */
:root {
    --primary: #6e44ff;
    --secondary: #00d9ff;
    --accent: #ff2e63;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f5f5f5;
    --gray: #888;
    --card-bg: rgba(30, 30, 40, 0.7);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --neon-glow: 0 0 10px rgba(110, 68, 255, 0.7), 0 0 20px rgba(0, 217, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbar but keep scroll functionality */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Hide scrollbar for all browsers */
html::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: var(--neon-glow);
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Hamburger Menu - FIXED */
.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger-icon {
    width: 100%;
    height: 100%;
    position: relative;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--light);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.hamburger-icon span:nth-child(1) {
    top: 10px;
}

.hamburger-icon span:nth-child(2) {
    top: 20px;
}

.hamburger-menu.active .hamburger-icon span:nth-child(1) {
    top: 15px;
    transform: rotate(135deg);
}

.hamburger-menu.active .hamburger-icon span:nth-child(2) {
    top: 15px;
    transform: rotate(-135deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .hamburger-menu {
        display: block !important;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }

    .hamburger-menu {
        display: none !important;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.4s ease;
    width: 100%;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 50px;
}

.mobile-nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    display: block;
    padding: 15px 0;
    transition: color 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    color: var(--secondary);
}

.mobile-nav-link:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover:after {
    width: 50px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--light);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.welcome-message {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-message h2 {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.team-credit {
    font-size: 1.2rem;
    color: var(--gray);
    font-style: italic;
}

/* Quote Container */
.quote-container {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
    border-left: 4px solid var(--primary);
    box-shadow: var(--neon-glow);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.quote-text {
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 400;
}

.quote-author {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-box {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
}

.news-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-header i {
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.news-header h3 {
    font-size: 1.5rem;
    color: var(--light);
    font-weight: 600;
}

.news-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.news-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-item h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.news-item p {
    color: var(--gray);
    line-height: 1.6;
    font-weight: 400;
}

/* Enhanced Footer Styles */
footer {
    background: var(--darker);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
    opacity: 0.3;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--card-bg);
    border-radius: 15px;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
    color: var(--light);
}

.social-link i {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

/* Individual social media colors on hover */
.social-link:hover:nth-child(1) i {
    color: #ff0000;
    /* YouTube Red */
    transform: scale(1.2);
}

.social-link:hover:nth-child(2) i {
    color: #e4405f;
    /* Instagram Pink */
    transform: scale(1.2);
}

.social-link:hover:nth-child(3) i {
    color: #0088cc;
    /* Telegram Blue */
    transform: scale(1.2);
}

.social-link:hover:nth-child(4) i {
    color: #00ff88;
    /* Play Store Green */
    transform: scale(1.2);
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s ease;
}

.social-link:hover span {
    color: var(--light);
}

/* Footer Navigation Links */
.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-copyright p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-social {
        gap: 15px;
    }

    .social-link {
        padding: 12px 15px;
        min-width: 80px;
    }

    .social-link i {
        font-size: 1.5rem;
    }

    .social-link span {
        font-size: 0.8rem;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer-social {
        gap: 10px;
    }

    .social-link {
        padding: 10px 12px;
        min-width: 70px;
    }

    .social-link i {
        font-size: 1.3rem;
    }

    .social-link span {
        font-size: 0.75rem;
    }

    .footer-links {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .footer-social {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .social-link {
        min-width: auto;
        padding: 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .welcome-message h2 {
        font-size: 2.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .welcome-message h2 {
        font-size: 2rem;
        white-space: normal;
        line-height: 1.3;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-box {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .welcome-message h2 {
        font-size: 1.8rem;
        white-space: normal;
        line-height: 1.3;
    }

    .quote-container {
        padding: 20px;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    .news-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .news-header h3 {
        font-size: 1.3rem;
    }

    .mobile-nav-link {
        font-size: 1.3rem;
    }
}

@media (max-width: 400px) {
    .welcome-message h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .logo-text {
        font-size: 1rem;
    }

    .news-box {
        padding: 15px;
    }
}