        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #2a2a2a;
            color: #ffffff;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Section */
        .header {
            text-align: center;
            padding: 40px 0;
            border-bottom: 1px solid #404040;
            margin-bottom: 40px;
        }

        .profile-logo {
            max-width: 300px;
            height: auto;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .profile-logo:hover {
            transform: scale(1.05);
        }

        /* Fallback text styling if logo fails to load */
        .profile-info h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #ff6b6b;
            display: none;
            /* Hidden by default when logo is present */
        }

        .profile-info h1.show-fallback {
            display: block;
        }

        .profile-info .subtitle {
            font-size: 1.2rem;
            color: #cccccc;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            color: #ff6b6b;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #ff8e8e;
        }

        .follow-btn {
            background-color: #ff6b6b;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 20px;
        }

        .follow-btn:hover {
            background-color: #ff5252;
        }

        /* Projects Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .project-card {
            background-color: #363636;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease;
            cursor: pointer;
            position: relative;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
            border-radius: 8px;
            z-index: 1;
        }

        .project-card:hover::before {
            opacity: 0.05;
        }

        .project-card>* {
            position: relative;
            z-index: 2;
        }

        .project-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .project-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-image:hover img {
            transform: scale(1.05);
        }

        .project-image .fallback-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: inherit;
            z-index: 1;
        }

        .project-image .fallback-content.hidden {
            display: none;
        }

        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
            z-index: 2;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-image:hover::before {
            opacity: 1;
        }

        .project-info {
            padding: 20px;
        }

        .project-title {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: #ff6b6b;
        }

        .project-description {
            color: #cccccc;
            font-size: 0.95rem;
            margin-bottom: 12px;
        }

        .project-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .project-author {
            color: #aaaaaa;
            font-size: 0.9rem;
        }

        .project-type {
            background-color: #ff6b6b;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .play-button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background-color 0.3s ease, opacity 0.3s ease;
            margin-top: 10px;
        }

        .play-button:hover {
            background-color: #45a049;
        }

        .play-button:disabled {
            background-color: #666666;
            cursor: not-allowed;
            opacity: 0.6;
        }

        .play-button:disabled:hover {
            background-color: #666666;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .header {
                padding: 30px 0;
            }

            .profile-logo {
                max-width: 250px;
            }

            .profile-info h1 {
                font-size: 2rem;
            }

            .profile-info .subtitle {
                font-size: 1rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .social-links {
                flex-direction: column;
                gap: 10px;
            }

            .project-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .profile-logo {
                max-width: 200px;
            }

            .profile-info h1 {
                font-size: 1.5rem;
            }

            .project-image {
                height: 150px;
            }

            .project-info {
                padding: 15px;
            }
        }

        /* Loading Animation */
        .loading {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .loading.loaded {
            opacity: 1;
            transform: translateY(0);
        }