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

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #121212;
    --accent-purple: #9b5de5;
    --accent-cyan: #00d9ff;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --gradient: linear-gradient(90deg, #9b5de5, #00d9ff);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 1rem 1.2rem;
    display: block;
}

.nav-links a:hover {
    color: var(--accent-cyan);
    background: rgba(139, 92, 246, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-content li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content a {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.dropdown-content a:hover {
    color: var(--accent-cyan);
    background: rgba(139, 92, 246, 0.15);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 2rem;
    background: #0a0a0a;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.intro-image {
    width: 100%;
    background: #0a0a0a;
}

.full-width-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title-main {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #9b5de5, #00d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #9b5de5, #00d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    color: #d0d0d0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.stock-ticker {
    font-size: 1rem;
    color: #d0d0d0;
}

.stock-code {
    color: #00d9ff;
    font-weight: 600;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
}

.hero-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: var(--secondary-bg);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.highlight {
    color: var(--accent-cyan);
    font-weight: 600;
}

.link {
    color: var(--accent-cyan);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Welcome Section */
.welcome {
    padding: 3rem 0;
}

.shared-cinema {
    padding: 3rem 0;
}

.cinema-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cinema-full-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}

.cinema-description {
    max-width: 1200px;
    margin: 0 auto;
}

.cinema-description p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ufilm-nyc {
    padding: 3rem 0;
}

.nyc-wrapper {
    display: flex;
    justify-content: center;
}

.nyc-link {
    display: block;
    width: 100%;
    max-width: 1200px;
}

.nyc-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.nyc-link:hover .nyc-img {
    transform: scale(1.02);
}

.old-new {
    padding: 3rem 0;
}

.hybrid-cinema {
    padding: 3rem 0;
}

.hybrid-wrapper {
    display: flex;
    justify-content: center;
}

.hybrid-link {
    display: block;
    width: 100%;
    max-width: 1200px;
}

.hybrid-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.hybrid-link:hover .hybrid-img {
    transform: scale(1.02);
}

.old-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.old-new-left,
.old-new-right {
    display: flex;
    flex-direction: column;
}

.old-new-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.old-new-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 12px;
}

.old-new-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.old-new-desc {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 12px;
}

.revenue-wrapper {
    display: flex;
    justify-content: center;
}

.video-link {
    display: block;
    width: 100%;
    max-width: 1200px;
}

.video-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-image:hover {
    transform: scale(1.02);
}

.revenue-streams {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
}

.revenue-streams h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.revenue-streams ul {
    list-style: none;
}

.revenue-streams li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

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

.video-box {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
}

.video-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.youtube-icon {
    color: #ff0000;
    font-size: 1.5rem;
}

.video-box h4 {
    margin-bottom: 1rem;
}

.video-box p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.play-btn {
    background: var(--gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
}

/* What We Do Section */
.what-we-do {
    padding: 3rem 0;
    background: var(--secondary-bg);
}

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

.service-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
}

/* Business Section */
.business {
    padding: 1.5rem 0;
}

.business-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.business-image {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 1200px;
}

.business-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.business-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    text-align: center;
}

.card-header-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 12px 12px 0 0;
}

.business-card h3 {
    margin: 1rem 0;
    font-size: 1.2rem;
}

.business-card p {
    color: var(--text-gray);
}

.become-producer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.producer-line {
    height: 4px;
    background: var(--gradient);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.become-producer h3 {
    margin-bottom: 1rem;
}

.become-producer p {
    color: var(--text-gray);
}

/* UFilm Section */
.ufilm {
    padding: 3rem 0;
    background: var(--secondary-bg);
}

.ufilm-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ufilm-header {
    text-align: center;
}

.ufilm-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
}

.ufilm-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.ufilm-left,
.ufilm-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ufilm-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-purple);
}

.ufilm-card h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
}

.ufilm-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.ufilm-ecosystem img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ufilm-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.script-agent {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.script-agent p {
    color: var(--text-gray);
    margin: 0;
}

.script-agent p {
    color: var(--text-gray);
    font-size: 1.1rem;
    text-align: center;
}

/* Team Section */
.team {
    padding: 3rem 0;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    display: flex;
    gap: 3rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 16px;
    align-items: center;
}

.member-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-purple);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.member-info .role {
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Press Section */
.press {
    padding: 3rem 0;
    background: var(--secondary-bg);
}

.creative-mind {
    padding: 3rem 0;
}

.creative-wrapper {
    display: flex;
    justify-content: center;
}

.creative-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
}

.producers-room {
    padding: 3rem 0;
}

.producers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.producers-left,
.producers-right {
    display: flex;
    flex-direction: column;
}

.producers-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.producers-text {
    color: var(--text-gray);
    line-height: 1.8;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 12px;
}

.ab-cinemas {
    padding: 3rem 0;
}

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

.ab-left,
.ab-right {
    display: flex;
    flex-direction: column;
}

.ab-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ab-text {
    color: var(--text-gray);
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 12px;
}

.ab-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
}

.ab-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.ab-desc {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ab-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ab-feature {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.ab-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-feature-text {
    color: var(--text-gray);
    line-height: 1.6;
}

.ab-link-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.ab-link-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.ufilm-ai-ecosystem {
    padding: 3rem 0;
}

.ufilm-image {
    margin-bottom: 2rem;
}

.ufilm-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ufilm-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
}

.ufilm-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.ufilm-link-container {
    display: flex;
    justify-content: center;
}

.ufilm-link-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ufilm-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.ufilm-script-agent {
    padding: 3rem 0;
}

.script-agent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.script-agent-left {
    display: flex;
    flex-direction: column;
}

.script-agent-right {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 1.5rem;
    border-radius: 12px;
}

.script-agent-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.script-agent-right .script-agent-img {
    margin-top: 1.5rem;
}

.script-agent-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.creative-mind-script {
    padding: 1.5rem 0;
}

.creative-script-image {
    margin-top: 1.5rem;
}

.creative-script-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ufilm-ai-script {
    padding: 1.5rem 0;
}

.ufilm-script-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.ufilm-script-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ufilm-script-link {
    display: block;
    cursor: pointer;
}

.ufilm-script-link:hover .ufilm-script-img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.business-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.press-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.press-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.press-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.press-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.press-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.press-list {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
}

.press-list > p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.news-list {
    list-style: none;
}

.news-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-date {
    color: var(--accent-purple);
    font-weight: 600;
    min-width: 120px;
}

.news-text {
    color: var(--text-gray);
    margin-right: 0.5rem;
}

.news-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--accent-purple);
}
    border-bottom: 1px solid #2a2a2a;
}

.news-date {
    color: var(--text-gray);
    margin-right: 0.5rem;
}

.news-link {
    color: var(--accent-cyan);
    text-decoration: none;
}

.news-link:hover {
    text-decoration: underline;
}

/* OTC Section */
.otc {
    padding: 3rem 0;
}

.otc-content {
    text-align: center;
}

.otc-content img {
    max-width: 100%;
    border-radius: 12px;
}

/* Investors Section */
.investors {
    padding: 3rem 0;
    background: var(--secondary-bg);
}

.investors-image {
    margin-bottom: 2rem;
}

.investors-image img {
    max-width: 100%;
    border-radius: 12px;
}

.investors-content {
    margin-bottom: 3rem;
}

.investors-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-info {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
}

.contact-info h4 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.sec-filings {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.ip-strategy,
.sec-filing-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
}

.sec-filings h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ip-image {
    margin-bottom: 2rem;
}

.ip-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ip-card {
    background: rgba(139, 92, 246, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-purple);
}

.ip-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.ip-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.sec-image {
    margin-bottom: 1.5rem;
}

.sec-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.sec-text p {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.filing-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filing-link {
    color: var(--accent-cyan);
    text-decoration: none;
    padding: 0.8rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.filing-link:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
}

/* Contact Section */
.contact {
    padding: 3rem 0;
}

.contact-main {
    width: 100%;
}

.contact-row {
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-start;
}

.contact-banner {
    width: 60%;
    height: auto;
    border-radius: 12px;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-column-left,
.contact-column-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.signup-header {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
}

.signup-info {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2rem;
    border-radius: 12px;
}

.headquarters h3 {
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.headquarters p {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.visit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 1rem;
}

.signup-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-image {
    margin-bottom: 2rem;
}

.signup-image img {
    max-width: 100%;
    border-radius: 12px;
}

.contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-right p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-logo {
    text-align: center;
    margin-top: 3rem;
}

.footer-logo img {
    max-width: 400px;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--secondary-bg);
    text-align: center;
    color: var(--text-gray);
}

/* Navigation Buttons */
.navigation {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--gradient);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 93, 229, 0.5);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .revenue-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navigation {
        right: 15px;
        bottom: 15px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .container {
        padding: 0 1rem;
    }

    /* 新增section的响应式 */
    .producers-grid,
    .ab-grid,
    .script-agent-grid,
    .ab-features,
    .ip-grid {
        grid-template-columns: 1fr;
    }

    .ab-left,
    .ab-right,
    .script-agent-left,
    .script-agent-right,
    .producers-left,
    .producers-right {
        margin-bottom: 1.5rem;
    }

    .ufilm-script-images {
        gap: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .ab-subtitle {
        font-size: 1.2rem;
    }

    .ab-link-btn,
    .ufilm-link-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .member-image {
        margin-bottom: 1rem;
    }

    .contact-columns {
        grid-template-columns: 1fr;
    }

    .press-main {
        grid-template-columns: 1fr;
    }

    .old-new-grid,
    .services-grid,
    .business-grid,
    .team-grid,
    .revenue-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .business-card {
        padding: 1rem;
    }

    .business-card h3 {
        font-size: 1.1rem;
    }

    .business-card p {
        font-size: 0.9rem;
    }

    .ufilm-content {
        padding: 1rem;
    }

    .ufilm-card {
        padding: 1rem;
    }

    .ufilm-card h4 {
        font-size: 1rem;
    }

    .ufilm-card p {
        font-size: 0.85rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .press-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .revenue-card {
        padding: 1.5rem;
    }

    .revenue-card h3 {
        font-size: 1.1rem;
    }

    .revenue-card p {
        font-size: 0.9rem;
    }
}
