* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    padding: 3rem 2rem;
}

/* Page Layout: Left Sidebar + Right Content */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Sticky Left Hero */
.hero {
    position: sticky;
    top: 3rem;
    width: 350px;
    flex-shrink: 0;
    text-align: left;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; color: #ffffff; }

p {
    font-size: 1.2rem; /* Adjusted for readability */
    color: #a0a0a0;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.btn {
    display: inline-block;
    background-color: #d97706;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 2rem;
    transition: background-color 0.2s;
}

.btn:hover { background-color: #b45309; }

/* Socials in Sidebar */
.social-label { font-size: 1rem; margin-bottom: 0.5rem; }
.social-links { display: flex; flex-direction: column; gap: 0.5rem; }
.social-links a {
    color: #d97706;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

/* Right Side Videos */
.videos-section { flex-grow: 1; }
.videos-section h2 { font-size: 1.5rem; color: #ffffff; margin-bottom: 1.5rem; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.video-card { background-color: #1a1a1a; border-radius: 6px; overflow: hidden; text-decoration: none; border: 1px solid #262626; transition: transform 0.2s; }
.video-card:hover { transform: translateY(-4px); border-color: #d97706; }
.thumbnail-container { width: 100%; aspect-ratio: 16 / 9; background-color: #000; }
.thumbnail-container img { width: 100%; height: 100%; object-fit: cover; }
.video-card h3 { font-size: 1rem; padding: 1rem; color: #ffffff; }

/* Mobile */
@media (max-width: 850px) {
    .page-wrapper { flex-direction: column; gap: 2rem; }
    .hero { position: relative; top: 0; width: 100%; text-align: center; }
    .logo { margin-left: auto; margin-right: auto; }
}

/* SideText Image */
.vertical-struggle {
    position: fixed;
    top: 50%;
	right: 5px; /*Distance from the right edge of the screen */
	left: auto; /*Critical: Stops it from stretching across the screen */
    transform: translateY(-50%);
    z-index: 9999; /* Keeps it on top of everything */
    pointer-events: none; /* Allows clicks to pass through the image */
}

.vertical-struggle img {
    display: block;
    max-height: 600px; /* Adjust this to make your image taller or shorter */
    width: auto;       /* Keeps the image's original proportions */
}