/* GoldView VSL Style Sheet - Premium B2B Emerald Green Theme */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f8fafc;
    color: #0f172a;
    line-height: 1.5;
}

.main-header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.main-header .menu-icon, .main-header .search-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #64748b;
    transition: color 0.2s;
}

.main-header .menu-icon:hover, .main-header .search-icon:hover {
    color: #059669;
}

.main-header .logo {
    color: #0f172a;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-header .logo span {
    color: #059669;
}

.ticker-bar {
    background-color: #059669;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 35s linear infinite;
    will-change: transform;
}

.ticker-content span {
    padding-right: 50px;
    display: inline-block;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    background: #ffffff;
    min-height: 100vh;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.author-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-left: 4px solid #059669;
    padding-left: 15px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
}

.publish-date, .current-date {
    color: #64748b;
    font-size: 12px;
    margin-top: 2px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.icon-img {
    border-radius: 4px;
    padding: 4px;
    transition: transform 0.2s;
}

.icon-img:hover {
    transform: translateY(-2px);
}

.icon-img.yt-icon { background-color: #ef4444; }
.icon-img.g-icon { background-color: #ea4335; }
.icon-img.tw-icon { background-color: #1da1f2; }

.headline-section {
    text-align: left;
    margin-bottom: 25px;
}

.pre-headline {
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 10px;
}

.main-headline {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.highlight-green {
    color: #059669;
    background: rgba(5, 150, 105, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
}

.post-headline {
    color: #475569;
    font-style: italic;
    font-size: 16px;
    border-left: 4px solid #10b981;
    padding-left: 12px;
    margin-top: 15px;
}

.player-wrapper {
    background: #0f172a;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    width: 100%;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.video-container iframe, .video-container vturb-smartplayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.logos-section {
    text-align: center;
    margin-bottom: 35px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px dashed #e2e8f0;
}

.logos-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logos-placeholder img {
    max-height: 35px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.logos-placeholder img:hover {
    opacity: 1;
}

.hide, .esconder {
    display: none !important;
}

.cta-container {
    text-align: center;
    margin: 40px 0 50px 0;
}

.cta-button {
    display: inline-block;
    width: 100%;
    max-width: 550px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1.3;
    border: none;
    cursor: pointer;
    animation: pulseGlow 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(5, 150, 105, 0.5);
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(5, 150, 105, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
    }
}

.comments-section {
    background-color: #f8fafc;
    padding: 35px 25px;
    margin: 0 -20px -30px -20px;
    border-top: 1px solid #e2e8f0;
}

.comments-count {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comments-count span {
    background-color: #e2e8f0;
    color: #475569;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.comment-list {
    display: flex;
    flex-direction: column;
}

.comment {
    display: flex;
    margin-bottom: 20px;
}

.comment.reply {
    margin-left: 52px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    background-color: #e2e8f0;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-bubble {
    background-color: #f1f5f9;
    border-radius: 18px;
    padding: 12px 16px;
    display: inline-block;
    max-width: 100%;
    border: 1px solid #e2e8f0;
}

.comment-name {
    color: #0f172a;
    font-weight: 700;
    font-size: 14px;
    margin-right: 5px;
    text-decoration: none;
    display: inline-block;
}

.comment-name:hover {
    text-decoration: underline;
    color: #059669;
}

.comment-text {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.5;
}

.comment-actions {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
    margin-left: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.comment-actions a {
    color: #64748b;
    text-decoration: none;
    font-weight: 700;
}

.comment-actions a:hover {
    text-decoration: underline;
    color: #059669;
}

.likes-count {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 2px 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-left: 4px;
    font-size: 11px;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.likes-count svg {
    margin-right: 4px;
}

@media (max-width: 600px) {
    .main-headline {
        font-size: 24px;
    }
    .cta-button {
        font-size: 18px;
        padding: 16px 20px;
    }
    .comment.reply {
        margin-left: 25px;
    }
    .container {
        padding: 20px 15px;
    }
}
