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

        :root {
            --primary: #00D084;
            --primary-dark: #00B871;
            --secondary: #6C5CE7;
            --bg-dark: #0F0F23;
            --bg-card: #1A1A2E;
            --bg-card-hover: #252542;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0B0;
            --text-muted: #6B6B80;
            --border: #2A2A40;
            --star: #FFD700;
            --danger: #FF6B6B;
            --gradient: linear-gradient(135deg, #00D084 0%, #00B871 100%);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* Header */
        .header {
            position: sticky;
            top: 0;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 0 20px;
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            gap: 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-menu {
            display: flex;
            gap: 8px;
        }

        .mobile-search-box {
            display: none;
            margin: 16px 0;
        }

        .mobile-search-input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 14px;
            transition: all 0.2s;
        }

        .mobile-search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
        }

        .mobile-search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }

        .nav-link {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.2s;
            color: var(--text-secondary);
        }

        .nav-link:hover,
        .nav-link.active {
            background: var(--bg-card);
            color: var(--text-primary);
        }

        .search-box {
            flex: 1;
            max-width: 400px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 14px;
            transition: all 0.2s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
        }

        /* Main Layout */
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        /* Content Section */
        .content-section {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid var(--border);
            margin-bottom: 30px;
        }

        .content-section h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .content-section h2 {
            font-size: 22px;
            font-weight: 600;
            margin: 30px 0 15px;
            color: var(--text-primary);
        }

        .content-section p {
            margin-bottom: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .content-section ul {
            margin: 16px 0;
            padding-left: 24px;
            color: var(--text-secondary);
        }

        .content-section li {
            margin-bottom: 8px;
        }

        /* Share Buttons - Collapsible */
        .share-buttons {
            display: flex;
            position: fixed;
            right: 24px;
            bottom: 100px;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            z-index: 100;
            top: auto;
            transform: none;
        }

        .share-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: none;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(20px) scale(0.8);
            pointer-events: none;
        }

        .share-buttons.active .share-btn {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        .share-btn:hover {
            transform: scale(1.15);
        }

        .share-buttons.active .share-btn:hover {
            transform: scale(1.15) translateX(-5px);
        }

        .share-btn.twitter { background: #1DA1F2; }
        .share-btn.facebook { background: #4267B2; }
        .share-btn.reddit { background: #FF4500; }
        .share-btn.telegram { background: #0088cc; }
        .share-btn.copy-link { background: var(--secondary); }

        /* Main Share Toggle Button */
        .share-toggle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #00D084;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: none;
            box-shadow: 0 6px 20px rgba(0, 208, 132, 0.4);
            z-index: 101;
        }

        .share-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 208, 132, 0.5);
        }

        .share-toggle svg {
            transition: transform 0.3s ease;
        }

        .share-buttons.active .share-toggle svg {
            transform: rotate(45deg);
        }

        /* Staggered animation delays */
        .share-buttons.active .share-btn:nth-child(1) { transition-delay: 0.05s; }
        .share-buttons.active .share-btn:nth-child(2) { transition-delay: 0.1s; }
        .share-buttons.active .share-btn:nth-child(3) { transition-delay: 0.15s; }
        .share-buttons.active .share-btn:nth-child(4) { transition-delay: 0.2s; }
        .share-buttons.active .share-btn:nth-child(5) { transition-delay: 0.25s; }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-inner {
                height: 60px;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--bg-card);
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid var(--border);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .search-box {
                display: none;
            }

            .mobile-search-box {
                display: block;
            }
        }
