
        :root {
            --bg-color: #242424;
            --text-color: #FDFFEE;
            --card-bg: #333333;
            --primary-color: #FDFFEE;
            --divider-color: #FDFFEE;
            --spacing: 2rem;
            --border-radius: 5px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: 'Press Start 2P', system-ui, cursive;
            font-weight: 400; 
            text-transform: uppercase; /
            color: #FDFFEE; 
            text-shadow: 3px 3px 0px #242424; 
        }

        img, svg {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: #ea15ff; 
            text-decoration: none; 
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        a:hover {
            color: var(--primary-color); 
            text-shadow: 0 0 8px rgba(0, 189, 255, 0.6); 
        }

        .section-divider {
            border: 0;
            border-top: 1px solid #333333; 
            margin: 2rem 0; 
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }

        
        .site-header {
            border-bottom: 1px solid var(--divider-color);
            padding: 1.5rem 0;
            background-color: var(--bg-color); 
        }

        .site-header .container {
            display: flex;
            justify-content: center; 
            align-items: center;
        }

        .logo {
            display: inline-flex;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .logo:hover {
            opacity: 0.8;
        }

        
        .logo svg {
            height: 45px; 
            width: 168px; 
            display: block;
        }

       
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--spacing);
            min-height: 60vh;
            padding: 4rem 0;
        }

        .hero-content {
            flex: 1;
        }

        .hero-content h1 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #f2f2f2;
            max-width: 600px;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .hero-image img {
            width: 100%;
            max-width: 450px;
            border-radius: 50%; 
            object-fit: cover;
            box-shadow: 0 0 2px rgba(251, 253, 236, 1);
        }

        
        .portfolio-section {
            padding: 4rem 0;
        }

        .portfolio-section h2 {
            font-size: 1.5rem; 
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-color);
        }

        .card-content h3 {
            font-size: 1rem; 
            margin-bottom: 0.8rem;
            color: var(--primary-color);
        }

        .masonry-grid {
            column-count: 3;
            column-gap: 1.5rem;
        }

        .card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            break-inside: avoid; 
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card img {
            width: 100%;
            border-bottom: 1px solid #eee;
        }

        .card-content {
            padding: 1.5rem;
        }

        .card-content h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .card-content p {
            font-size: 0.95rem;
            color: #f2f2f2;
        }

       
        @media (max-width: 992px) {
            .masonry-grid {
                column-count: 2;
            }
        }

        @media (max-width: 768px) {
            .hero {
                flex-direction: column-reverse;
                text-align: center;
                padding: 3rem 0;
            }

            .hero-content p {
                margin: 0 auto;
            }

            .hero-content h1 {
                font-size: 2.5rem;
                margin-top: 1.5rem;
            }

            .masonry-grid {
                column-count: 1;
            }
        }

        
        .site-footer {
            background-color: var(--bg-color);
            padding-bottom: 3rem;
            margin-top: 4rem;
        }

        
        .footer-divider {
            border: 0;
            border-top: 1px solid var(--divider-color);
            width: 100%;         
            margin: 0 0 3rem 0;
            display: block;     
        }

        .footer-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        
        .footer-quote {
            
            font-size: 1rem;
            color: var(--text-color);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

       
        .footer-info {
            font-size: 0.9rem;
            color: #888; 
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            align-items: center;
        }

        .footer-info .separator {
            color: var(--secondary-color); 
        }