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

        body {
            font-family: 'Quicksand', sans-serif;
            background-color: #0a0a0a;
            color: #ff9dd2;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .pet-me-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            cursor: pointer;
            opacity: 1;
            transition: all 0.5s ease;
        }

        .pet-me-text {
            font-family: 'VT323', monospace;
            font-size: 4rem;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
            user-select: none;
            transition: all 0.5s ease;
            animation: floatText 2s ease-in-out infinite;
        }
        @keyframes floatText {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        .pet-me-overlay.fade-out {
            opacity: 0;
            backdrop-filter: blur(0px);
        }

        .pet-me-overlay.fade-out .pet-me-text {
            transform: scale(1.2);
            opacity: 0;
        }

        .hidden {
            display: none;
        }

        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            background: url('/static/images/background.gif') no-repeat center center fixed;
            background-size: cover;
        }

        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('background.gif');
            background-size: cover;
            opacity: 0.2;
            animation: twinkling 8s linear infinite;
        }

        .clouds {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(255,165,210,0.2) 0%, rgba(10,10,10,0) 70%);
            animation: pulse 10s ease-in-out infinite;
        }

        @keyframes twinkling {
            0% { opacity: 0.1; }
            50% { opacity: 0.3; }
            100% { opacity: 0.1; }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.2;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.3;
            }
            100% {
                transform: scale(1);
                opacity: 0.2;
            }
        }

        .terminal-container {
            width: 90%;
            max-width: 900px;
            height: 85vh;
            background-color: rgba(21, 21, 21, 0.85);
            border-radius: 20px;
            box-shadow: 0 0 30px rgba(255, 157, 242, 0.3),
                        0 0 60px rgba(157, 0, 255, 0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 10;
            cursor: default;
            will-change: transform;
        }

        .terminal-container.dragging {
            transition: none;
            opacity: 0.95;
            cursor: move;
        }
        .terminal-container:not(.dragging) {
            transition: transform 0.1s ease-out;
        }
        .terminal-container.show {
            display: flex;
            animation: terminalAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }
        @keyframes terminalAppear {
            0% {
                transform: translate(-50%, -50%) scale(0.3);
                opacity: 0;
                backdrop-filter: blur(0px);
            }
            50% {
                opacity: 0.5;
                backdrop-filter: blur(5px);
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
                backdrop-filter: blur(10px);
            }
        }
        .terminal-container.show::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 25px;
            background: linear-gradient(45deg, rgba(255,157,242,0.3), rgba(157,0,255,0.2));
            z-index: -1;
            animation: glowPulse 2s ease-in-out infinite;
        }
        @keyframes glowPulse {
            0% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.02);
            }
            100% {
                opacity: 0.5;
                transform: scale(1);
            }
        }
        @keyframes terminal-glow {
            from {
                box-shadow: 0 0 30px rgba(255, 157, 242, 0.3),
                            0 0 60px rgba(157, 0, 255, 0.2);
            }
            to {
                box-shadow: 0 0 40px rgba(255, 157, 242, 0.5),
                            0 0 80px rgba(157, 0, 255, 0.4);
            }
        }

        .terminal-header {
            height: 40px;
            background-color: rgba(51, 51, 51, 0.8);
            display: flex;
            align-items: center;
            padding: 0 15px;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            cursor: move;
            user-select: none;
        }

        .terminal-buttons {
            display: flex;
            gap: 8px;
        }

        .terminal-button {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            transition: transform 0.2s;
        }

        .terminal-button:hover {
            transform: scale(1.1);
        }

        .close {
            background-color: #ff5f56;
        }

        .minimize {
            background-color: #ffbd2e;
        }

        .maximize {
            background-color: #27c93f;
        }

        .terminal-title {
            flex: 1;
            text-align: center;
            color: #ff9dd2;
            font-size: 16px;
            letter-spacing: 1px;
            font-family: 'VT323', monospace;
        }

        .terminal-content {
            flex: 1;
            padding: 25px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #ff69b4 #1e1e1e;
        }

        .profile-wrapper {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto;
        }

        .profile-pic {
            width: 150px;
            height: 150px;
            border-radius: 75px;
            object-fit: cover;
            border: 4px solid #ff9dd2;
            box-shadow: 0 0 20px rgba(255, 157, 242, 0.5);
            position: relative;
            z-index: 0;
        }

        .profile-decorations {
            position: absolute;
            top: -18px;
            left: -10%;
            width: 120%;
            height: 120%;
            pointer-events: none;
            z-index: 1;
        }

        .halo {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 20px;
            background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.6) 0%, rgba(255, 215, 0, 0) 70%);
            border-radius: 50%;
        }

        .wing-right {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200px;
            height: 200px;
            transform: translate(-50%, -50%);
            background: url('/static/images/pp.gif') no-repeat center;
            background-size: cover;
            z-index: 2;
        }

        .profile-name {
            font-size: 32px;
            background: linear-gradient(45deg, #ff9dd2, #ff69b4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .profile-tag {
            font-size: 24px;
            color: #b4b4b4;
        }

        .profile-username {
            font-size: 18px;
            color: #ff9dd2;
            margin-bottom: 15px;
        }

        .profile-location,
        .profile-views {
            font-size: 16px;
            color: #b4b4b4;
            margin: 5px 0;
        }

        .music-player {
            background: rgba(255, 157, 242, 0.1);
            border-radius: 15px;
            padding: 20px;
            margin-top: 30px;
        }

        .music-info {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 20px;
        }

        .song-cover img {
            width: 100px;
            height: 100px;
            border-radius: 10px;
            object-fit: cover;
            border: 2px solid #ff9dd2;
        }

        .song-title {
            font-size: 24px;
            color: #ff9dd2;
            margin-bottom: 5px;
        }

        .song-artist {
            font-size: 16px;
            color: #b4b4b4;
        }

        .progress-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            margin: 15px 0;
            position: relative;
        }

        .progress {
            position: absolute;
            height: 100%;
            background: linear-gradient(90deg, #ff9dd2, #ff69b4);
            border-radius: 3px;
            width: 30%;
        }

        .time-info {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #b4b4b4;
        }

        .control-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            margin: 20px auto;
            padding: 0 20px;
            position: relative;
            width: 100%;
            max-width: 400px;
        }

        .control-btn {
            background: none;
            border: none;
            color: #ff9dd2;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2em;
        }

        .control-btn:hover {
            transform: scale(1.1);
            color: #ff69b4;
            text-shadow: 0 0 10px rgba(255, 157, 242, 0.5);
        }

        .play-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 157, 242, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 157, 242, 0.3);
            transition: all 0.3s ease;
            position: relative;
            z-index: 5;
        }

        #prev-btn, #next-btn {
            position: relative;
            z-index: 5;
        }

        .play-btn:hover {
            transform: scale(1.1);
            background: rgba(255, 157, 242, 0.3);
            border-color: rgba(255, 157, 242, 0.5);
            box-shadow: 0 0 15px rgba(255, 157, 242, 0.3);
        }

        .volume-control {
            width: 0;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            cursor: pointer;
            overflow: hidden;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            opacity: 0;
            position: absolute;
            left: 25px;
            top: 50%;
            transform: translateY(-50%);
        }

        .volume-progress {
            height: 100%;
            background: linear-gradient(90deg, #ff9dd2, #ff69b4);
            border-radius: 2px;
            width: 70%;
            transition: width 0.2s ease;
        }

        .volume-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
            opacity: 0;
        }

        .volume-control-wrapper {
            position: absolute;
            right: 100px;
            display: flex;
            align-items: center;
            z-index: 10;
        }

        .volume-control-wrapper:hover .volume-control {
            width: 100px;
            opacity: 1;
        }

        .volume-icon {
            color: #ff9dd2;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 6;
        }

        .volume-icon:hover {
            transform: scale(1.1);
            color: #ff69b4;
        }
        .volume-icon.muted {
            color: #666;
        }

        .social-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .social-card {
            background: rgba(255, 157, 242, 0.1);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: transform 0.2s;
        }

        .social-card:hover {
            transform: translateY(-5px);
        }

        .social-card i {
            font-size: 30px;
            margin-bottom: 10px;
        }

        .social-username {
            display: block;
            margin: 10px 0;
            color: #ff9dd2;
        }

        .social-button {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 157, 242, 0.2);
            border-radius: 20px;
            color: #ff9dd2;
            text-decoration: none;
            transition: background 0.2s;
        }

        .social-button:hover {
            background: rgba(255, 157, 242, 0.3);
        }

        #particleCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* Android için ses kontrolü ve medya sorguları */
        @media (max-width: 768px) {
            .terminal-container {
                width: 95%;
                height: 90vh;
            }

            .profile-wrapper {
                margin: 0 auto;
            }

            .bio-content {
                flex-direction: column;
                text-align: center;
            }

            .social-links {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }

            .music-info {
                flex-direction: column;
                text-align: center;
            }

            .wing-right {
                width: 150px;
                height: 150px;
            }

            .terminal-header {
                padding: 0 10px;
            }

            /* Ses kontrolü için Android özel düzenlemeler */
            .volume-control-wrapper {
                position: absolute;
                right: 10px;
                display: flex;
                align-items: center;
                z-index: 10;
                touch-action: none;
            }

            .volume-control {
                width: 0;
                height: 6px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 3px;
                cursor: pointer;
                overflow: hidden;
                transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
                opacity: 0;
                position: absolute;
                left: 30px;
                top: 50%;
                transform: translateY(-50%);
            }

            .volume-slider {
                position: absolute;
                top: -8px;
                left: 0;
                width: 100%;
                height: 24px;
                cursor: pointer;
                opacity: 0;
                -webkit-tap-highlight-color: transparent;
            }

            .volume-control-wrapper.active .volume-control {
                width: 80px;
                opacity: 1;
            }

            .volume-icon {
                font-size: 1.5em;
                padding: 10px;
            }

            .control-buttons {
                gap: 20px;
                padding: 0 15px;
            }

            .play-btn {
                width: 60px;
                height: 60px;
            }

            #prev-btn, #next-btn {
                font-size: 1.4em;
                padding: 10px;
            }
        }

        /* Android için özel dokunmatik olaylar desteği */
        @media (hover: none) {
            .volume-control-wrapper:hover .volume-control {
                width: 0;
                opacity: 0;
            }

            .volume-control-wrapper.active .volume-control {
                width: 80px;
                opacity: 1;
            }
        }