        :root {
          --main: #8e6d1c;
          --gold: #d4af37;
          --bg: #f4ece1;
        }

        body {
          font-family: 'Segoe UI', sans-serif;
          background: var(--bg);
          margin: 0;
          display: flex;
          flex-direction: column;
          align-items: center;
          height: 100vh;
        }

        .header {
          width: 100%;
          padding: 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          box-sizing: border-box;
        }

        .hasanat-badge {
          background: white;
          padding: 5px 15px;
          border-radius: 20px;
          border: 1px solid var(--gold);
          color: var(--main);
          font-weight: bold;
        }

        .counter-area {
          flex: 1;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          width: 100%;
        }

        #dhikr-text {
          font-size: 2rem;
          color: var(--main);
          font-weight: bold;
          margin-bottom: 20px;
          text-align: center;
        }

        .big-btn {
          width: 200px;
          height: 200px;
          border-radius: 50%;
          background: white;
          border: 8px solid var(--gold);
          color: var(--main);
          font-size: 3rem;
          font-weight: bold;
          cursor: pointer;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          display: flex;
          align-items: center;
          justify-content: center;
          transition: 0.1s;
          -webkit-tap-highlight-color: transparent;
        }

        .big-btn:active {
          transform: scale(0.9);
          background: #fef9e7;
        }

        .total-session {
          margin-top: 30px;
          font-size: 1.2rem;
          color: #666;
        }