        @font-face {
            font-family: 'Torus Pro';
            src: url('torus.ttf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'Torus Pro';
            src: url('torus.ttf') format('opentype');
            font-weight: 500;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'Torus Pro';
            src: url('torus.ttf') format('opentype');
            font-weight: 600;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'Torus Pro';
            src: url('torus.ttf') format('opentype');
            font-weight: 700;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'Torus Pro';
            src: url('torus.ttf') format('opentype');
            font-weight: 800;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'Torus Pro';
            src: url('torus.ttf') format('opentype');
            font-weight: 900;
            font-style: normal;
        }
        
        :root {
            --primary-color: #e53935;
            --primary-dark: #c62828;
            --primary-light: #ff6659;
            --badge-xan: #ff59f7;
            --badge-swmp: #797676;
            --text-color: #e0e0e0;
            --text-light: #aaaaaa;
            --text-lighter: #888888;
            --bg-color: #0a0a0a;
            --card-bg: #1a1a1a;
            --card-bg-unused: #151515;
            --border-color: #333333;
            --border-light: #444444;
            --badge-bg: #222222;
            --badge-text: #cccccc;
            --info-bg: rgba(229, 57, 53, 0.1);
            --info-border: rgba(229, 57, 53, 0.3);
            --alert-bg: rgba(100, 100, 100, 0.1);
            --alert-border: rgba(100, 100, 100, 0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Torus Pro', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            padding: 40px 20px;
            max-width: 900px;
            margin: 0 auto;
            min-height: 100vh;
        }
        
        .header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .title-section h1 {
            font-size: 72px;
            font-weight: 700;
            color: var(--text-color);
            letter-spacing: 1px;
            line-height: 1;
            margin-bottom: 15px;
        }
        
        .section {
            margin-bottom: 30px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 15px;
            color: var(--text-lighter);
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        
        .links-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .link-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 18px;
            background-color: var(--card-bg);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.25s ease;
            text-decoration: none;
            color: inherit;
            width: 85%;
            max-width: 600px;
        }
        
        .link-item:hover {
            border-color: var(--primary-color);
            box-shadow: 0 4px 12px rgba(229, 57, 53, 0.15);
            transform: translateY(-2px);
        }
        
        .link-content {
            display: flex;
            align-items: center;
            flex-grow: 1;
        }
        
        .platform-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            margin-right: 12px;
            color: var(--primary-color);
            font-size: 16px;
        }
        
        .link-text {
            display: flex;
            flex-direction: column;
        }
        
        .link-name {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-color);
        }
        
        .badge {
            background-color: var(--badge-bg);
            color: var(--badge-text);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            margin-left: 8px;
            white-space: nowrap;
            border: 1px solid var(--border-light);
        }

        .badge.xan {
            background-color: rgba(229, 53, 206, 0.15);
            color: var(--badge-xan);
            border-color: rgba(229, 53, 229, 0.3);
        }
        
        .badge.swmp {
            background-color: rgba(218, 215, 215, 0.15);
            color: var(--badge-swmp);
            border-color: rgba(151, 148, 148, 0.3);
        }
        
        .footer {
            text-align: center;
            margin-top: 50px;
            color: var(--text-lighter);
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            body {
                padding: 30px 15px;
            }
            
            .title-section h1 {
                font-size: 56px;
            }
            
            .link-item {
                width: 95%;
                flex-direction: column;
                align-items: flex-start;
                padding: 14px;
            }
            
            .badge {
                margin-top: 8px;
                margin-left: 0;
                align-self: flex-start;
            }
        }
        
        @media (max-width: 480px) {
            .title-section h1 {
                font-size: 48px;
            }
            
            .section-title {
                font-size: 14px;
                letter-spacing: 2px;
            }
            
            .link-item {
                width: 100%;
            }
        }