* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #2d1b69, #8b5cf6, #a855f7);
            color: #ffffff;
            overflow-x: hidden;
            animation: gradientShift 10s ease-in-out infinite alternate;
        }

        @keyframes gradientShift {
            0% { background: linear-gradient(135deg, #2d1b69, #8b5cf6, #a855f7); }
            100% { background: linear-gradient(135deg, #1e1b4b, #7c3aed, #9333ea); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: rgba(30, 27, 75, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo img {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }

        .logo h1 {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #a855f7, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 10px 20px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
        }

        .nav-links a:hover {
            background: rgba(139, 92, 246, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
        }

        main {
            margin-top: 80px;
        }

        .hero {
            padding: 4rem 0;
            text-align: center;
            position: relative;
            background: radial-gradient(circle at 20% 20%, rgba(168,85,247,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 30%, rgba(168,85,247,0.08) 0%, transparent 40%),
                        radial-gradient(circle at 30% 70%, rgba(168,85,247,0.12) 0%, transparent 60%),
                        radial-gradient(circle at 70% 80%, rgba(168,85,247,0.09) 0%, transparent 45%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #a855f7, #ec4899, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #8b5cf6, #ec4899);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
            background: linear-gradient(45deg, #7c3aed, #db2777);
        }

        .section {
            padding: 4rem 0;
            margin: 2rem 0;
            background: rgba(30, 27, 75, 0.4);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
            position: relative;
            overflow: hidden;
        }

        .section {
            background-image: linear-gradient(45deg, rgba(139, 92, 246, 0.02) 25%, transparent 25%),
                              linear-gradient(-45deg, rgba(139, 92, 246, 0.02) 25%, transparent 25%),
                              linear-gradient(45deg, transparent 75%, rgba(139, 92, 246, 0.02) 75%),
                              linear-gradient(-45deg, transparent 75%, rgba(139, 92, 246, 0.02) 75%);
            background-size: 60px 60px;
            background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
            animation: movePattern 20s linear infinite;
        }

        @keyframes movePattern {
            0% { background-position: 0 0, 0 30px, 30px -30px, -30px 0px; }
            100% { background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px; }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .section-content {
            position: relative;
            z-index: 2;
        }

        .section h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #a855f7, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .tab-button {
            background: rgba(139, 92, 246, 0.3);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .tab-button:hover, .tab-button.active {
            background: linear-gradient(45deg, #8b5cf6, #ec4899);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .rules-list {
            background: rgba(0, 0, 0, 0.3);
            padding: 2rem;
            border-radius: 15px;
            margin: 1rem 0;
        }

        .rule-item {
            margin-bottom: 1rem;
            padding: 1rem;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 10px;
            border-left: 4px solid #8b5cf6;
            transition: all 0.3s ease;
        }

        .rule-item:hover {
            transform: translateX(10px);
            background: rgba(139, 92, 246, 0.2);
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .event-card {
            background: rgba(0, 0, 0, 0.4);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid rgba(139, 92, 246, 0.3);
            position: relative;
            overflow: hidden;
        }

        .event-card:hover {
            transform: translateY(-5px);
            border-color: #8b5cf6;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
            background: rgba(139, 92, 246, 0.1);
        }

        .event-card h3 {
            color: #a855f7;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .rarity-tags {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .rarity-tag {
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .rarity-tag.common { background: #6b7280; }
        .rarity-tag.solid { background: #059669; }
        .rarity-tag.rich { background: #dc2626; }
        .rarity-tag.elite { background: #7c3aed; }
        .rarity-tag.legendary { background: linear-gradient(45deg, #f59e0b, #ec4899); }

        .privileges-info {
            text-align: center;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            margin: 2rem 0;
        }

        .discord-link {
            display: inline-block;
            background: #5865f2;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .discord-link:hover {
            background: #4752c4;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
        }

        footer {
            background: rgba(30, 27, 75, 0.9);
            padding: 2rem 0;
            text-align: center;
            margin-top: 4rem;
        }

        .mobile-menu {
            display: none;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
                background: none;
                border: none;
                color: white;
                font-size: 1.5rem;
                cursor: pointer;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .events-grid {
                grid-template-columns: 1fr;
            }
        }