        /* --- CSS VARIABLES FOR DARK THEME --- */
        :root {
            --bg-base: #1b0000;
            --bg-surface: #1e1e1e;
            --bg-surface-hover: #282828;
            --text-primary: #ffffff;
            --text-secondary: #b3b3b3;
            --accent-color: #63f5ff; /* A cool neon purple */
            --accent-hover: #85f9ff;
            --border-color: #333333;
            --font-main: "Lora";
            --transition-speed: 0.3s;
        }
        @font-face {
        font-family: "Lora";
        src: url(fonts/Lora-VariableFont_wght.ttf) format("ttf");
        font-weight: 1;
        }

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

        /* --- BASE STYLES --- */
        body {
            font-family: var(--font-main);
            background-color: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: var(--accent-color);
            transition: color var(--transition-speed);
        }

        a:hover {
            color: var(--accent-hover);
        }

        /* --- HEADER / NAV --- */
        header {
            border-bottom: 1px solid var(--border-color);
            background-color: rgba(18, 18, 18, 0.8);
            backdrop-filter: blur(10px); /* Modern glass effect */
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            max-width: 1000px;
            margin: 0 auto;
            padding: 1px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--text-primary);
        }

        .logo span {
            color: var(--accent-color);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        /* --- MAIN LAYOUT --- */
        main {
            flex: 1;
            max-width: 1000px;
            margin: 0 auto;
            padding: 60px 20px;
            width: 100%;
        }

        /* --- HERO SECTION --- */
        .hero {
            margin-bottom: 80px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background-color: transparent;
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            transition: all var(--transition-speed);
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--accent-color);
            color: var(--bg-base);
            box-shadow: 0 0 15px rgb(66, 242, 255); /* Neon glow effect */
        }


        /* --- PROJECTS GRID --- */
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 10px;
            display: inline-block;
        }
        .section-title-small {
            font-size: 1.6rem;
            margin-bottom: 30px;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 10px;
            display: inline-block;
        }


        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .card {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 25px;
            transition: transform var(--transition-speed), background-color var(--transition-speed);

        }

        .card:hover {
            transform: translateY(-5px);
            background-color: var(--bg-surface-hover);
            border-color: var(--accent-color);
        }

        .card h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }


/* Portfolio RELATED */
        .portfoliosummary{
    display: block;
}
    .portfolioicon{
    display: flex;  
    justify-content: center; 
    align-items: center;
}
.visionaries{
    width: 400px;
    height:200px;
}
        summary:hover {
            box-shadow: 0 0 15px rgb(66, 242, 255); /* Neon glow effect */
        }
        .landscape-artwork{
            width: 400px; 
            height: 240px; 
            justify-content: center; 
            align-items: center;

        }
        .cover-artwork{
            width: 240px; 
            height: 240px; 
                        justify-content: center; 
            align-items: center;


        }

        .grid-album {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 450px));
            gap: 25px;
            align-items: center;
            justify-content: center;
        }
        .grid-album h3 {
            text-align: center;
        }

        .card-album {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 25px;
            transition: transform var(--transition-speed), background-color var(--transition-speed);

        }

        .card-album:hover {
            transform: translateY(-5px);
            background-color: var(--bg-surface-hover);
            border-color: var(--accent-color);
        }

        .card-album h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .card-album p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

/* Gallery RELATED */
        .grid-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
            gap: 25px;
            align-items: center;
            justify-content: center;
        }
        .grid-gallery h3 {
            text-align: center;
        }

        .card-gallery {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 25px;
            transition: transform var(--transition-speed), background-color var(--transition-speed);

        }

        .card-gallery:hover {
            transform: translateY(-5px);
            background-color: var(--bg-surface-hover);
            border-color: var(--accent-color);
        }

        .card-gallery h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .card-gallery p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .tag {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .gamesmobile{
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
            gap: 25px;
        }
        .gamespng{
             width: 450px; height: 450px; justify-content: center; align-items: center;
        }

        /* --- FOOTER --- */
        footer {
            text-align: center;
            padding: 30px 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .visionaries{
        width: 300px;
        height:150px;
}
            .hero h1 {
                font-size: 2.2rem;
            }
            header {
                justify-content: center;
                align-items: center;
                text-align: center;
            }
            nav {
                display: inline;
                padding: 20px;
   
            }
            .nav-links {
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                scale: 90%;
        }
            }
            .gamesmobile{
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
           }
            .gamespng{
             width: 250px; height: 250px; justify-content: center; align-items: center;
         }
        .landscape-artwork{
            width: 320px; 
            height: 180px; 
            justify-content: center; 
            align-items: center;

        }

        .grid-album {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 450px));
            gap: 25px;
        }
        .grid-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
            gap: 25px;
        }
        
        