 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #121212;
            color: white;
            font-family: 'Arial', sans-serif;
            min-height: 100vh;
        }

        nav {
            background: #1f1f1f;
            padding: 10px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        }

        nav ul {
            display: flex;
            justify-content: space-around;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            padding: 10px;
            border-radius: 8px;
            transition: 0.3s;
        }

        nav a.active {
            background: #4CAF50;
        }

        nav i {
            font-size: 20px;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: #1a1a1a;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .user-info img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #4CAF50;
        }

        .coin-info {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .coin-info img {
            width: 35px;
            height: 35px;
        }

        h2.title {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            color: #ffcc00;
            font-size: 24px;
        }

        .tapCount {
            margin-top: 120px;
            text-align: center;
            padding: 20px;
        }

        .tapCount img {
            width: 650px;
            height: 650px;
            cursor: pointer;
            transition: transform 0.1s;
        }

        .tapCount img:active {
            transform: scale(0.95);
        }

        h3 {
            text-align: center;
            margin: 20px 0;
            color: #888;
        }

        @media (max-width: 480px) {
            header {
                padding: 10px 15px;
            }
            
            .user-info span {
                display: none;
            }
            
            h2.title {
                font-size: 18px;
            }
            
            .tapCount img {
                width: 320px;
                height: 320px;
            }
        }
         .bet-controls {
            padding: 10px;
            background-color: #1f1f1f;
            display: flex;
            gap: 8px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
        }
 /* Mobil için düzenleme */
@media (max-width: 480px) {
    .bet-controls {
        flex-direction: row; /* Yatay düzeni koru */
        padding: 10px 5px;
    }
    
    input#bet-amount {
        order: 1; /* Input'u ilk sıraya al */
        width: 100%;
        max-width: 100px;
    }
    
    button#buy-btn {
        order: 2; /* AL butonu ikinci sıra */
    }
    
    button#short-btn {
        order: 3; /* SAT butonu üçüncü sıra */
    }
}