    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

        body {
            font-family: 'Poppins', sans-serif;
            background: #050510;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a1a;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #A020F0, #6a0dad);
            border-radius: 10px;
        }

        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #050510;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .loading-screen.hide {
            opacity: 0;
            visibility: hidden;
        }

        .loading-logo {
            width: 150px;
            height: 150px;
            animation: logoFloat 2s ease-in-out infinite;
        }

        .loading-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 30px rgba(160, 32, 240, 0.8));
        }

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

        .loading-bar {
            width: 200px;
            height: 4px;
            background: rgba(160, 32, 240, 0.2);
            border-radius: 10px;
            margin-top: 30px;
            overflow: hidden;
        }

        .loading-progress {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #A020F0, #ff6b6b, #A020F0);
            background-size: 200% 100%;
            border-radius: 10px;
            animation: loadingAnim 2s ease-in-out forwards, shimmer 1s linear infinite;
        }

        @keyframes loadingAnim {
            to { width: 100%; }
        }

        @keyframes shimmer {
            to { background-position: -200% 0; }
        }

        .loading-text {
            color: #A020F0;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2em;
            margin-top: 20px;
            letter-spacing: 3px;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(5, 5, 16, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(160, 32, 240, 0.2);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 10px 100px;
            background: rgba(5, 5, 16, 0.98);
            box-shadow: 0 5px 30px rgba(160, 32, 240, 0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

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

        .logo-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #A020F0;
            box-shadow: 0 0 20px rgba(160, 32, 240, 0.5);
            transition: all 0.3s ease;
        }

        .logo:hover .logo-img {
            box-shadow: 0 0 30px rgba(160, 32, 240, 0.8);
        }

        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6em;
            font-weight: 700;
            background: linear-gradient(135deg, #A020F0, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            font-size: 0.95em;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #A020F0;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::before {
            width: 60%;
        }

        .nav-menu a:hover {
            color: #A020F0;
        }

        .nav-menu a i {
            margin-right: 8px;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #A020F0;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at center, #1a0a2e 0%, #050510 70%);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('') center/cover no-repeat;
            opacity: 0.3;
        }

        .stars {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .star {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #fff;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            padding: 20px;
        }

        .hero-logo {
            width: 180px;
            height: 180px;
            margin: 0 auto 30px;
            position: relative;
        }

        .hero-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 50px rgba(160, 32, 240, 0.6));
            animation: heroLogoAnim 4s ease-in-out infinite;
        }

        @keyframes heroLogoAnim {
            0%, 100% { 
                transform: translateY(0) rotate(0deg); 
                filter: drop-shadow(0 0 50px rgba(160, 32, 240, 0.6));
            }
            50% { 
                transform: translateY(-15px) rotate(5deg); 
                filter: drop-shadow(0 0 80px rgba(160, 32, 240, 0.9));
            }
        }

        .hero-logo::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(160, 32, 240, 0.3) 0%, transparent 70%);
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4em;
            font-weight: 900;
            background: linear-gradient(135deg, #fff 0%, #A020F0 50%, #ff6b6b 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            letter-spacing: 5px;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            from { filter: drop-shadow(0 0 20px rgba(160, 32, 240, 0.5)); }
            to { filter: drop-shadow(0 0 40px rgba(160, 32, 240, 0.8)); }
        }

        .hero p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.3em;
            margin-bottom: 40px;
            letter-spacing: 2px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 45px;
            background: linear-gradient(135deg, #A020F0 0%, #6a0dad 100%);
            color: #fff;
            text-decoration: none;
            font-size: 1.1em;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(160, 32, 240, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(160, 32, 240, 0.6);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 45px;
            background: transparent;
            color: #fff;
            text-decoration: none;
            font-size: 1.1em;
            font-weight: 600;
            border-radius: 50px;
            border: 2px solid #A020F0;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .btn-secondary:hover {
            background: rgba(160, 32, 240, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(160, 32, 240, 0.3);
        }

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

        .social-links a {
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(160, 32, 240, 0.1);
            border: 2px solid rgba(160, 32, 240, 0.3);
            border-radius: 50%;
            color: #fff;
            font-size: 1.4em;
            transition: all 0.4s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            background: #A020F0;
            border-color: #A020F0;
            transform: translateY(-8px) rotate(360deg);
            box-shadow: 0 15px 30px rgba(160, 32, 240, 0.5);
        }

        section {
            padding: 100px 150px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8em;
            font-weight: 700;
            background: linear-gradient(135deg, #fff 0%, #A020F0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            display: inline-flex;
            align-items: center;
            gap: 15px;
        }

        .section-header h2 i {
            background: linear-gradient(135deg, #A020F0, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-header p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.1em;
        }

        .section-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #A020F0, #ff6b6b);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        .how-to-join {
            background: linear-gradient(180deg, #050510 0%, #0a0a1a 100%);
        }

        .steps-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .step-card {
            background: linear-gradient(145deg, rgba(160, 32, 240, 0.1) 0%, rgba(20, 10, 40, 0.8) 100%);
            border: 1px solid rgba(160, 32, 240, 0.2);
            border-radius: 25px;
            padding: 50px 40px;
            width: 320px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(160, 32, 240, 0.2) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .step-card:hover::before {
            opacity: 1;
        }

        .step-card:hover {
            transform: translateY(-15px);
            border-color: rgba(160, 32, 240, 0.5);
            box-shadow: 0 30px 60px rgba(160, 32, 240, 0.2);
        }

        .step-number {
            position: absolute;
            top: 20px;
            right: 25px;
            font-family: 'Orbitron', sans-serif;
            font-size: 4em;
            font-weight: 900;
            color: rgba(160, 32, 240, 0.1);
        }

        .step-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #A020F0 0%, #6a0dad 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2em;
            color: #fff;
            box-shadow: 0 15px 35px rgba(160, 32, 240, 0.4);
            position: relative;
            z-index: 1;
        }

        .step-card h3 {
            color: #fff;
            font-size: 1.4em;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .step-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95em;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .team {
            background: linear-gradient(180deg, #0a0a1a 0%, #0f0f25 100%);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-card {
            background: linear-gradient(145deg, rgba(20, 15, 40, 0.9) 0%, rgba(10, 5, 25, 0.9) 100%);
            border: 1px solid rgba(160, 32, 240, 0.15);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            border-color: rgba(160, 32, 240, 0.5);
            box-shadow: 0 30px 60px rgba(160, 32, 240, 0.2);
        }

        .team-card-header {
            position: relative;
            height: 120px;
            background: linear-gradient(135deg, #A020F0 0%, #1a0a2e 100%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 60px;
        }

        .team-avatar {
            position: absolute;
            bottom: -50px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid #A020F0;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(160, 32, 240, 0.5);
            transition: all 0.3s ease;
        }

        .team-card:hover .team-avatar {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(160, 32, 240, 0.7);
        }

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

        .team-card-body {
            padding: 70px 30px 30px;
            text-align: center;
        }

        .team-name {
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3em;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .team-role {
            display: inline-block;
            padding: 6px 20px;
            background: linear-gradient(135deg, #A020F0 0%, #6a0dad 100%);
            color: #fff;
            font-size: 0.8em;
            font-weight: 600;
            border-radius: 20px;
            margin-bottom: 20px;
        }

        .team-role.admin {
            background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
        }

        .team-role.developer {
            background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
        }

        .team-info {
            text-align: left;
        }

        .team-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9em;
            margin: 8px 0;
            padding-left: 15px;
            border-left: 2px solid #A020F0;
        }

        .news {
            background: linear-gradient(180deg, #0f0f25 0%, #050510 100%);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-card {
            background: linear-gradient(145deg, rgba(20, 15, 40, 0.9) 0%, rgba(10, 5, 25, 0.9) 100%);
            border: 1px solid rgba(160, 32, 240, 0.15);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .news-card:hover {
            transform: translateY(-10px);
            border-color: rgba(160, 32, 240, 0.5);
            box-shadow: 0 30px 60px rgba(160, 32, 240, 0.2);
        }

        .news-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-card:hover .news-image img {
            transform: scale(1.1);
        }

        .news-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 8px 20px;
            background: linear-gradient(135deg, #A020F0 0%, #6a0dad 100%);
            color: #fff;
            font-size: 0.8em;
            font-weight: 600;
            border-radius: 20px;
        }

        .news-content {
            padding: 30px;
        }

        .news-title {
            color: #fff;
            font-size: 1.4em;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .news-list {
            list-style: none;
        }

        .news-list li {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95em;
            margin: 10px 0;
            padding-left: 20px;
            position: relative;
        }

        .news-list li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: #A020F0;
        }

        .news-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(160, 32, 240, 0.2);
        }

        .news-link {
            color: #A020F0;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .news-link:hover {
            color: #fff;
            gap: 12px;
        }

        footer {
            background: linear-gradient(180deg, #050510 0%, #000 100%);
            padding: 60px 100px 30px;
            border-top: 1px solid rgba(160, 32, 240, 0.2);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid #A020F0;
            object-fit: cover;
        }

        .footer-text h3 {
            font-family: 'Orbitron', sans-serif;
            color: #fff;
            font-size: 1.3em;
        }

        .footer-text p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9em;
        }

        .footer-links {
            display: flex;
            gap: 15px;
        }

        .footer-links a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(160, 32, 240, 0.1);
            border: 1px solid rgba(160, 32, 240, 0.3);
            border-radius: 50%;
            color: #fff;
            font-size: 1.2em;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-links a:hover {
            background: #A020F0;
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(160, 32, 240, 0.1);
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9em;
        }

        .footer-bottom span {
            color: #A020F0;
        }

        .notification {
            position: fixed;
            top: 100px;
            right: -400px;
            background: linear-gradient(135deg, #A020F0 0%, #6a0dad 100%);
            color: #fff;
            padding: 20px 35px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 10000;
            box-shadow: 0 15px 40px rgba(160, 32, 240, 0.5);
            transition: right 0.5s ease;
        }

        .notification.show {
            right: 30px;
        }

        .notification i {
            font-size: 1.5em;
        }

        .notification-text h4 {
            font-size: 1em;
            margin-bottom: 3px;
        }

        .notification-text p {
            font-size: 0.85em;
            opacity: 0.9;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #A020F0 0%, #6a0dad 100%);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 1.3em;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(160, 32, 240, 0.4);
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(160, 32, 240, 0.6);
        }

        @media (max-width: 1024px) {
            header {
                padding: 15px 30px;
            }

            section {
                padding: 80px 30px;
            }

            footer {
                padding: 50px 30px 25px;
            }

            .hero h1 {
                font-size: 2.5em;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(5, 5, 16, 0.98);
                flex-direction: column;
                padding: 30px 20px;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                border-bottom: 1px solid rgba(160, 32, 240, 0.2);
            }

            .nav-menu.active {
                transform: translateY(0);
            }

            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 15px;
            }

            .menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2em;
                letter-spacing: 2px;
            }

            .hero p {
                font-size: 1em;
            }

            .hero-logo {
                width: 130px;
                height: 130px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .section-header h2 {
                font-size: 1.8em;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.2em;
            }

            .hero h1 {
                font-size: 1.6em;
            }

            .step-card, .team-card, .news-card {
                width: 100%;
            }
        }
        