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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        main {
            width: 100%;
            max-width: 900px;
        }

        .profile-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            animation: fadeIn 0.6s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Profile Header with Image */
        .profile-image {
            background: linear-gradient(135deg, #667eea, #764ba2);
            padding: 2rem;
            text-align: center;
            position: relative;
        }

        .profile-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background: white;
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        }

        .profile-image img {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .profile-image img:hover {
            transform: scale(1.05);
        }

        /* Profile Content */
        .profile-content {
            padding: 2rem;
        }

        header {
            text-align: center;
            margin-bottom: 2rem;
        }

        header h1 {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            color: #667eea;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        header p {
            color: #666;
            font-size: clamp(0.95rem, 2vw, 1.05rem);
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Time Display */
        .time-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 1.2rem;
            border-radius: 12px;
            text-align: center;
            font-family: 'Courier New', monospace;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            border: 2px solid #667eea;
            font-weight: 600;
            color: #333;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .social-links a {
            color: white;
            text-decoration: none;
            padding: 0.7rem 1.5rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }

        /* Profile Actions */
        .profile-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .action-button {
            display: inline-block;
            text-align: center;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            background: transparent;
            color: #667eea;
            text-decoration: none;
            border: 2px solid #667eea;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .action-button:hover {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        /* Interests Section */
        .interests {
            margin-top: 2rem;
        }

        .interests > h2 {
            text-align: center;
            color: #667eea;
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .interests > h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .lists-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .hobbies,
        .dislikes {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            padding: 1.5rem;
            border-radius: 12px;
            /* border-left: 4px solid #667eea; */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hobbies {
            border-left-color: #667eea;
        }

        .dislikes {
            border-left-color: #764ba2;
        }

        .hobbies:hover,
        .dislikes:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
        }

        .interests h3 {
            color: #667eea;
            margin: 0 0 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

   

        .dislikes h3 {
            color: #764ba2;
        }

     

        .interests ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .interests li {
            padding: 0.75rem 0;
            color: #555;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.2s ease;
            padding-left: 1.5rem;
            position: relative;
        }

        .interests li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #667eea;
            font-size: 1.5em;
            line-height: 0.75;
        }

        .interests li:hover {
            padding-left: 2rem;
            color: #667eea;
        }

        .interests li:last-child {
            border-bottom: none;
        }

        /* Responsive Design */
        @media (min-width: 640px) {
            .profile-image img {
                width: 180px;
                height: 180px;
            }

            .lists-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 768px) {
            .profile-content {
                padding: 3rem;
            }

            .profile-image img {
                width: 200px;
                height: 200px;
            }

            .action-button {
                min-width: 180px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 0.5rem;
            }

            .profile-content {
                padding: 1.5rem;
            }

            .profile-image {
                padding: 1.5rem;
            }

            .profile-image img {
                width: 140px;
                height: 140px;
            }

            .social-links a,
            .action-button {
                width: 100%;
                text-align: center;
            }

            .hobbies,
            .dislikes {
                padding: 1.25rem;
            }
        }

        /* Accessibility */
        :focus {
            outline: 3px solid #667eea;
            outline-offset: 3px;
        }

        :focus:not(:focus-visible) {
            outline: none;
        }

        :focus-visible {
            outline: 3px solid #667eea;
            outline-offset: 3px;
        }