body {
    background-color: #1a1c1e;
    color: #cecece;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header & Logo */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    height: 90px;
    width: auto;
    color: white;
    display: inline-block;
    padding: 10px 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.logo small {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 5px;
}

h1 {
    font-size: 22px;
    margin-top: 20px;
    color: #ffffff;
}

/* Gold CTA Button */
.view-site-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3d078;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    padding: 18px;
    border-radius: 12px;
    margin: 20px 0;
    transition: background 0.3s;
}

.view-site-btn i {
    margin-left: 10px;
}

.view-site-btn:hover {
    background-color: #e2c068;
}

/* Share Box */
.share-container {
    background-color: #121212;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.share-box {
    border-left: 3px solid #f3d078;
    padding-left: 15px;
}

.share-box p {
    margin: 0;
}

.sub-text {
    font-size: 13px;
    color: #888;
}

.share-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.share-container li {
    position: relative;
    padding-left: 28px;
    /* space for arrow */
    margin-bottom: 10px;
    color: #ffcc66;
    /* your yellow text */
    font-weight: 500;
}

.share-container li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ff9800;
    /* arrow color */
    font-size: 16px;
}


/* Content Sections */
.content h2 {
    color: #ffffff;
    font-size: 24px;
    margin-top: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.content h3 {
    color: #ffffff;
    margin-top: 25px;
}

.highlight {
    color: #f3d078;
    font-weight: bold;
}

ul,
ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

.note {
    background: #252525;
    padding: 15px;
    border-radius: 5px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #666;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 18px;
    }

    .view-site-btn {
        font-size: 18px;
    }
}