* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

         body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     background: #f8f9fa;
 }

.container {
    display: flex;
    height: 100vh;
    max-width: 1624px;
    margin: 0 auto;
}

.text-accent {
    color: #D97821;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background: transparent;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.logo.white-text {
    color: white;
}

.nav {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
}

.nav .explore {
    position: relative;
}

.nav .explore::before {
    content: "⚡";
    margin-right: 8px;
    font-size: 14px;
}

.nav-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.cart-icon {
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 3px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-icon span {
    width: 28px;
    height: 2px;
    background: #000;
    border-radius: 1px;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    z-index: 50;
}

.sidebar a {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #999;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
}

.sidebar .dots {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin: 30px 0;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Left Panel */
.left-panel {
    flex: 1;
    padding: 0 80px 0 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
    position: relative;
}

.title {
    font-size: 110px;
    font-weight: 900;
    line-height: 0.85;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -3px;
}

a {
    color: #D97821;
    text-decoration: none;
    transition: all 0.5s ease;
}   

a:hover {
    color: #D97821;
    text-decoration: underline;
}

.xxxv {
    color: #D97821;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    max-width: 400px;
    margin-bottom: 50px;
    font-weight: 400;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #000;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: white;
    color: #000;
    border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Right Panel */
.right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px;
    padding: 20px;
}

/* Desktop Team Boxes */
.desktop-team-boxes {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.team-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2rem;
    border: 2px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Mobile Team Cards - Hidden by default */
.mobile-team-cards {
    display: none;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.mobile-team-card {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cheers-mobile-card {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    color: white;
    border: 2px solid #555;
}

.bros-mobile-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    border: 2px solid #ddd;
}

.mobile-logo {
    flex-shrink: 0;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.mobile-logo img {
    width: 75px;
    height: auto;
    max-width: 75px;
}

.mobile-content {
    flex: 1;
    min-width: 0;
    margin-right: 12px;
}

.mobile-team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.mobile-team-founded {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 8px;
    font-weight: 500;
}

.mobile-team-description {
    font-size: 11px;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #D97821;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mobile-arrow:hover {
    background: #D97821;
    color: white;
    transform: scale(1.1);
}

.cheers-box {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    color: white;
    border: 2px solid #555;
}

.bros-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    border: 2px solid #ddd;
}

.team-box:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-logo-container {
    margin-bottom: 30px;
}

.team-logo-container img {
    width: 120px;
    height: auto;
    max-width: 150px;
    transition: transform 0.3s ease;
}

.team-box:hover .team-logo-container img {
    transform: scale(1.1);
}

.team-info {
    text-align: center;
    max-width: 280px;
}

.team-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.team-founded {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 16px;
    font-weight: 500;
}

.team-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.team-more-link {
    display: inline-block;
    color: #D97821;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-more-link:hover {
    background: #D97821;
    color: white;
    transform: translateY(-2px);
}

/* Right Sidebar Navigation */
.right-sidebar {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    z-index: 50;
}

.page-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-dot.active {
    background: #D97821;
    transform: scale(1.3);
}

.page-dot:hover {
    background: rgba(255,255,255,0.6);
    transform: scale(1.2);
}



@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(-25deg) scale(1.1);
    }
    50% {
        transform: translateY(-15px) rotate(-20deg) scale(1.15);
    }
}

@media (max-width: 1200px) {
    .title {
        font-size: 90px;
    }
    
    .left-panel {
        padding: 0 60px 0 100px
    }
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }
    
    .left-panel {
        flex: none;
        height: 50vh;
        padding-top: 120px;
        padding-left: 50px;
        padding-right: 40px;
    }
    
    .right-panel {
        flex: none;
        height: 40vh;
        margin: 20px;
        padding: 10px;
    }
    
    /* Hide desktop, show mobile */
    .desktop-team-boxes {
        display: none;
    }
    
    .mobile-team-cards {
        display: flex;
    }
    

    
    .title {
        font-size: 50px;
    }
    
    .sidebar {
        display: none;
    }
}

 /* Team Sections */
 .team-section {
     min-height: 100vh;
     padding: 100px 50px;
     background: #f8f9fa;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .team-section.cheers-section {
     background: #1a1a1a;
     color: white;
 }

 .team-section.bros-section {
    background: #f8f9fa;
    color: #000;
 }

 .team-content {
     max-width: 1200px;
     width: 100%;
 }

 .team-header-section {
     text-align: center;
     margin-bottom: 80px;
 }

 .team-header-section .team-logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.team-header-section h2 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

 .team-subtitle {
     font-size: 24px;
     color: #D97821;
     font-weight: 600;
     letter-spacing: 1px;
 }

 .team-details {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 60px;
     margin-top: 60px;
 }

 .team-story,
 .team-goals,
 .team-location {
     background: white;
     padding: 40px;
     border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .cheers-section .team-story,
 .cheers-section .team-goals,
 .cheers-section .team-location {
     background: #2a2a2a;
     color: white;
 }

 .team-story:hover,
 .team-goals:hover,
 .team-location:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0,0,0,0.15);
 }

 .team-details h3 {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 20px;
     color: #D97821;
 }

 .team-details p {
     font-size: 16px;
     line-height: 1.6;
     color: #666;
 }

 .team-logo {
    width: 250px;
 }

 .cheers-section .team-details p {
     color: white;
 }

 .team-details strong {
     color: #D97821;
 }

 @media (max-width: 768px) {
     .team-section {
         padding: 80px 30px;
     }

     .team-header-section h2 {
         font-size: 48px;
     }

     .team-details {
         grid-template-columns: 1fr;
         gap: 40px;
     }

         .team-story,
    .team-goals,
    .team-location {
        padding: 30px;
    }
    
    .partners-section .team-details {
        gap: 20px;
    }
    
    .partners-section .team-logo {
        width: 80px;
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .left-panel {
        height: 50vh;
        padding-top: 100px;
        padding-left: 50px;
        padding-right: 20px;
    }
    
    .right-panel {
        height: 40vh;
        margin: 10px;
    }
    
    .team-box {
        padding: 12px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .team-logo-container {
        margin-bottom: 0;
        margin-right: 10px;
        flex-shrink: 0;
        width: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .team-logo-container img {
        width: 70px;
        max-width: 70px;
        height: auto;
    }
    
    .team-info {
        flex: 1 1 auto;
        text-align: left;
        margin-right: 6px;
        min-width: 0;
        overflow: hidden;
        width: 100%;
    }
    
    .team-name {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .team-founded {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .team-description {
        font-size: 9px;
        line-height: 1.2;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .team-more-link {
        font-size: 14px;
        width: 22px;
        height: 22px;
        padding: 3px;
        flex-shrink: 0;
        min-width: 22px;
    }
    
    .title {
        font-size: 40px;
        line-height: 1.1;
    }
    
    .description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .xxxv {
        font-size: 14px;
    }
}

/* Partners Section */
.partners-section {
    background: white;
    border-top: 1px solid #e9ecef;
}

.partners-section .team-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.partners-section .team-story {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    flex: none;
}

.partners-section .team-logo {
    width: 120px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partners-section .team-logo:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    padding: 30px 0;
    background-color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.footer-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.footer-content a {
    color: #D97821;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #b8662e;
    text-decoration: underline;
}