.analytics-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to right, rgba(0, 207, 255, .4) 10%, rgba(230, 247, 255, 0));
    overflow: hidden;
}
  
.analytics-content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 32px;
}
  
.analytics-phone-container {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
}
  
.analytics-phone-main {
    position: relative;
    width: 300px;
    z-index: 3;
    border-radius: 50px;
}
  
.analytics-payment-popup {
    position: absolute;
    top: 30%;
    left: 0;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 4;
    width: 220px;
}
  
.analytics-payment-popup .analytics-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e7ff;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.analytics-avatar img{
    width: 100%;
    height: 100%;
}
  
.analytics-payment-popup h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}
  
.analytics-payment-popup p {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-bottom: 5px;
}
  
.analytics-payment-popup .analytics-name {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}
  
.analytics-activity-graph {
    position: absolute;
    top: 45%;
    right: 0;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 4;
    width: 200px;
}
  
.analytics-activity-graph .analytics-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
  
.analytics-graph {
    display: flex;
    align-items: flex-end;
    height: 100px;
    gap: 5px;
}
  
.analytics-bar {
    flex: 1;
    background-color: #007fd0;
    border-radius: 3px 3px 0 0;
}

.analytics-bar:nth-child(1) {
    height: 20%;
}

.analytics-bar:nth-child(2) {
    height: 25%;
}

.analytics-bar:nth-child(3) {
    height: 35%;
}

.analytics-bar:nth-child(4) {
    height: 80%;
}

.analytics-bar:nth-child(5) {
    height: 45%;
}

.analytics-bar:nth-child(6) {
    height: 60%;
}

.analytics-bar:nth-child(7) {
    height: 50%;
}

  
.analytics-days {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #666;
    margin-top: 5px;
}
  
.analytics-day {
    flex: 1;
    text-align: center;
}
  
.analytics-text-content {
    width: 45%;
    color: #000;
}
  
.analytics-text-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
  
.analytics-text-content h1 span {
    color: #000;
}
  
.analytics-text-content h1 .analytics-highlight {
    color: #00cfff;
}
  
.analytics-text-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
}
  
.analytics-app-buttons {
    display: flex;
    gap: 1rem;
}
  
.analytics-app-button {
    border-radius: 8px;
    overflow: hidden;
}
  
  @media (max-width: 768px) {
    .analytics-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
        
    .analytics-phone-container, .analytics-text-content {
        width: 100%;
    }

    .analytics-phone-main {
        width: 200px;
        border-radius: 30px;
    }

    .analytics-payment-popup {
        top: 10%;
        left: 20%;
        width: 120px;
    }

    .analytics-payment-popup .analytics-avatar {
        width: 20px;
        height: 20px;
    }

    .analytics-payment-popup h2 {
        font-size: 14px;
    }
    .analytics-payment-popup p {
        font-size: 8px;
    }
    .analytics-payment-popup .analytics-name {
        font-size: 10px;
    }
    .analytics-activity-graph {
        bottom: 20%;
        right: 20%;
        width: 120px;
    }
    .analytics-activity-graph .analytics-title {
        font-size: 12px;
    }
    .analytics-graph {
        height: 70px;
    }
    .analytics-bar {
        height: 100%;
    }

    .analytics-days {
        font-size: 5px;
    }
        
    .analytics-text-content {
        margin-top: 2rem;
    }
        
    .analytics-app-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .analytics-phone-main {
        width: 150px;
        border-radius: 20px;
    }

    .analytics-payment-popup {
        top: 5%;
        left: 10%;
        width: 100px;
    }

    .analytics-payment-popup .analytics-avatar {
        width: 15px;
        height: 15px;
    }

    .analytics-payment-popup h2 {
        font-size: 12px;
    }
    .analytics-payment-popup p {
        font-size: 6px;
    }
    .analytics-payment-popup .analytics-name {
        font-size: 8px;
    }
    .analytics-activity-graph {
        bottom: 10%;
        right: 10%;
        width: 100px;
    }
    .analytics-activity-graph .analytics-title {
        font-size: 10px;
    }

    .analytics-text-content h1 {
        font-size: 1.5rem;
    }
    .analytics-text-content p {
        font-size: 0.8rem;
    }

    .analytics-app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .analytics-app-button {
        height: 80px;
    }
}