* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Consolas', monospace;
    background: #000;
    color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
}

.desktop {
    overflow-y: auto;
}

/* Header */
header {
    background: #000;
    padding: 30px 60px;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.7;
}

.center-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 4px;
    text-transform: lowercase;
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: opacity 0.3s;
    text-transform: lowercase;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Courier New', 'Consolas', monospace;
    transition: opacity 0.3s;
    text-transform: lowercase;
}

.dropdown-toggle:hover {
    opacity: 0.7;
}

.dropdown-toggle:after {
    content: '▼';
    font-size: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    border: 1px solid #333;
    margin-top: 10px;
    min-width: 150px;
    overflow: hidden;
    padding: 8px 0;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
    text-transform: lowercase;
    line-height: 1.6;
}

.dropdown-menu a:hover {
    opacity: 0.7;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 8px 15px;
    border: 1px solid #fff;
    background: #111;
    color: #fff;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
    width: 180px;
    transition: border-color 0.3s;
    font-family: 'Courier New', 'Consolas', monospace;
}

.search-bar input::placeholder {
    color: #666;
    font-family: 'Courier New', 'Consolas', monospace;
}

.search-bar input:focus {
    border-color: #fff;
}

.search-bar button {
    background: #fff;
    border: none;
    cursor: pointer;
    margin-left: -35px;
    color: #000;
    font-size: 16px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Featured Section */
.featured-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px 40px;
    min-height: calc(100vh - 160px);
}

.featured-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    gap: 20px;
    position: relative;
}

.featured-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-height: 100%;
}

.featured-author {
    font-size: 12px;
    color: #888;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.featured-frame {
    background: #fff;
    padding: 2.5px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
    width: 675px;
    flex-shrink: 0;
}

.image-wrapper {
    background: #000;
    padding: 1.25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-wrapper::before {
    content: '';
    display: block;
    padding-top: 75%;
}

.featured-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.featured-link {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    text-transform: lowercase;
    transition: opacity 0.3s;
    text-align: center;
    display: block;
    letter-spacing: 1px;
}

.featured-link:hover {
    opacity: 0.7;
}

.featured-wrapper .vertical-line {
    width: 1px;
    background: #333;
    align-self: stretch;
}

/* Articles */
.articles-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    max-width: 400px;
    min-height: 100%;
}

.article-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.article-author {
    font-size: 12px;
    color: #888;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.article-headline {
    font-size: 20px;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: 1px;
    line-height: 1.4;
    text-decoration: none;
    transition: opacity 0.3s;
    cursor: pointer;
}

.article-headline:hover {
    opacity: 0.7;
}

.article-image-frame {
    background: #fff;
    padding: 2.5px;
    width: 100%;
}

.article-image-wrapper {
    background: #000;
    padding: 1.25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.article-image-wrapper::before {
    content: '';
    display: block;
    padding-top: 75%;
}

.article-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Collections Section */
.collections-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 40px 40px;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #333;
    margin: 60px auto 0;
    width: 675px;
}

.collections-title {
    font-size: 20px;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.collections-subtitle {
    font-size: 12px;
    color: #888;
    text-transform: lowercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s;
    cursor: pointer;
}

.collections-subtitle:hover {
    opacity: 0.7;
}

/* Coming Soon Page */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 60px 40px;
}

.coming-soon-text {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: lowercase;
    color: #fff;
    opacity: 0.8;
}

/* Schedule Page */
.schedule-container {
    padding: 60px 40px;
}

.schedule-wrapper {
    display: flex;
    align-items: stretch;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.side-column {
    flex: 1;
}

.schedule-wrapper .vertical-line {
    width: 1px;
    background: #333;
    align-self: stretch;
}

.schedule-center {
    flex: 1.56;
    max-width: 1060px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schedule-title {
    font-size: 36px;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 300;
}

.schedule-divider {
    width: 60%;
    height: 1px;
    background: #333;
    margin-bottom: 40px;
}

.schedule-center p {
    font-size: 20px;
    color: #aaa;
    text-transform: lowercase;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

/* Team Page */
.team-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px 60px;
    min-height: calc(100vh - 160px);
}

.team-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.team-row {
    display: flex;
    width: 100%;
    gap: 0;
}

.team-row-divider {
    width: 100%;
    height: 1px;
    background: #333;
}

.team-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    border-right: 1px solid #333;
}

.team-column:last-child {
    border-right: none;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.team-frame {
    background: #fff;
    padding: 2.5px;
    width: 100%;
    max-width: 320px;
}

.team-image-wrapper {
    background: #000;
    padding: 1.25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-image-wrapper::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.team-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.team-name {
    font-size: 28px;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: 2px;
    text-align: center;
}

.team-number {
    font-size: 18px;
    color: #888;
    text-transform: lowercase;
    letter-spacing: 1px;
    text-align: center;
}

.team-socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    align-items: center;
}

.team-socials a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-transform: lowercase;
    transition: opacity 0.3s;
}

.team-socials a:hover {
    opacity: 0.7;
}

/* Link */
a, a:hover, a:active, a:visited { 
    color: white; 
}

/* Article Page */
.article-container {
    padding: 60px 40px;
}

.article-wrapper {
    display: flex;
    align-items: stretch;
    gap: 40px;
    max-width: 2200px;
    margin: 0 auto;
}

.article-side-column {
    flex: 1;
    min-width: 150px;
}

.article-wrapper .vertical-line {
    width: 1px;
    background: #333;
    align-self: stretch;
}

.article-content {
    flex: 3;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
}

.article-header {
    margin-bottom: 40px;
}

.article-title {
    font-size: 48px;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 1.2;
}

.article-content .article-author {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

.article-body p {
    font-size: 20px;
    color: #aaa;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

.article-body .article-image-frame {
    background: #fff;
    padding: 2.5px;
    margin: 0 0 30px 30px;
    float: right;
    max-width: 45%;
}

.article-body .article-image-wrapper {
    background: #000;
    padding: 1.25px;
    line-height: 0;
}

.article-body .article-image-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* Dual Image Layout - FIXED */
.article-images-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    clear: both;
}

.article-images-dual .article-image-frame {
    background: #fff;
    padding: 2.5px;
    margin: 0;
    float: none;
    max-width: 100%;
}

.article-images-dual .article-image-wrapper {
    background: #000;
    padding: 1.25px;
    line-height: 0;
}

.article-images-dual .article-image-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* Mobile - Article Page */
@media (max-width: 768px) {
    .article-container {
        padding: 30px 15px;
    }

    .article-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .article-side-column {
        display: none;
    }

    .article-wrapper .vertical-line {
        display: none;
    }

    .article-content {
        max-width: 100%;
    }

    .article-title {
        font-size: 32px;
    }

    .article-body p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .article-body .article-image-frame {
        float: none;
        max-width: 100%;
        margin: 0 0 20px 0;
    }

    .article-images-dual {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    header {
        padding: 15px 10px;
    }

    nav {
        justify-content: space-between;
        width: 100%;
        position: relative;
    }

    .logo {
        height: 35px;
    }

    .center-title {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .nav-links {
        gap: 5px;
        font-size: 10px;
    }

    .nav-links a,
    .dropdown-toggle {
        font-size: 10px;
    }

    .dropdown-toggle:after {
        font-size: 8px;
    }

    .dropdown-menu {
        min-width: 120px;
    }

    .dropdown-menu a {
        padding: 8px 15px;
        font-size: 10px;
    }

    .search-bar input {
        display: none;
    }

    .search-bar button {
        margin-left: 0;
        background: none;
        color: #fff;
        font-size: 16px;
    }

    .featured-container {
        padding: 30px 15px;
    }

    .featured-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .featured-center {
        order: 1;
        width: 100%;
    }

    .featured-frame {
        width: 100%;
        max-width: 100%;
    }

    .featured-link {
        font-size: 18px;
    }

    .collections-section {
        order: 2;
        width: 100%;
        padding: 40px 15px;
        margin: 40px 0 0;
        border-bottom: 1px solid #333;
    }

    .featured-wrapper .vertical-line {
        display: none;
    }

    .articles-column {
        order: 3;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .articles-column:first-child {
        display: none;
    }

    .article-card {
        gap: 12px;
    }

    .article-headline {
        font-size: 18px;
    }

    .article-author {
        font-size: 11px;
    }

    .coming-soon-text {
        font-size: 32px;
    }

    .schedule-container {
        padding: 30px 15px;
    }

    .schedule-wrapper {
        flex-direction: column;
    }

    .side-column {
        display: none;
    }

    .schedule-wrapper .vertical-line {
        display: none;
    }

    .schedule-center {
        max-width: 100%;
    }

    .schedule-title {
        font-size: 28px;
    }

    .schedule-center p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .team-container {
        padding: 30px 15px;
    }

    .team-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .team-row {
        flex-direction: column;
        width: 100%;
    }

    .team-column {
        max-width: 100%;
        width: 100%;
        padding: 40px 15px;
        border-right: none;
        border-bottom: 1px solid #333;
    }

    .team-column:last-child {
        border-bottom: none;
    }

    .team-row-divider {
        display: none;
    }

    .team-horizontal-divider {
        width: 60%;
    }

    .team-frame {
        max-width: 100%;
    }

    .team-name {
        font-size: 22px;
    }

    .team-number {
        font-size: 16px;
    }

    .team-socials {
        gap: 6px;
    }

    .team-socials a {
        font-size: 12px;
    }
}