/* ZeelPlay - Profile Page Specific Styles */
/* Header and Footer styles are in common.css */

/* Main Content */
.main-content {
    padding: 106px 22px 20px 22px;
}

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 31px;
}

.profile-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.profile-country {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0 10px;
    height: 27px;
}

.country-flag {
    width: 15px;
    height: 15px;
    border-radius: 2px;
}

.country-code {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
}

/* Detail Cards */
.detail-card {
    background: #1F1F1F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 21px;
    margin-bottom: 23px;
}

.detail-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    color: #FFFFFF;
    margin-bottom: 21px;
}

/* Detail Items */
.detail-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-icon-box {
    width: 40px;
    height: 40px;
    background: #131313;
    border: 1px solid #131313;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon-box svg {
    width: 22px;
    height: 22px;
}

.detail-item-content {
    flex: 1;
}

.detail-item-label {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.detail-item-value {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #FFFFFF;
}

/* Clickable Items (Privacy, Terms) */
.detail-item-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.detail-item-link:hover .detail-icon-box {
    background: rgba(255, 255, 255, 0.05);
}

.detail-item-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.detail-item-arrow svg {
    width: 24px;
    height: 24px;
}

/* App Logo (30x31px) - positioned within 40x40 icon box */
.app-logo-small {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 412px) {
    .main-content {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .detail-card {
        padding: 18px;
    }
    
    .profile-name {
        font-size: 24px;
        line-height: 30px;
    }
}

/* No Offers State - Perfectly Centered in Viewport */
.no-offers-container {
    position: fixed;
    top: 74px; /* Below header (16px + 58px) */
    left: 0;
    right: 0;
    bottom: 85px; /* Above footer (917px - 832px) */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.no-offers-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 330px;
}

.no-offer-icon {
    width: 211.37px;
    height: 179.77px;
    margin-bottom: 15px;
}

.no-offers-title {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.no-offers-description {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    max-width: 330px;
    margin: 0;
}

/* Tablet and larger */
@media (min-width: 768px) {
    .detail-card {
        padding: 24px;
    }
}
