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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
}

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

/* Header Section */
header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo-text {
    font-size: 2em;
    font-weight: bold;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

/* Main Content */
main {
    margin-top: 100px;
    animation: fadeInUp 0.8s ease;
}

.hero-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.production-services {
    margin-bottom: 50px;
}

.production-services h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.2s;
}

.service-description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.4s;
}

/* Logo Container */
.podcast-logo-container {
    display: inline-block;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.6s;
}

.podcast-logo-container a {
    display: block;
    text-decoration: none;
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(145deg, #f0f4f8, #ffffff);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.podcast-logo-container a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(42, 82, 152, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.podcast-logo-container a:hover::before {
    left: 100%;
}

.podcast-logo-container a:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(42, 82, 152, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.podcast-logo {
    width: 300px;
    height: auto;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.podcast-logo-container a:hover .podcast-logo {
    transform: scale(1.02);
}

.logo-link-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #2a5298;
    font-weight: 600;
    font-size: 1.05em;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.logo-link-text::after {
    content: '→';
    display: inline-block;
    transition: transform 0.3s ease;
}

.podcast-logo-container a:hover .logo-link-text {
    color: #1e3c72;
    gap: 12px;
}

.podcast-logo-container a:hover .logo-link-text::after {
    transform: translateX(5px);
}

/* About Section */
.about-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

.about-section h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.about-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 2px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight {
    color: #2a5298;
    font-weight: 600;
}

/* Film Project Section */
.film-project-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1s;
}

.film-project-section h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.film-project-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 2px;
}

.film-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.film-intro {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.film-image-container {
    display: inline-block;
    position: relative;
}

.film-link {
    display: block;
    text-decoration: none;
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(145deg, #f0f4f8, #ffffff);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.film-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(42, 82, 152, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.film-link:hover::before {
    left: 100%;
}

.film-link:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(42, 82, 152, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.film-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

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

.film-link-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #2a5298;
    font-weight: 600;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.film-link-text::after {
    content: '→';
    display: inline-block;
    transition: transform 0.3s ease;
}

.film-link:hover .film-link-text {
    color: #1e3c72;
    gap: 12px;
}

.film-link:hover .film-link-text::after {
    transform: translateX(5px);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: white;
    margin-top: 60px;
}

.footer-text {
    opacity: 0.9;
    font-size: 0.95em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        text-align: center;
    }

    .logo-text {
        font-size: 1.5em;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .production-services h1 {
        font-size: 1.8em;
    }

    .service-description {
        font-size: 1em;
    }

    .podcast-logo {
        width: 250px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .about-section h2 {
        font-size: 1.8em;
    }

    .about-content p {
        font-size: 1em;
    }

    .film-project-section {
        padding: 40px 20px;
    }

    .film-project-section h2 {
        font-size: 1.8em;
    }

    .film-intro {
        font-size: 1em;
    }

    .film-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .podcast-logo {
        width: 200px;
    }
}

/* Loading animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
