       body {
            background-color: #000000;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #00FF00;
            font-family: "Courier New", Courier, monospace;
            text-align: center;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }
        
        .container {
            background-color: rgba(0, 0, 0, 0.8);
            padding: 20px;
            min-height: 100vh;
            width: 100%;
        }
        
        h1 {
            font-size: 48px;
            color: #00FFFF;
            text-shadow: 2px 2px #FF00FF;
            margin: 20px 0;
        }
        
        h2 {
            color: #FFFF00;
            font-size: 28px;
            border-bottom: 2px solid #FFFF00;
            display: inline-block;
            padding-bottom: 5px;
            margin-top: 30px;
        }

        h3 {
            color: #00FFFF;
            font-size: 20px;
            margin-top: 20px;
        }
        
        .content-box {
            border: 2px solid #00FF00;
            background-color: rgba(0, 0, 51, 0.8);
            padding: 20px;
            margin: 20px auto;
            width: 80%;
            max-width: 800px;
            text-align: left;
        }
        .content-box-2 {
            border: 2px solid #00FF00;
            background-color: rgba(18, 18, 24, 0.8);
            padding: 20px;
            margin: 20px auto;
            width: 80%;
            max-width: 800px;
            text-align: left;
        }
        
        .content-box p, .content-box li, .content-box-2 p, .content-box-2 li {
            line-height: 1.7;
            font-size: 16px;
        }
        
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .info-table td {
            border: 1px dashed #00FF00;
            padding: 10px;
        }

        .info-table td:first-child {
            font-weight: bold;
            color: #00FFFF;
            width: 30%;
        }

        hr {
            border: 2px dashed #00FFFF;
            width: 80%;
        }

        .nav-button {
            display: inline-block;
            padding: 15px 30px;
            margin: 10px;
            font-size: 20px;
            font-family: "Courier New", Courier, monospace;
            color: #000000;
            background-color: #00FF00;
            border: 3px solid #00FFFF;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-button:hover {
            color: #00FF00;
            background-color: #000000;
            border-color: #FF00FF;
            text-shadow: 0 0 5px #FF00FF;
        }

        /* --- Gallery Grid Styles --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .gallery-grid img {
            width: 100%;
            height: auto;
            border: 3px solid #FF00FF;
            display: block;
        }
        
        .gallery-grid .gallery-item {
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .gallery-grid .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-grid .gallery-item:hover img {
            filter: brightness(1.2) drop-shadow(0 0 10px #00FFFF);
        }

        .caption {
            text-align: center;
            font-size: 14px;
            color: #00FFFF;
            margin-top: 8px;
            margin-bottom: 0;
            line-height: 1.4;
        }

        /* --- Profile Picture and Layout --- */
        .profile-pic {
            width: 250px;
            height: 250px;
            border-radius: 0%;
            border: 5px solid #00FFFF;
            box-shadow: 0 0 20px #00FFFF, 0 0 40px #FF00FF;
            object-fit: cover;
            display: block;
            margin: 20px auto 0 auto;
        }

        .profile-container {
            display: flex;
            align-items: stretch;
            justify-content: center;
            gap: 40px;
            margin-top: 20px;
            text-align: left;
        }

        .profile-left-column {
            display: flex;
            flex-direction: column;
            max-width: 350px;
        }

        .profile-right-column {
            flex-grow: 1;
            max-width: 600px;
        }

        .profile-left-column .content-box,
        .profile-left-column .content-box-2,
        .profile-right-column .content-box {
            margin: 0;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
        }

        /* --- The Modal (background) --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
            cursor: pointer;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            width: 80%;
            max-width: 900px;
            max-height: 90vh;
            object-fit: contain;
            border: 5px solid #00FFFF;
            box-shadow: 0 0 30px #00FFFF;
            animation: zoom-in 0.3s ease-out;
        }

        .modal-close {
            position: absolute;
            top: 25px;
            right: 45px;
            color: #FF00FF;
            font-size: 60px;
            font-weight: bold;
            transition: 0.3s;
            text-shadow: 0 0 10px #FF00FF;
        }

        .modal-close:hover,
        .modal-close:focus {
            color: #00FFFF;
            text-decoration: none;
            cursor: pointer;
        }
        
        /* --- NEW: Pagination Controls --- */
        #pagination-controls {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .page-btn {
            padding: 8px 15px;
            font-size: 16px;
            font-family: "Courier New", Courier, monospace;
            color: #000000;
            background-color: #00FF00;
            border: 2px solid #00FFFF;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .page-btn:hover:not(:disabled) {
            color: #00FF00;
            background-color: #000000;
            border-color: #FF00FF;
            text-shadow: 0 0 5px #FF00FF;
        }

        .page-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .page-btn.active {
            color: #FFFF00;
            background-color: #000033;
            border-color: #FFFF00;
            cursor: default;
        }

        .page-btn.active:hover {
            color: #FFFF00;
            background-color: #000033;
            border-color: #FFFF00;
            text-shadow: 0 0 5px #FFFF00;
        }

        @keyframes zoom-in {
            from { transform: scale(0.5); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        @media (max-width: 900px) {
            .profile-container {
                flex-direction: column;
                align-items: center;
            }

            .profile-left-column .content-box,
            .profile-left-column .content-box-2,
            .profile-right-column .content-box {
                width: 80%;
                max-width: 600px;
                margin: 20px auto 0 auto;
                height: auto;
            }
        }