
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #000000;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            padding-bottom: 50px;
        }
        .banner-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            max-height: 350px;
            object-fit: cover;
            display: block;
        }
        h1 {
            font-size: 2.5rem;
            margin-top: 30px;
            margin-bottom: 30px;
            text-align: center;
            padding: 0 20px;
        }
        
        .main-content {
            width: 100%;
            max-width: 650px;
            padding: 0 20px;
        }

        .section-title {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #888888;
            margin-bottom: 15px;
            border-bottom: 1px solid #222222;
            padding-bottom: 5px;
        }

        /* --- LINKS SECTION STYLES --- */
        .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .social-card {
            background-color: #111111;
            border: 1px solid #222222;
            border-radius: 12px;
            padding: 20px 10px;
            text-align: center;
            text-decoration: none;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }
        .social-card:hover {
            transform: translateY(-3px);
            border-color: #444444;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            object-fit: contain;
            margin-bottom: 10px;
            border-radius: 8px;
        }
        .social-name {
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* --- PROJECT SECTION STYLES (FLEXBOX VERSION) --- */
        .project-card {
            background-color: #111111;
            border: 1px solid #444444; 
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            /* FLEXBOX SETUP */
            display: flex;
            align-items: center; /* Vertically centers text relative to image */
            gap: 25px;           /* Space between image and text */
        }

        .project-img {
            width: 20%;          /* Image takes up 40% of the card width */
            height: auto;
            border-radius: 8px;
            display: block;
        }

        .project-info {
            flex: 1;             /* Text container takes up remaining space */
        }

        .project-title {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 10px;
        }
        .project-desc {
            font-size: 1.05rem;
            color: #cccccc;
            line-height: 1.6;
        }

        /* MEDIA QUERY: For mobile/small screens */
        @media (max-width: 500px) {
            .project-card {
                flex-direction: column; /* Stack image on top of text */
                text-align: center;     /* Center text for a better mobile look */
                padding: 20px;           /* Slightly tighter padding on mobile */
            }
            .project-img {
                width: 100%;            /* Image takes full width when stacked */
                margin-bottom: 15px;
            }
        }

        /* --- POSTS SECTION STYLES --- */
        .post-card {
            background-color: #111111;
            border: 1px solid #222222;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 25px;
        }
        .post-date {
            font-size: 0.85rem;
            color: #888888;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .post-title {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 15px;
        }
        .post-content {
            font-size: 1.05rem;
            color: #cccccc;
            line-height: 1.6;
        }
