.navbar {
    background: #111;
    border-bottom: 1px solid #222;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.3em;
    font-weight: bold;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.nav-icons {
    display: flex;
    gap: 25px;
    font-size: 1.3em;
}

.nav-icon {
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
}

.nav-profile img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.nav-icon:hover {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ed4956;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.share-box {
    background: #111;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
}

.ads-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.ad-card {
    background: #0e0e0e;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.ad-card-info h4 {
    margin-bottom: 8px;
}

.ad-card-info p {
    color: #aaa;
    font-size: 0.9em;
}

.ad-card-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.ad-card a {
    color: #67b7ff;
    text-decoration: none;
    font-weight: bold;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.username {
    font-weight: bold;
    font-size: 0.95em;
}

.share-box textarea {
    width: 100%;
    min-height: 100px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1em;
    resize: none;
    outline: none;
}

.char-count {
    text-align: right;
    font-size: 0.85em;
    color: #666;
    margin-bottom: 10px;
}
