:root {
            --bg-color: #0d1117;
            --card-bg: #161b22;
            --border-color: #30363d;
            --text-main: #c9d1d9;
            --text-muted: #8b949e;
            --accent-cyan: #00e5ff;
            --accent-blue: #58a6ff;
            --font-stack: 'JetBrains Mono', 'Fira Code', Monaco, Consolas, monospace;
        }

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

        body {
            color: var(--text-main);
            font-family: var(--font-stack);
            display: flex;
            justify-content: center;
            align-items: flex-start;
            min-height: 100vh;
            background-color: var(--bg-color);
            line-height: 1.5;

	    background-image: linear-gradient(rgba(6, 182, 212, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 182, 212, 0.015) 1px, transparent 1px);
	    background-size: 30px 30px;
	    padding: 40px 20px;
        }

        .container {
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .profile-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
	    border-bottom: 1px solid var(--border-color);
	    padding-bottom: 20px;
        }

        .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--border-color);
        }

        .titles h1 {
            font-size: 1.8rem;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .badges {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .badge-asn {
            background: rgba(88, 166, 255, 0.1);
            color: var(--accent-blue);
            border: 1px solid rgba(88, 166, 255, 0.3);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
            text-decoration: none;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background-color: #238636;
            border-radius: 50%;
            margin-right: 8px;
            box-shadow: 0 0 8px rgba(35, 134, 54, 0.8);
        }
/*
        .card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 24px;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
        }
*/

	.card {
	    background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-top: 3px solid var(--accent-cyan);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 10px;
	}

        .card-title {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 20px;
            font-weight: 600;
        }
/*
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 16px;
        }

        .btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-color);
            padding: 16px 20px;
            border-radius: 6px;
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s ease-in-out;
        }
*/

.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    flex: 1 1 100%;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: 6px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

        .btn:hover {
            background-color: rgba(0, 229, 255, 0.05);
            border-color: var(--accent-cyan);
            color: #ffffff;
        }

        .btn-icon {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .footer {
            margin-top: 40px;
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
        }

@media (min-width: 786px) {
    .btn {
        flex: 1 1 calc(50% - 8px);
        min-width: 340px;
    }

    .btn:last-child:nth-child(odd) {
        flex: 0 1 calc(50% - 8px);
        margin: 0 auto;
    }
}
