      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
       body {
            background: #00143a;
            padding: 20px 0;
            min-height: 100vh;
            font-family: Arial, sans-serif;
            line-height: 1.5;
        }
        
        .container {
            max-width: 550px;
            width: 95%;
            margin: auto;
            background: #f5f5f5;
            border-radius: 12px;
            overflow: hidden;
        }
        
        /* Header */
        .header {
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            background: white;
        }
        
        .app-icon {
            width: 100px;
            height: 100px;
            border-radius: 20px;
            object-fit: cover;
            flex-shrink: 0;
        }
    
       .header-content h1 {
            font-size: 20px;
            font-weight: bold;
            color: #111;
            margin-bottom: 6px;
        }
        
      .header-content .tagline {
            font-size: 16px;
            color: #00875a;
            line-height: 1.3;
        }
    
       .header-content .verified {
            font-size: 13px;
            color: #777;
            margin-top: 5px;
        }
        
      /* Stats */
        .stats {
            display: flex;
            text-align: center;
            padding: 15px 20px;
            background: white;
            border-top: 1px solid #eee;
        }
        
        .stat-item {
            flex: 1;
        }
        
        .stat-item:not(:last-child) {
            border-right: 1px solid #ddd;
        }
        
      .stat-number {
            font-size: 17px;
            font-weight: bold;
            color: #111;
        }
        
        .stat-label {
            color: #666;
            font-size: 13px;
        }
        
        /* Install Button */
        .install-btn {
            display: block;
            text-decoration: none;
            background: #c41606;
            color: white;
            text-align: center;
            padding: 12px;
             border: 2px solid gold;
            border-radius: 10px;
            font-size: 20px;
            font-weight: bold;
            box-shadow: -5px 6px 8px 2px rgba(0,0,0,.5);
            margin: 15px 20px;
        }
        
  .install-btn .subtitle {
            font-size: 14px;
            font-weight: normal;
            margin-top: 4px;
        }
        
        /* Menu */
        .menu {
            display: flex;
            justify-content: space-around;
            padding: 12px 20px;
            background: white;
            color: #00875a;
            font-size: 17px;
        }
        
        .menu a {
            text-decoration: none;
            color: #00875a;
        }
    
       /* Screenshot Square 1:1 */
       .screenshot-scroll {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 0 15px 20px;
            scrollbar-width: none;
        }
        
        .screenshot-scroll::-webkit-scrollbar {
            display: none;
        }
        
      .screenshot {
            width: 280px;
            height: 280px;
            object-fit: cover;
            border-radius: 12px;
            flex: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        
        /* Content */
        .content {
            padding: 0 25px 30px;
            background: white;
        }
        
        .content h2 {
            font-size: 19px;
            margin: 20px 0 12px;
        }
        
       .content p {
            color: #555;
            font-size: 15px;
            margin-bottom: 15px;
        }
        .update-date {
            color: gray;
            margin-top: 10px;
        }
        
        /* Rating Section */
        .rating-box {
            margin: 20px auto;
            padding: 20px;
            background: #fff;
            border-radius: 12px;
        }
        
       .rating-header {
            font-size: 24px;
            margin-bottom: 20px;
            color: #202124;
        }
        
        .platform-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 25px;
        }
        
       .tab {
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 16px;
        }
        
       .tab-active {
            background: #e6f4ea;
            border: 1px solid #d6eadf;
            color: #0f9d58;
        }
        
        .rating-score {
            font-size: 60px;
            font-weight: 300;
            color: #202124;
        }
        
       .stars {
            color: #0f9d58;
            font-size: 22px;
        }
        
       .review-item {
            margin-top: 35px;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
        }
        
        .reviewer img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            margin-right: 12px;
        }
    .review-stars {
            color: #0f9d58;
            font-size: 18px;
        }
.logoatas{
text-align: center; margin-bottom: 10px;
}

    /* Mobile Optimization */
        @media (max-width: 480px) {
            body{
                padding-top: 5px;
            }
            .container {
                width: 100%;
                border-radius: 0;
            }
            
            .screenshot {
                width: 240px;
                height: 240px;
            }
            
            .header {
                padding: 18px;
            }
            
            .content {
                padding: 0 18px 25px;
            }
            
            .install-btn {
                margin: 12px 18px;
                padding: 15px;
                font-size: 18px;
            }
            .logoatas{
                margin-bottom: 5px;
            }
            .logoatas img{ 
                width: 200px;
            }
            }