/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.main-header {
    background-color: #FF1493;
    color: white;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 16px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
}

.header-logo {
    height: 42px;
    width: auto;
    display: block;
}

.search-icon svg {
    display: block;
}

.vsl-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border: none;
    padding: 0 20px;
    box-shadow: none;
    border-radius: 0;
}

/* Live Status */
.live-status {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.live-image {
    width: 50px;
    height: auto;
}

/* VSL Section */
.vsl-section {
    padding: 15px 0 0 0;
    background-color: #fff;
}

.video-container {
    position: relative;
    background: #fff;
}

/* Comments Section */
.comments-section {
    padding: 20px 0;
    background-color: #ffffff;
}

/* Scientific References */
.scientific-references {
    padding: 40px 0;
    background-color: #fff;
}

.scientific-references h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 0px;
    color: #000;
}

.reference-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.reference-logos img {
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.reference-list {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    border-top: 1px solid #eee;
}

.reference-item {
    margin-bottom: 25px;
}

.reference-item .ref-number {
    display: block;
    font-weight: 400;
    color: #666;
    margin-bottom: 5px;
}

.reference-item .ref-title {
    display: block;
    color: #888;
    margin-bottom: 5px;
    line-height: 1.4;
}

.reference-item .ref-link {
    display: block;
    color: #FF1493;
    /* Pink color as requested */
    text-decoration: underline;
    word-break: break-all;
    font-size: 13px;
}

.reference-item .ref-link:hover {
    color: #D6127C;
}

/* Footer */
footer {
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #888;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

/* Tablet / Desktop Overrides */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }
}