/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a237e;
    --secondary-color: #0d47a1;
    --accent-color: #2196f3;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.95);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Homepage specific styles */
.homepage {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('images/tech-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 60px;
    background: var(--nav-bg);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    padding: 0;
    margin-right: 1rem;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #222;
    cursor: pointer;
    margin-left: auto;
    z-index: 10001;
    position: relative;
}

@media (max-width: 900px) {
    .nav-links { display: none !important; }
    .hamburger { display: block !important; }
    .navbar { padding: 0 1rem !important; height: 60px; }
    .logo { padding: 0 !important; }
    .logo-img { height: 32px !important; }
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 20px;
    }
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Main Content */
.page-content {
    padding-top: 80px; /* Height of navbar */
}

/* Sections */
section {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    background: transparent;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05), rgba(13, 71, 161, 0.05));
    pointer-events: none;
    z-index: 0;
}

section > * {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Roboto Mono', monospace;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.hero-section h1::after {
    content: ' _';
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .hero-section p {
        font-size: 1rem;
        white-space: normal;
        padding: 0 20px;
    }
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    /* border: 1px solid #e0e0e0; */
}

.content-section h2,
.tech-section h2,
.operations-grid h2,
.pillars-grid h2,
.climate-grid h2,
.team-grid h2,
.operations-section h2,
.operations-grid h2,
#operations h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    position: relative;
    display: inline-block;
}

.content-section h2::after,
.tech-section h2::after,
.operations-grid h2::after,
.pillars-grid h2::after,
.climate-grid h2::after,
.team-grid h2::after,
.operations-section h2::after,
.operations-grid h2::after,
#operations h2::after {
    content: ' _';
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Grid Layouts */
.pillars-grid,
.climate-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .pillars-grid,
    .climate-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pillars-grid,
    .climate-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.pillar-card,
.climate-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.pillar-card:hover,
.climate-item:hover {
    transform: translateY(-5px);
}

/* Team Section Styles */
.team-code {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    font-family: 'Roboto Mono', monospace;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.team-member {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.member-image {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #2196f3;
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.2);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    flex: 1;
    padding: 1rem;
}

.code-line {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.code-keyword {
    color: #569cd6;
    font-weight: 600;
}

.code-variable {
    color: #9cdcfe;
    font-weight: 500;
}

.code-operator {
    color: #d4d4d4;
}

.code-brace {
    color: #d4d4d4;
}

.code-property {
    color: #9cdcfe;
    font-weight: 500;
}

.code-string {
    color: #ce9178;
}

.code-comma {
    color: #d4d4d4;
}

.code-semicolon {
    color: #d4d4d4;
}

@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
}

/* Contact Section */
#contact {
    background: transparent;
    position: relative;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-section {
    margin-bottom: 2.5rem;
}

.contact-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Roboto Mono', monospace;
}

.contact-section p {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.contact-verification {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(33, 150, 243, 0.1);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto Mono', monospace;
}

.contact-form .code-line {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.contact-form .code-keyword {
    color: #569cd6;
}

.contact-form .code-variable {
    color: #9cdcfe;
}

.contact-form .code-operator {
    color: #d4d4d4;
}

.contact-form .code-brace {
    color: #d4d4d4;
}

.contact-form .code-property {
    color: #9cdcfe;
    min-width: 70px;
}

.contact-form .code-semicolon {
    color: #d4d4d4;
}

.contact-form input,
.contact-form textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    padding: 6px 10px;
    margin-left: 10px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9em;
}

.contact-form textarea {
    height: 80px;
    resize: vertical;
}

.contact-form .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: #4facfe;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form .submit-button:hover {
    background: #00f2fe;
    transform: translateY(-2px);
}

.contact-form .submit-button .button-icon {
    margin-left: 8px;
}

.contact-form .form-message {
    margin-top: 10px;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
    display: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9em;
}

.contact-form .form-message.success {
    display: block;
    background: rgba(79, 172, 254, 0.1);
    color: #4facfe;
    border: 1px solid rgba(79, 172, 254, 0.2);
}

.contact-form .form-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
    }
    
    .contact-form .submit-button {
        width: 100%;
        padding: 8px 16px;
    }
}

.contact-form .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.contact-form .cta-button i {
    transition: transform 0.3s ease;
}

.contact-form .cta-button:hover i {
    transform: translateX(5px);
}

.contact-form .cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-form .cta-button:hover::after {
    transform: translateX(100%);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 80px 0;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .contact-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-section p {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: #000;
    color: var(--white);
    padding: 120px 0 60px;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto Mono', monospace;
}

footer::after {
    content: 'OKHOTSK';
    position: absolute;
    bottom: 35px;
    right: 35px;
    font-size: 180px;
    font-weight: 700;
    opacity: 0.08;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    letter-spacing: -5px;
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px;
    margin-bottom: 100px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 20px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-family: 'Roboto Mono', monospace;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-section.contact-info h3 {
    font-size: 1rem;
    margin-bottom: 30px;
}

.footer-section.contact-info p {
    font-size: 0.8rem;
    margin-bottom: 18px;
    opacity: 0.8;
    font-family: 'Roboto Mono', monospace;
}

.footer-section.contact-info .phone,
.footer-section.contact-info .email {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 1;
    font-family: 'Roboto Mono', monospace;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.social-links a {
    color: #666;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-family: 'Roboto Mono', monospace;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom p {
    font-size: 0.75rem;
    opacity: 0.8;
    text-align: left;
    font-family: 'Roboto Mono', monospace;
}

@media (max-width: 768px) {
    footer {
        padding: 100px 0 50px;
        margin-top: 100px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .footer-section.contact-info {
        grid-column: 1 / -1;
    }
    
    .footer-bottom {
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Global Styles */
:root {
    --primary-color: #1a237e;
    --secondary-color: #0d47a1;
    --accent-color: #2196f3;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.85);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--nav-bg);
    padding: 0 5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    height: 80px;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.nav-container {
    display: flex;
    align-items: center;
    margin-left: -20px;
    position: relative;
    z-index: 9999;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4rem;
    position: relative;
    z-index: 9999;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a,
.nav-links > li.dropdown-only > span {
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 18px;
    transition: color 0.2s ease;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    gap: 8px;
}

.nav-links > li > a::after,
.nav-links > li.dropdown-only:hover > span::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 1.5px solid currentColor;
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.2s ease;
}

.nav-links > li:hover > a::after,
.nav-links > li.dropdown-only:hover > span::after {
    transform: rotate(-135deg);
}

.nav-links > li:hover > a,
.nav-links > li.dropdown-only:hover > span {
    color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    min-width: 280px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease;
    margin-top: 0;
    box-shadow: 
        4px 4px 15px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% 92%, 
        97% 100%, 
        0 100%
    );
    padding: 15px 0;
    transform: translateY(-5px);
    z-index: 9999;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    opacity: 0.9;
}

.nav-links > li:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
    position: relative;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: -apple-system, "SF UI Display", sans-serif;
    letter-spacing: -0.2px;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links .dropdown-menu a:hover {
    color: var(--accent-color);
    padding-left: 28px;
    background: linear-gradient(to right, rgba(33, 150, 243, 0.04), transparent);
}

.nav-buttons {
    display: flex;
    gap: 1.5rem;
}

.nav-button {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--accent-color);
}

/* Banner Carousel */
.banner-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    will-change: opacity;
}

.banner-slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.7)
    );
}

.banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.indicator.active {
    background: var(--white);
    transform: scaleX(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bitcoin Stats */
.bitcoin-stats {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
    padding: 0 20px;
}

.bitcoin-stats .stat-item {
    flex: 1;
    text-align: left;
    position: relative;
    padding: 0 20px;
}

.bitcoin-stats .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
}

.bitcoin-stats .stat-item:first-child::before {
    display: none;
}

.bitcoin-stats .stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.2;
}

.bitcoin-stats .stat-value .unit {
    font-size: 16px;
    margin-left: 4px;
    color: rgba(255, 255, 255, 0.7);
}

.bitcoin-stats .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.bitcoin-stats .stat-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .bitcoin-stats {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    .bitcoin-stats .stat-item {
        text-align: center;
        padding: 15px 0;
    }

    .bitcoin-stats .stat-item::before {
        display: none;
    }

    .bitcoin-stats .stat-value {
        font-size: 28px;
    }

    .bitcoin-stats .stat-value .unit {
        font-size: 14px;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Scale animation for cards */
.scale-up {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Sections */
section {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    background: transparent;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

/* Cards */
.operations-grid, .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.operation-card, .tech-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    transform-origin: center;
}

.operation-card:hover, .tech-card:hover {
    transform: translateY(-5px);
}

.operation-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
    text-align: center;   /* 让图标居中 */
    width: 100%;          /* 让 text-align 生效 */
}


.policy-section.title-only {
    margin-bottom: 2rem;
}

.policy-section.title-only h2 {
    margin-bottom: 0;
}

.back-to-home {
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 40px;
    }

    .privacy-policy h1 {
        font-size: 2.5rem;
    }

    .policy-section h2 {
        font-size: 1.1rem;
    }
}

.policy-content ol {
    list-style-position: outside;
    padding-left: 1.2em;
    margin-left: 0;
}

.policy-content ul {
    list-style-position: outside;
    padding-left: 1.2em;
    margin-left: 0;
}

/* Page Content Styles */
.page-content {
    padding-top: 80px;
}

.hero-operations {
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('images/operation-banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-operations h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
}

.hero-operations p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

@media (max-width: 992px) {
    .hero-operations h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-operations {
        min-height: 100vh;
        padding: 100px 0;
    }
    
    .hero-operations h1 {
        font-size: 2.5rem;
    }
    
    .hero-operations p {
        font-size: 1.1rem;
        white-space: normal;
        padding: 0 20px;
    }
}

.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-section h2,
.tech-section h2,
.operations-grid h2,
.pillars-grid h2,
.climate-grid h2,
.team-grid h2,
.operations-section h2,
.operations-grid h2,
#operations h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    position: relative;
    display: inline-block;
}

.content-section h2::after,
.tech-section h2::after,
.operations-grid h2::after,
.pillars-grid h2::after,
.climate-grid h2::after,
.team-grid h2::after,
.operations-section h2::after,
.operations-grid h2::after,
#operations h2::after {
    content: ' _';
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pillar-card ul {
    list-style: none;
    margin-top: 15px;
}

.pillar-card ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.pillar-card ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Climate Section */
.climate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.climate-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
}

.climate-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.climate-content ul {
    list-style: none;
    margin-top: 15px;
}

.climate-content ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.climate-content ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-member .position {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member .bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
}

/* Careers Section */
.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.position-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Roboto Mono', monospace;
}

.position-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.position-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 10px;
    font-weight: 500;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .careers-grid {
        display: flex;
        flex-direction: column;
    }

    .career-benefits {
        order: 1;
        width: 100%;
        margin-bottom: 40px;
    }

    .open-positions {
        order: 2;
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .benefit-item {
        padding: 15px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .benefit-item h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .benefit-item p {
        font-size: 13px;
    }

    .position-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .position-card h4 {
        font-size: 16px;
    }

    .position-card p {
        font-size: 13px;
    }
}

/* Investors Page Styles */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(5px);
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.company-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

.company-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.company-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.company-card ul li {
    margin: 0.5rem 0;
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.financial-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
}

.financial-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.financial-card ul {
    list-style: none;
    padding: 0;
}

.financial-card ul li {
    margin: 0.8rem 0;
}

.financial-card ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.financial-card ul li a:hover {
    color: var(--accent-color);
}

.stock-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stock-info {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
}

.stock-price {
    margin-bottom: 2rem;
}

.stock-price h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stock-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.stock-price .change {
    color: #22c55e;
    font-weight: 500;
}

.stock-price .date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.stock-details .detail-item {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stock-chart {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
}

.chart-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.filings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.filing-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
}

.filing-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.filing-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
}

.filing-link i {
    font-size: 0.9rem;
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.governance-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
}

.governance-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.governance-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.governance-card ul li {
    margin: 0.8rem 0;
}

.governance-card ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.governance-card ul li a:hover {
    color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stock-grid {
        grid-template-columns: 1fr;
    }
    
    .company-grid,
    .financial-grid,
    .governance-grid {
        grid-template-columns: 1fr;
    }
}

/* Partnerships Page Styles */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.partner-card h3 {
    color: #333333;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.partner-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: #333333;
}

.partner-card .company-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}

.partner-card:first-child .company-desc {
    background: linear-gradient(120deg, #00ff88, #00b359);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-card:last-child .company-desc {
    background: linear-gradient(120deg, #000000, #666666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-highlights {
    margin-top: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.partner-highlights p {
    background: none;
    border-radius: 0;
    padding: 6px 14px 6px 28px;
    margin: 6px 0;
    font-family: 'Roboto Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
    font-size: 1rem;
    color: #1a237e;
    position: relative;
    text-align: left;
    box-shadow: none;
}

.partner-highlights p::before {
    display: none;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(3, 400px);
    gap: 2rem;
    margin: 3rem auto;
    justify-content: center;
    padding: 0 2rem;
}

.opportunity-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 3px solid #eaeaea;
    width: 400px;
}

.opportunity-card:hover {
    transform: translateY(-8px);
    border: 3px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.15);
}

.opportunity-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.opportunity-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.opportunity-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
    width: 104%;
}

.opportunity-card ul li {
    margin: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    font-family: 'Roboto Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
    font-size: 97.5%;
}

.opportunity-card ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Energy card icons */
.opportunity-card:nth-child(1) ul li::before {
    content: "\f0e7"; /* bolt icon */
}

/* Technology card icons */
.opportunity-card:nth-child(2) ul li::before {
    content: "\f013"; /* cog icon */
}

/* Infrastructure card icons */
.opportunity-card:nth-child(3) ul li::before {
    content: "\f1ad"; /* building icon */
}

.opportunity-card ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.opportunity-card ul li {
    width: 100%;
    max-width: 80%;
    text-align: left;
}

.opportunity-desc {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    color: #444444;
    font-size: 1.2rem;
    margin: 1rem 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.opportunity-card:hover .opportunity-desc {
    color: #FFD700;
}

/* Custom fonts for each card */
.opportunity-card:nth-child(1) .opportunity-desc {
    font-family: 'Inter', sans-serif;
}

.opportunity-card:nth-child(2) .opportunity-desc {
    font-family: 'Roboto Mono', monospace;
}

.opportunity-card:nth-child(3) .opportunity-desc {
    font-family: 'Helvetica Neue', sans-serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #FFB800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 24px;
    color: #fff;
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.benefit-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.partnership-contact {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.partnership-contact p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    width: 150%;
    font-family: 'Roboto Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
    font-size: 95%;
    margin-left: -20%;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    padding: 0 2rem;
}

.contact-card {
    flex: 0 1 350px;
    min-height: 200px;
    text-align: center;
    padding: 3rem 2.5rem;
    background: var(--white);
    border: 2px solid #eaeaea;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card i {
    font-size: 2.8rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2.8rem;
}

.contact-card:hover i {
    transform: scale(1.1);
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
    width: 100%;
    text-align: center;
}

.contact-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.6;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-family: 'Roboto Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
}

@media (max-width: 1200px) {
    .contact-options {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-card {
        width: 100%;
        max-width: 350px;
    }
}

#partner-with-us {
    background: var(--white);
    color: var(--text-color);
}

#partner-with-us h2 {
    color: var(--primary-color);
}

.opportunity-desc {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    color: #444444;
    font-size: 1.2rem;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.opportunity-card:hover .opportunity-desc {
    color: var(--accent-color);
}

.opportunity-card:nth-child(1) .opportunity-desc {
    font-family: 'Inter', sans-serif;
}

.opportunity-card:nth-child(2) .opportunity-desc {
    font-family: 'Roboto Mono', monospace;
}

.opportunity-card:nth-child(3) .opportunity-desc {
    font-family: 'Helvetica Neue', sans-serif;
}

.opportunity-card h3,
.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.opportunity-card:hover h3 {
    color: var(--primary-color);
}

.benefit-card:hover h3 {
    color: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 1400px) {
    .opportunities-grid {
        grid-template-columns: repeat(2, 400px);
    }
}

@media (max-width: 900px) {
    .opportunities-grid {
        grid-template-columns: 400px;
    }
    
    .opportunity-card {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 500px) {
    .opportunities-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .opportunity-card {
        width: 100%;
    }
}

/* Heat Recycling Section */
.heat-recycling-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    perspective: 1000px;
}

.heat-recycling-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    width: fit-content;
    max-width: 1600px;
    will-change: transform;
}

.animate-hover {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-hover:hover {
    transform: translateY(-10px);
}

.heat-recycling-image {
    width: 72%;  /* 原来是60%，现在改为120% */
    max-width: 480px;  /* 原来是400px，现在改为120% */
    margin-right: -100px;
}

#recycling .heat-recycling-image {
    margin-left: -100px;
}

#integrated .heat-recycling-image {
    margin-right: -100px;
}

.animate-hover:hover .heat-recycling-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.heat-recycling-text {
    flex: 8;
    text-align: left;
    padding-top: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

#recycling .heat-recycling-text {
    padding-right: 4rem;
    padding-left: 8rem;
    max-width: 1000px;
}

#integrated .heat-recycling-text {
    padding-left: 4rem;
}

.heat-recycling-text h2 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #FF6B81;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#integrated .heat-recycling-text h2 {
    color: #444444;
}

#grid .heat-recycling-text h2 {
    color: #FFB800;
}

.animate-hover:hover .heat-recycling-text h2 {
    color: #FF4757;
    transform: translateX(10px);
}

#integrated .animate-hover:hover .heat-recycling-text h2 {
    color: #333333;
    transform: translateX(10px);
}

#grid .animate-hover:hover .heat-recycling-text h2 {
    color: #FFA000;
    transform: translateX(10px);
}

.heat-recycling-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    white-space: normal;
    word-wrap: break-word;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-hover:hover .heat-recycling-text p {
    transform: translateX(10px);
    color: #666;
}

@media (max-width: 992px) {
    .heat-recycling-content {
        flex-direction: column;
        gap: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .heat-recycling-image {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .heat-recycling-text {
        text-align: center;
        padding-right: 0;
        padding-left: 0;
        padding-top: 0;
    }

    .heat-recycling-text h2 {
        text-align: center;
    }

    .heat-recycling-text p {
        max-width: 100%;
        min-width: auto;
    }

    .animate-hover:hover .heat-recycling-text h2,
    .animate-hover:hover .heat-recycling-text p {
        transform: translateY(-10px);
    }
}

#grid .heat-recycling-image {
    width: 60%;
    max-width: 400px;
    margin-right: -100px;
}

#strategy .heat-recycling-text h2 {
    color: #000000;
}

#strategy .animate-hover:hover .heat-recycling-text h2 {
    color: #000000;
}

.strategy-options {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-top: 80px;
    padding: 0 80px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.strategy-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: calc(50% - 40px);  /* 设置固定宽度，考虑间距 */
}

.strategy-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 24px;
}

.strategy-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.strategy-option h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
    width: 100%;  /* 确保标题占满宽度 */
}

.strategy-option p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    width: 100%;  /* 确保段落占满宽度 */
}

@media (max-width: 768px) {
    .strategy-options {
        flex-direction: column;
        padding: 0 20px;
        margin-top: 40px;
    }

    .strategy-option {
        text-align: left;
    }
}

#locations .heat-recycling-text h2 {
    color: #68B7E5;  /* 冰蓝色 */
}

#locations .animate-hover:hover .heat-recycling-text h2 {
    color: #4CA3D8;  /* 悬停时稍深的冰蓝色 */
}

.fleet-stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin: 60px 0;
    padding: 0 40px;
}

.fleet-stats-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.fleet-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.05em;
}

.stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    white-space: nowrap;
}

.stat-value .unit {
    font-size: 24px;
    margin-left: 4px;
    color: #666;
}

.fleet-disclaimer {
    margin-top: 40px;
    padding: 0 40px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .fleet-stats-grid {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .fleet-stats-column {
        gap: 40px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-value .unit {
        font-size: 18px;
    }

    .fleet-disclaimer {
        padding: 0 20px;
    }
}

/* About Icons */
.about-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.about-icon {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    font-family: 'Roboto Mono', monospace;
}

.about-icon:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.about-icon i {
    font-size: 2.5rem;
    color: #2196f3;
    margin-bottom: 1rem;
}

.about-icon h3 {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-icon p {
    font-family: 'Roboto Mono', monospace;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-icons {
        grid-template-columns: 1fr;
    }
}

/* Contact Code Style */
.contact-code {
    background-color: rgba(248, 249, 250, 0.95);
    padding: 2rem;
    border-radius: 8px;
    font-family: 'Roboto Mono', monospace;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.code-line {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.code-keyword {
    color: #569cd6;
    font-weight: 500;
}

.code-variable {
    color: #9cdcfe;
    font-weight: 500;
}

.code-operator {
    color: #d4d4d4;
}

.code-brace {
    color: #d4d4d4;
}

.code-property {
    color: #9cdcfe;
    margin-left: 1rem;
}

.code-string {
    color: #ce9178;
}

.code-comma {
    color: #d4d4d4;
}

.code-semicolon {
    color: #d4d4d4;
}

.contact-code + .social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.contact-code + .social-links a {
    color: #666;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.contact-code + .social-links a:hover {
    color: #ffd700;
}

@media (max-width: 768px) {
    .contact-code {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
    
    .code-line {
        margin: 0.3rem 0;
    }
}

/* Code Button Style */
.code-button-container {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.code-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(248, 249, 250, 0.95);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Roboto Mono', monospace;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.code-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border-color: #dee2e6;
}

.code-button-text {
    color: #569cd6;
    font-weight: 500;
}

.code-button-arrow {
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .code-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Vision Section Styles */
.vision-code {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    font-family: 'Roboto Mono', monospace;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.vision-code .code-line {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.vision-code .code-line span {
    display: inline-block;
    opacity: 0;
    animation: typeIn 0.05s ease forwards;
}

.vision-code .code-line:nth-child(1) span { animation-delay: 0.1s; }
.vision-code .code-line:nth-child(1) span:nth-child(2) { animation-delay: 0.15s; }
.vision-code .code-line:nth-child(1) span:nth-child(3) { animation-delay: 0.2s; }
.vision-code .code-line:nth-child(1) span:nth-child(4) { animation-delay: 0.25s; }

.vision-code .code-line:nth-child(2) span { animation-delay: 0.3s; }
.vision-code .code-line:nth-child(2) span:nth-child(2) { animation-delay: 0.35s; }
.vision-code .code-line:nth-child(2) span:nth-child(3) { animation-delay: 0.4s; }
.vision-code .code-line:nth-child(2) span:nth-child(4) { animation-delay: 0.45s; }
.vision-code .code-line:nth-child(2) span:nth-child(5) { animation-delay: 0.5s; }

.vision-code .code-line:nth-child(3) span { animation-delay: 0.55s; }
.vision-code .code-line:nth-child(3) span:nth-child(2) { animation-delay: 0.6s; }
.vision-code .code-line:nth-child(3) span:nth-child(3) { animation-delay: 0.65s; }

.vision-code .code-line:nth-child(4) span { animation-delay: 0.7s; }
.vision-code .code-line:nth-child(4) span:nth-child(2) { animation-delay: 0.75s; }
.vision-code .code-line:nth-child(4) span:nth-child(3) { animation-delay: 0.8s; }

.vision-code .code-line:nth-child(5) span { animation-delay: 0.85s; }
.vision-code .code-line:nth-child(5) span:nth-child(2) { animation-delay: 0.9s; }
.vision-code .code-line:nth-child(5) span:nth-child(3) { animation-delay: 0.95s; }

.vision-code .code-line:nth-child(6) span { animation-delay: 1s; }
.vision-code .code-line:nth-child(6) span:nth-child(2) { animation-delay: 1.05s; }
.vision-code .code-line:nth-child(6) span:nth-child(3) { animation-delay: 1.1s; }

.vision-code .code-line:nth-child(7) span { animation-delay: 1.15s; }
.vision-code .code-line:nth-child(7) span:nth-child(2) { animation-delay: 1.2s; }
.vision-code .code-line:nth-child(7) span:nth-child(3) { animation-delay: 1.25s; }

.vision-code .code-line:nth-child(8) span { animation-delay: 1.3s; }
.vision-code .code-line:nth-child(8) span:nth-child(2) { animation-delay: 1.35s; }
.vision-code .code-line:nth-child(8) span:nth-child(3) { animation-delay: 1.4s; }

.vision-code .code-line:nth-child(9) span { animation-delay: 1.45s; }
.vision-code .code-line:nth-child(9) span:nth-child(2) { animation-delay: 1.5s; }
.vision-code .code-line:nth-child(9) span:nth-child(3) { animation-delay: 1.55s; }

.vision-code .code-line:nth-child(10) span { animation-delay: 1.6s; }
.vision-code .code-line:nth-child(10) span:nth-child(2) { animation-delay: 1.65s; }
.vision-code .code-line:nth-child(10) span:nth-child(3) { animation-delay: 1.7s; }

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vision-code .code-keyword {
    color: #569cd6;
    font-weight: 600;
}

.vision-code .code-variable {
    color: #9cdcfe;
    font-weight: 500;
}

.vision-code .code-operator {
    color: #d4d4d4;
}

.vision-code .code-brace {
    color: #d4d4d4;
}

.vision-code .code-property {
    color: #9cdcfe;
    font-weight: 500;
}

.vision-code .code-string {
    color: #ce9178;
}

.vision-code .code-comma {
    color: #d4d4d4;
}

.vision-code .code-semicolon {
    color: #d4d4d4;
}

@media (max-width: 768px) {
    .vision-code {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
    
    .vision-code .code-line {
        margin: 0.3rem 0;
    }
}

.dropdown-only {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-only::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-only:hover::after {
    transform: translateY(2px);
}

.about-intro {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
    max-width: 1200px;  /* 原来是800px，现在改为1200px */
    margin-left: auto;
    margin-right: auto;
}

.tech-section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    margin: 4rem 0;
}

.tech-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    font-family: 'Roboto Mono', monospace;
}

.tech-card .photo-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-card .photo-placeholder img {
    width: 51px;
    height: 51px;
    object-fit: contain;
}

.tech-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Roboto Mono', monospace;
}

.tech-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Roboto Mono', monospace;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-card {
        padding: 1.5rem;
    }
    
    .tech-card .photo-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .tech-card .photo-placeholder img {
        width: 50px;
        height: 50px;
    }
    
    .tech-card p {
        font-size: 0.95rem;
    }
}

.tech-section {
    padding: 80px 0;
    position: relative;
}

.tech-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.tech-grid {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .tech-section {
        padding: 60px 0;
    }
    
    .tech-section h2 {
    font-size: 2rem;
        margin-bottom: 2rem;
    }
}

.text-center {
    text-align: center;
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 2.8rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
    border-color: var(--accent-color);
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 1rem 2.2rem;
        font-size: 1rem;
    }
}

/* Operation Page Banner */
.operation-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/operation-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.operation-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(13, 71, 161, 0.1));
    pointer-events: none;
}

.operation-banner-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.operation-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

.operation-banner p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.operation-banner .banner-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.banner-stat-item {
    text-align: center;
}

.banner-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.banner-stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .operation-banner h1 {
        font-size: 3rem;
    }
    
    .operation-banner .banner-stats {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .operation-banner {
        min-height: 50vh;
        padding: 100px 0;
    }
    
    .operation-banner h1 {
        font-size: 2.5rem;
    }
    
    .operation-banner p {
        font-size: 1.1rem;
    }
    
    .operation-banner .banner-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .banner-stat-value {
        font-size: 2rem;
    }
}

/* Page Content Styles */
.page-content {
    padding-top: 80px;
}

.hero-information {
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('images/information-banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    padding-top: calc(120px + 5vh);
    text-align: center;
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-information h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
}

.hero-information p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

@media (max-width: 992px) {
    .hero-information h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-information {
        min-height: 110vh;
        padding: 100px 0;
    }
    
    .hero-information h1 {
        font-size: 2.5rem;
    }
    
    .hero-information p {
        font-size: 1.1rem;
        white-space: normal;
        padding: 0 20px;
    }
}

.hero-technology {
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('images/technology-banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    padding-top: calc(120px - 3vh);
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 1.5rem;
}

.hero-technology h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.hero-technology p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .hero-technology h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-technology {
        min-height: 100vh;
        padding: 100px 0;
    }
    
    .hero-technology h1 {
        font-size: 2.5rem;
    }
    
    .hero-technology p {
        font-size: 1.1rem;
        white-space: normal;
        padding: 0 20px;
    }
}

.hero-partnerships {
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('images/partnerships-banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    padding-top: calc(120px - 3vh);
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 1.5rem;
}

.hero-partnerships h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.hero-partnerships p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .hero-partnerships h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-partnerships {
        min-height: 100vh;
        padding: 100px 0;
    }
    
    .hero-partnerships h1 {
        font-size: 2.5rem;
    }
    
    .hero-partnerships p {
        font-size: 1.1rem;
        white-space: normal;
        padding: 0 20px;
    }
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button .button-icon {
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(5px);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .submit-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Roboto Mono', monospace;
}

.legal-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.legal-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Roboto Mono', monospace;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin: 30px 0 15px;
    font-family: 'Roboto Mono', monospace;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.legal-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.legal-content .highlight {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #007bff;
}

.legal-content .warning {
    background: #fff3cd;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #ffc107;
}

.legal-content .important {
    background: #f8d7da;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #dc3545;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 60px 0;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 20px;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }
}

.operations-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    position: relative;
    display: inline-block;
}

.operations-section h2::after {
    content: ' _';
    display: inline-block;
    animation: blink 1s infinite;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    position: relative;
    display: inline-block;
}

#about h2::after {
    content: ' _';
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* 添加新的动画类 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* 修改现有样式 */
.about-icon {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: 'Roboto Mono', monospace;
}

.about-icon:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.operation-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    transform-origin: center;
}

.operation-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.tech-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Roboto Mono', monospace;
}

.tech-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.tech-card .photo-placeholder {
    transition: transform 0.3s ease;
}

.tech-card:hover .photo-placeholder {
    transform: scale(1.1);
}

.tech-card .photo-placeholder img {
    transition: transform 0.3s ease;
}

.tech-card:hover .photo-placeholder img {
    transform: scale(1.1);
}

/* 添加动画延迟 */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* 修改Explore more about us按钮样式 */
.explore-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.8rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    transition: color 0.3s ease;
}

.explore-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.6s ease;
    z-index: -1;
}

.explore-button:hover {
    color: var(--white);
}

.explore-button:hover::before {
    width: 100%;
}

.explore-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.explore-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .explore-button {
        padding: 1rem 2.2rem;
        font-size: 1rem;
    }
}

.code-block {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    overflow-x: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.code-block pre {
    margin: 0;
}

.code-block code {
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    line-height: 1.6;
    color: #d4d4d4;
    white-space: pre;
}

/* 代码高亮颜色 */
.code-block .property { color: #9cdcfe; }
.code-block .keyword { color: #569cd6; }
.code-block .string { color: #ce9178; }
.code-block .number { color: #b5cea8; }
.code-block .operator { color: #d4d4d4; }
.code-block .comment { color: #6a9955; }

#team .section-content {
    max-width: 900px;
    margin: 0 auto;
}

#team .code-block {
    background: transparent;
    padding: 2rem;
    margin: 2rem 0;
    overflow-x: auto;
    box-shadow: none;
    font-size: 1rem;
    opacity: 1;
    transform: none;
    animation: none;
}

#team .code-block pre {
    margin: 0;
}

#team .code-block code {
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    white-space: pre;
    opacity: 1;
    transform: none;
    animation: none;
}

#team .code-block .code-line {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
}

/* 代码高亮颜色 - 与 vision 部分保持一致 */
#team .code-block .keyword { color: var(--primary-color); }
#team .code-block .variable { color: var(--text-color); }
#team .code-block .operator { color: var(--text-color); }
#team .code-block .brace { color: var(--text-color); }
#team .code-block .property { color: var(--primary-color); }
#team .code-block .string { color: #ce9178; }
#team .code-block .comma { color: var(--text-color); }
#team .code-block .semicolon { color: var(--text-color); }

@media (max-width: 768px) {
    #team .code-block {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
} 

.vision-code.static {
    opacity: 1;
    transform: none;
    transition: none;
}

.vision-code.static .code-line {
    opacity: 1;
    transform: none;
    transition: none;
}

#team .vision-code,
#team .vision-code *,
#team .code-block,
#team .code-block * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

#team .code-line,
#team .code-line span,
#team .code-line * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    animation-delay: 0s !important;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}
@media (max-width: 700px) {
    .logo-img {
        height: 36px;
    }
}

/* 首页 hero-content h1 字体缩小半号 */
.hero-content h1 {
    font-size: 2rem; /* 原来如果是2.5rem，缩小半号 */
    /* 你也可以根据实际情况调整为2.2rem、2.1rem等 */
}

.homepage .hero-content h1 {
    font-size: 2.895rem;
}

.operation-card h3 {
    text-align: center; /* 居中显示 */
    font-family: 'Roboto Mono', monospace; /* 等宽字体，和 Integrated Solution 一致 */
    font-weight: 700; /* 粗体 */
    font-size: 1.5rem;
    letter-spacing: 0.05em; /* 字母间距微调 */
    margin-bottom: 1rem;
}

.contact-options {
    gap: 1.2rem;
    padding: 0 1rem;
}

.contact-card {
    padding: 1.5rem 1rem;
    min-height: 120px;
    max-width: 280px;
}

.contact-card i {
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-card p {
    font-size: 0.95rem;
    font-family: 'Roboto Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
}

.contact-card:last-child {
    max-width: 400px;
}

.opportunity-card ul li {
    font-size: 90%;
    white-space: nowrap;
}

/* 移动端汉堡按钮 */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 10001;
  position: relative;
}
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .hamburger { display: block !important; }
}

/* 移动端抽屉菜单 */
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #faf9f6;
  z-index: 9999;
  overflow-y: auto;
  font-family: 'Roboto Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.mobile-menu-content {
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  padding-bottom: 120px; /* 增加底部内边距，为最后一个菜单组下方留出空间 */
}

.menu-group {
  margin-bottom: 2rem; /* 增加菜单组之间的间距 */
}

.menu-group:last-child {
  margin-bottom: 3rem; /* 最后一个菜单组下方增加更多间距 */
}

.menu-group-title {
  font-weight: bold;
  margin: 1.5rem 0 0.8rem 0; /* 增加标题下方间距 */
  padding-bottom: 0.5rem; /* 添加标题下方内边距 */
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.99rem;  /* 原来是 1.1rem，调整为90% */
  letter-spacing: 0.04em;
  color: #222;
}

.mobile-menu a {
  display: block;
  padding: 0.7rem 0 0.7rem 0.2rem; /* 增加链接的上下内边距 */
  color: #222;
  text-decoration: none;
  font-size: 0.972rem;  /* 原来是 1.08rem，调整为90% */
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  margin-bottom: 1rem; /* 每个菜单组的最后一个链接下方增加间距 */
}

.close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
}
@media (max-width: 900px) {
  .mobile-menu { display: none; }
  .mobile-menu.open { display: block; }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 1rem !important;
    height: 60px;
  }
  .logo {
    padding: 0 !important;
  }
  .logo-img {
    height: 32px !important;
  }
  .hamburger {
    margin-left: auto !important;
    margin-right: 0 !important;
    font-size: 2rem !important;
    align-self: center;
  }
}  

.locations-image-container {
    width: 100%;
    margin-top: 24px;
    display: flex;
    justify-content: center;
}
.locations-image-container img {
    width: 100% !important;
    max-width: 840px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    object-fit: cover !important;
    mask-image:
      radial-gradient(ellipse at center, black 60%, transparent 100%),
      linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%) !important;
    -webkit-mask-image:
      radial-gradient(ellipse at center, black 60%, transparent 100%),
      linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%) !important;
}

.multi-approach-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}
.multi-approach-image-container img {
    width: 100%;
    max-width: 630px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    object-fit: cover;
}
@media (max-width: 768px) {
    .multi-approach-image-container {
        justify-content: center;
    }
    .multi-approach-image-container img {
        max-width: 340px;
    }
}

#partnerships-hero ~ .content-section h2 {
    font-size: 2.25rem;
}

.partnership-section-title {
    color: var(--primary-color);
    text-align: center;
    font-size: 2rem;
    font-family: 'Roboto Mono', monospace;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    white-space: nowrap;
}
.partnership-section-title::after {
    content: ' _';
    display: inline-block;
    animation: blink 1s infinite;
}

@media (max-width: 768px) {
  .partner-card .company-desc {
    font-size: 75%;
    white-space: nowrap;
    max-width: 95vw;
    display: block;
    margin: 0 auto;
    overflow-x: auto;
    text-align: center;
  }
  .partner-card .partner-highlights {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
  }
  .partner-card .partner-highlights p {
    white-space: nowrap;
    margin: 0;
    padding: 0 4px;
    font-size: 75%;
  }
}

@media (max-width: 768px) {
  .opportunities-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 16px;
    padding: 0 16px 8px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .opportunity-card {
    width: 70vw;
    max-width: 260px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    box-sizing: border-box;
  }
  .opportunities-grid::-webkit-scrollbar {
    display: none;
  }
  .opportunity-card ul li {
    line-height: 1.3;
    margin: 0.2em 0;
  }
}

@media (max-width: 768px) {
  .opportunity-card {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
  }
  .opportunity-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 12px 0 0 0;
  }
  .opportunity-indicators span {
    display: inline-block;
    width: 32px;
    height: 4px;
    background: #d0d0d0;
    border-radius: 2px;
    transition: background 0.3s;
  }
  .opportunity-indicators .active {
    background: var(--primary-color);
  }
}

@media (max-width: 768px) {
  .opportunity-desc {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .benefits-grid { display: none !important; }
  .benefit-balls-container {
    display: block !important;
    position: relative;
    width: 70vw;
    height: 70vw;
    max-width: 70vw;
    max-height: 70vw;
    margin: 0 auto;
    background: transparent;
    overflow: hidden;
    touch-action: none;
  }
  .benefit-ball {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFB800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    user-select: none;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .benefit-popup {
    position: fixed;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  .benefit-popup-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 32px 20px;
    max-width: 80vw;
    min-width: 220px;
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    color: #333;
    font-size: 1.1rem;
    position: relative;
  }
}

@media (max-width: 768px) {
  .benefit-ball { pointer-events: auto; }
}

/* 移动端联系方式图标样式 */
@media (max-width: 768px) {
  .contact-options { display: none !important; }
  .contact-icons-mobile {
    display: flex !important;
    justify-content: center;
    gap: 32px;
    margin: 24px 0 12px 0;
  }
  .contact-icon-btn {
    background: #1976d2;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(25,118,210,0.12);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    outline: none;
  }
  .contact-icon-btn:active, .contact-icon-btn:focus {
    background: #1565c0;
    transform: scale(1.08);
  }
  .contact-popup-mobile {
    position: fixed;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.32);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .contact-popup-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px 24px 24px;
    min-width: 220px;
    max-width: 80vw;
    box-shadow: 0 8px 32px rgba(25,118,210,0.18);
    text-align: center;
    position: relative;
    animation: popupIn 0.18s cubic-bezier(.4,2,.6,1) both;
  }
  .popup-icon {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 12px;
  }
  .popup-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
  }
  .popup-info {
    font-size: 1rem;
    color: #444;
    margin-bottom: 4px;
    word-break: break-all;
  }
  @keyframes popupIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
}

@media (max-width: 768px) {
  .footer-partnerships {
    padding-bottom: 100px !important;
    position: relative;
  }
  .footer-partnerships .footer-logo-text {
    color: #bdbdbd;
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 0.2em;
    margin-top: 18px;
    margin-bottom: 0;
    width: 100%;
    font-weight: 700;
    opacity: 0.7;
  }
  .footer-partnerships::after {
    content: 'OKHOTSK';
    position: absolute;
    bottom: 15px !important;
    right: 0;
    left: 0;
    font-size: 80px;
    font-weight: 700;
    opacity: 0.08;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    letter-spacing: -5px;
    pointer-events: none;
    z-index: 0;
    color: #fff;
    text-align: center;
  }
}