* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: radial-gradient(circle at center, #1a1c23 0%, #0f1015 100%);
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .main-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            animation: fadeIn 1.5s ease-out;
            max-width: 650px;
            width: 100%;
        }

        .logo-wrapper {
            position: relative;
            max-width: 250px;
            width: 100%;
            height: auto;
            display: inline-block;
        }

        .logo-img {
            width: 100%;
            height: auto;
            display: block;
            position: relative;
            z-index: 2;
        }

        .eye-img {
            position: absolute;
            top: 36%;  
            left: 50%; 
            transform: translate(-50%, -50%); 
            width: 8.8%; 
            height: auto;
            z-index: 1;
            pointer-events: none;
  
            transition: filter 0.1s ease, transform 0.1s linear; 
        }
        
        .main-container:has(.gplay-btn:hover) .eye-img {
            filter: invert(45%) sepia(93%) saturate(3015%) hue-rotate(155deg) brightness(101%) contrast(105%) drop-shadow(0 0 15px #00ffff);
        }

        .main-container:has(.email-btn:hover) .eye-img {
            filter: invert(21%) sepia(91%) saturate(4162%) hue-rotate(272deg) brightness(97%) contrast(114%) drop-shadow(0 0 15px #bd00ff);
        }
        
        .links-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 280px;
            flex-shrink: 0;
        }

        .main-button {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            text-align: center;
            white-space: nowrap;
        }

        .gplay-btn {
            background: #00ffff;
            color: #0f1015;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        }

        .gplay-btn:hover {
            background: #ffffff;
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
        }

        .email-btn {
            background: transparent;
            color: #ffffff;
            border: 2px solid #626875;
            cursor: pointer;
            font-size: 0.85rem;
        }

        .email-btn:hover {
            border-color: #ffffff;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        @media (max-width: 600px) {
            .main-container {
                flex-direction: column;
                gap: 30px;
                max-width: 280px;
            }

            .logo-wrapper {
                max-width: 180px;
            }

            .links-container {
                width: 100%;
            }
        }