/* Ron Penones | December 29th 2025 - Feel free to share and reproduce, the core idea is mine with some assistance of AI. Padayon! */

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
        }

        body {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: url('01.jpg') no-repeat center center/cover;
            overflow: hidden;
            padding: 20px;
        }

        /* Glassmorphism Card */
        .card {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 40px 20px;
            width: 100%;
            max-width: 400px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .profile-img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #00f2ff;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
            margin-bottom: 30px;
        }

        /* Button Container */
        .btn-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Cyber Button Base Style */
        .cyber-btn {
            width: 100%;
            padding: 12px 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #fff;
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid #ff00ff;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 4px 4px 0px #ff00ff;
            outline: none;
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Align contents to start */
            text-decoration: none;
            font-size: 13px;
        }

        .cyber-btn:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0px #ff00ff;
            background: rgba(255, 0, 255, 0.1);
        }

        /* Logo inside Button */
        .btn-logo {
            width: 24px;
            height: 24px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px; /* Space between logo and text */
            flex-shrink: 0;
        }

        /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
        }

        .modal-content {
            background: #111;
            border: 2px solid #00f2ff;
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px 25px;
            color: #fff;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ff00ff;
            border: none;
            color: #fff;
            padding: 5px 15px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
        }

        /* Markdown Text Styling */
        #md-container h3 { color: #00f2ff; margin-bottom: 15px; }
        #md-container p { line-height: 1.6; margin-bottom: 15px; font-size: 14px; }
        #md-container blockquote { border-left: 4px solid #ff00ff; padding-left: 15px; color: #ddd; font-style: italic; }

        @media (max-width: 480px) {
            .cyber-btn { font-size: 11px; padding: 10px 15px; }
            .btn-logo { width: 20px; height: 20px; }
        }
