* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0d0d;
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 15px 15px, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
            z-index: -1;
            opacity: 0.8;
        }

        a {
            color: blue;
            text-decoration: none;
        }

        .to-be-watched {
            color: rgb(8, 213, 138);
        }
        
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #f3ab25;
            font-weight: 600;
            text-decoration: none;
        }
        
        .time-display {
            font-size: 0.875rem;
            color: #9ca3af;
            font-weight: 500;
        }
        
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1rem;
            margin-bottom: 4rem;
            flex: 1;
        }
        
        .bento-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 1.25rem;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }
        
        .bento-card:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .bento-card:focus {
            outline: 2px solid #3b82f6;
            outline-offset: 2px;
        }
        
        .col-2 { grid-column: span 2; }
        .col-3 { grid-column: span 3; }
        .col-4 { grid-column: span 4; }
        .col-6 { grid-column: span 6; }
        .col-8 { grid-column: span 8; }
        .row-2 { grid-row: span 2; }
        .row-3 { grid-row: span 3; }
        
        .profile-card {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .profile-name {
            font-size: 1.375rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        
        .profile-aka {
            font-size: 0.875rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }
        
        .profile-pronunciation {
            font-size: 0.75rem;
            opacity: 0.7;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
        }
        
        .social-single {
            justify-content: center;
            align-items: center;
            font-size: 2rem;
        }
        
        .github-card {
            background: #24292e;
            color: white;
        }
        
        .instagram-card {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            color: white;
        }
        
        .coffee-card {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: white;
        }
        
        .intro-card {
            background: linear-gradient(135deg, #13a574 0%, #2681dc 100%);
            color: white;
        }
        
        .intro-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            width: fit-content;
        }
        
        .intro-info {
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }
        
        .intro-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: underline;
        }
        
        .contact-card {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            color: white;
        }
        
        .watchlist-card {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
        }
        
        .card-icon {
            margin-bottom: 0.5rem;
        }
        
        .card-title {
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .discord-card {
            background: #5865f2;
            color: white;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
        }

        .twitch-card {
            background: #9147ff;
            color: white;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
        }
        
        .resume-card {
            background: #f3f4f6;
            color: #1f2937;
            justify-content: center;
            align-items: center;
            font-weight: 600;
        }
        
       /* Minimal Valorant Popup */
        .valorant-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .valorant-popup.active {
            display: flex;
        }

        .popup-content {
            position: relative;
            background: white;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
            max-width: 400px;
            width: 90%;
            border: 1px solid #e5e5e5;
        }

        /* Close button */
        .close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 24px;
            color: #666;
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .close:hover {
            background: #f5f5f5;
            color: #000;
        }

        /* Header */
        h2 {
            font-size: 20px;
            font-weight: 600;
            color: #000;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }

        /* Player Info Section */
        .player-info {
            margin-bottom: 24px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 20px;
        }

        .player-info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .player-info-item:last-child {
            margin-bottom: 0;
        }

        .player-info-label {
            font-size: 14px;
            color: #666;
            font-weight: 400;
        }

        .player-info-value {
            font-size: 14px;
            color: #000;
            font-weight: 500;
        }

        /* Rank Section */
        .valorant-rank {
            text-align: center;
            margin-bottom: 24px;
            padding: 20px 0;
            background: #fafafa;
            border-radius: 8px;
            border: 1px solid #f0f0f0;
        }

        .rank-label {
            font-size: 12px;
            color: #666;
            font-weight: 400;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .rank-value {
            font-size: 24px;
            color: #000;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .rank-tier {
            font-size: 12px;
            color: #666;
            font-weight: 400;
        }

        /* Actions */
        .popup-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .stats-link {
            flex: 1;
            padding: 10px 16px;
            background: #000;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            transition: background 0.2s ease;
        }

        .stats-link:hover {
            background: #333;
        }

        .close-btn {
            padding: 10px 16px;
            background: #f5f5f5;
            color: #333;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .close-btn:hover {
            background: black;
            color: black;
        }
        
        .tech-card {
            background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
            color: white;
        }
        
        .tech-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            width: fit-content;
        }
        
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 0.5rem;
        }
        
        .tech-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        
        .pinterest-card {
            background: #e60023;
            color: white;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
        }
        
        .x-card {
            background: #000000;
            color: white;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
        }
        
        .about-card {
            background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
            color: white;
        }
        
        .about-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            width: fit-content;
        }
        
        .about-text {
            font-size: 0.875rem;
            line-height: 1.5;
            opacity: 0.95;
        }
        
        .youtube-card {
            background: #ff0000;
            color: white;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
        }

        .valorant-card {
            background: #ff0000;
            color: white;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
        }
        
        .chess-card {
            background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
            color: white;
            justify-content: center;
            align-items: center;
            font-size: 3rem;
        }
        
        .qr-card {
            background: #f9fafb;
            color: #1f2937;
            justify-content: center;
            align-items: center;
        }
        
        .qr-code {
            width: 80px;
            height: 80px;
            background: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100' height='100' fill='%23000'/%3e%3crect x='10' y='10' width='10' height='10' fill='%23fff'/%3e%3crect x='30' y='10' width='10' height='10' fill='%23fff'/%3e%3crect x='50' y='10' width='10' height='10' fill='%23fff'/%3e%3crect x='70' y='10' width='10' height='10' fill='%23fff'/%3e%3crect x='10' y='30' width='10' height='10' fill='%23fff'/%3e%3crect x='30' y='30' width='10' height='10' fill='%23fff'/%3e%3crect x='50' y='30' width='10' height='10' fill='%23fff'/%3e%3crect x='70' y='30' width='10' height='10' fill='%23fff'/%3e%3c/svg%3e") center/contain;
        }
        
        .spotify-card {
            background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
            color: white;
            display: flex;
            flex-direction: column;
        }
        
        .spotify-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        
        .spotify-tag {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            opacity: 0.9;
        }
        
        .view-profile {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.75rem;
            margin-left: auto;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .view-profile:hover {
            color: white;
            text-decoration: underline;
        }
        
        .now-playing {
            flex: 1;
            display: flex;
            align-items: center;
        }
        
        .now-playing-container {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 1rem;
        }
        
        .album-art {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.2);
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .track-info {
            flex: 1;
            min-width: 0;
        }
        
        .track-name {
            font-weight: 600;
            font-size: 1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 0.25rem;
        }
        
        .artist-name {
            font-size: 0.875rem;
            opacity: 0.9;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 0.25rem;
        }
        
        .played-ago {
            font-size: 0.75rem;
            opacity: 0.8;
            font-weight: 500;
        }
        
        .spotify-link {
            color: white;
            font-size: 1.25rem;
            opacity: 0.8;
            transition: opacity 0.2s ease, transform 0.2s ease;
            margin-left: auto;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .spotify-link:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        /* Activity Card Styling */
        .activity-card {
            background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
        }
        
        .activity-header {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .activity-tag {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            opacity: 0.9;
        }
        
        .activity-card img {
            width: 400px;
            height: 400px;
            border-radius: 12px;
            padding: 10px;
            box-sizing: border-box;
            transition: transform 0.3s ease;
            margin-bottom: -220px;
        }
        
        .activity-card:hover img {
            transform: scale(1.02);
        }
        
        /* Valorant Popup - Player Info */
        .valorant-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .valorant-popup.show {
            display: flex;
            opacity: 1;
        }
        
        .popup-content {
            background: #1a1a1a;
            border-radius: 16px;
            padding: 2.5rem 3rem;
            width: 90%;
            max-width: 400px;
            position: relative;
            border: 1px solid rgba(255, 70, 85, 0.4);
            box-shadow: 0 10px 40px rgba(255, 70, 85, 0.25);
            transform: translateY(20px);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
            opacity: 0;
            text-align: center;
        }
        
        .valorant-popup.show .popup-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .popup-content h2 {
            color: #fff;
            margin: 0 0 2rem 0;
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            background: linear-gradient(90deg, #ff4655 0%, #ff5c6c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        
        .player-info {
            margin: 2rem 0;
        }
        
        .player-info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .player-info-label {
            color: #9ca3af;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .player-info-value {
            color: #f3f4f6;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .valorant-rank {
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(255, 70, 85, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(255, 70, 85, 0.2);
        }
        
        .popup-content a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #ff4655;
            color: white;
            text-align: center;
            padding: 0.8rem 1.75rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
            margin-top: 1.5rem;
            width: 100%;
        }
        
        .popup-content a:hover {
            background: #ff2e3f;
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(255, 70, 85, 0.4);
        }
        
        .popup-content button {
            display: block;
            width: 100%;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #d1d5db;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s ease;
            margin-top: 1rem;
            font-size: 0.95rem;
        }
        
        .popup-content button:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 1.5rem;
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        
        .close:hover {
            color: #fff;
        }
        
        .song-info {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }
        
        .album-art {
            width: 48px;
            height: 48px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            flex-shrink: 0;
        }
        
        .song-details h4 {
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 0.125rem;
        }
        
        .song-details p {
            font-size: 0.75rem;
            opacity: 0.8;
        }
        
        .activity-card {
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            color: white;
        }
        
        .activity-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }
        
        .activity-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .status-badge {
            background: rgba(255, 255, 255, 0.9);
            color: #0284c7;
            padding: 0.25rem 0.5rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .commit-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .file-info {
            font-size: 0.8rem;
            opacity: 0.9;
        }
        
        .anime-card {
            background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
            color: white;
        }
        
        .anime-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            width: fit-content;
        }
        
        .anime-stats {
            font-size: 0.875rem;
            line-height: 1.4;
        }
        
        .navbar {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            display: flex;
            gap: 2rem;
            align-items: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        
        .nav-link {
            color: #d1d5db;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.25s ease;
        }
        
        .nav-link:hover,
        .nav-link.active {
            background: rgba(255, 255, 255, 0.15);
            color: white;
        }
        
        .nav-home {
            color: #fbbf24;
            font-weight: 600;
        }

        .get {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            opacity: 0.9;
            color: rgb(0, 0, 0);
            text-decoration: dashed;
        }

        .web-card {
            background-color: #ffffff;
            color: black;
        }

        .shadowfun {
            width: 300px;
              background-image: url('https://shadowfun.in/images/shadowfun.png'); 
  background-size: cover;    
  background-position: center; 
  background-repeat: no-repeat;
        }
        
        @media (max-width: 1024px) {
            .bento-grid {
                grid-template-columns: repeat(8, 1fr);
            }
            
            .col-8 { grid-column: span 8; }
            .col-6 { grid-column: span 8; }
            .col-4 { grid-column: span 4; }
            .col-3 { grid-column: span 4; }
            .col-2 { grid-column: span 2; }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
            
            .bento-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.75rem;
            }
            
            .col-8,
            .col-6,
            .col-4 { grid-column: span 4; }
            .col-3 { grid-column: span 2; }
            .col-2 { grid-column: span 2; }
            
            .navbar {
                bottom: 1rem;
                padding: 0.5rem 1rem;
                gap: 1rem;
            }
            
            .nav-link {
                padding: 0.375rem 0.75rem;
                font-size: 0.8125rem;
            }
            
            .tech-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            .bento-card:hover {
                transform: none;
            }
        }