/* ===================================
   HTP - Midnight Freedom LP Styles
   Theme: Shadows to Sunlight (闇→光)
   =================================== */

/* ===== CSS Variables ===== */
:root {
    /* Colors - Cosmic Blue to Warm Gold */
    --cosmic-blue-dark: #0a0e27;
    --cosmic-blue: #1a1f3a;
    --cosmic-blue-mid: #2d3561;
    --cosmic-blue-light: #4a5687;
    --warm-gold: #d4af37;
    --warm-gold-light: #f4d03f;
    --warm-gold-dark: #b8941f;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e0e6ed;
    --mid-gray: #8892a6;
    --dark-gray: #2c3e50;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--cosmic-blue-dark) 0%, var(--cosmic-blue) 50%, var(--cosmic-blue-mid) 100%);
    --gradient-section: linear-gradient(180deg, var(--cosmic-blue) 0%, var(--cosmic-blue-mid) 100%);
    --gradient-light: linear-gradient(135deg, var(--warm-gold-dark) 0%, var(--warm-gold) 50%, var(--warm-gold-light) 100%);
    --gradient-sunrise: linear-gradient(180deg, var(--cosmic-blue-mid) 0%, var(--warm-gold-dark) 100%);
    
    /* Typography */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--off-white);
    background: var(--cosmic-blue-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-gold);
}

.brand-symbol {
    font-size: 2rem;
}

.brand-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--warm-gold);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--warm-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.65;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 14, 39, 0.75) 0%,
        rgba(10, 14, 39, 0.85) 50%,
        rgba(10, 14, 39, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: var(--gradient-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    color: var(--warm-gold);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--light-gray);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-sm);
}

.btn-x-follow {
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

.x-logo-btn {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.hero-follow-note {
    font-size: 0.9rem;
    color: var(--mid-gray);
    font-style: italic;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease-out;
}

.pegasus-container {
    text-align: center;
    animation: float 6s ease-in-out infinite;
    max-width: 500px;
}

.pegasus-visual-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 40px rgba(212, 175, 55, 0.3));
    opacity: 0.9;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--mid-gray);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--warm-gold), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-light);
    color: var(--cosmic-blue-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--warm-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--warm-gold);
    border: 2px solid var(--warm-gold);
}

.btn-outline:hover {
    background: var(--warm-gold);
    color: var(--cosmic-blue-dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== Section Common Styles ===== */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--mid-gray);
}

/* ===== Story Section ===== */
.story-section {
    position: relative;
    overflow: hidden;
}

.story-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.story-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 31, 58, 0.92) 0%,
        rgba(45, 53, 97, 0.88) 100%
    );
}

.story-section .container {
    position: relative;
    z-index: 10;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-md);
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }

.timeline-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--warm-gold);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 20px;
    border-left: 4px solid var(--warm-gold);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--warm-gold);
}

.timeline-content p {
    color: var(--light-gray);
    line-height: 1.8;
}

.story-cta {
    text-align: center;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Theme Song Section ===== */
.theme-song-section {
    background: var(--cosmic-blue);
    position: relative;
    overflow: hidden;
}

.theme-song-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.theme-visual {
    position: relative;
    text-align: center;
}

.theme-album-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.theme-album-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: var(--warm-gold);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.theme-visual:hover .play-overlay {
    opacity: 0.9;
}

.theme-info h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--warm-gold);
    font-family: var(--font-display);
}

.theme-description {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.theme-platforms h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--warm-gold);
}

.platforms-row {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid;
}

.platform-btn.spotify {
    background: rgba(29, 185, 84, 0.1);
    color: #1DB954;
    border-color: #1DB954;
}

.platform-btn.spotify:hover {
    background: #1DB954;
    color: var(--cosmic-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.3);
}

.platform-btn.apple {
    background: rgba(250, 36, 60, 0.1);
    color: #FA243C;
    border-color: #FA243C;
}

.platform-btn.apple:hover {
    background: #FA243C;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(250, 36, 60, 0.3);
}

.platform-btn i {
    font-size: 1.5rem;
}

/* ===== Radio Section ===== */
.radio-section {
    background: var(--cosmic-blue-dark);
}

.radio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.radio-player {
    background: var(--gradient-section);
    padding: var(--spacing-lg);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.player-visual {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.podcast-cover-link {
    display: block;
    margin: 0 auto var(--spacing-md);
    width: 300px;
    height: 300px;
}

.podcast-cover-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.podcast-cover-link:hover .podcast-cover-img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.audio-waves {
    display: flex;
    justify-content: center;
    gap: 5px;
    height: 40px;
}

.audio-waves span {
    width: 4px;
    background: var(--warm-gold);
    border-radius: 4px;
    animation: wave 1s ease-in-out infinite;
}

.audio-waves span:nth-child(1) { animation-delay: 0s; }
.audio-waves span:nth-child(2) { animation-delay: 0.1s; }
.audio-waves span:nth-child(3) { animation-delay: 0.2s; }
.audio-waves span:nth-child(4) { animation-delay: 0.3s; }
.audio-waves span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 10px; }
    50% { height: 40px; }
}

.player-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--warm-gold);
}

.radio-description {
    color: var(--light-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.radio-features {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-gold);
    font-size: 0.9rem;
}

.platform-links h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--warm-gold);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--warm-gold);
    background: rgba(255, 255, 255, 0.1);
}

.platform-card i {
    font-size: 2rem;
}

.platform-card.spotify:hover i { color: #1DB954; }
.platform-card.apple:hover i { color: #FA243C; }
.platform-card.amazon:hover i { color: #00A8E1; }
.platform-card.youtube:hover i { color: #FF0000; }

/* ===== Content Section ===== */
.content-section {
    background: var(--gradient-sunrise);
}

/* Latest Posts Preview */
.latest-posts {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.latest-posts-title {
    font-size: 1.75rem;
    color: var(--warm-gold);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.latest-posts-title i {
    color: #ff6b35;
    animation: flicker 2s infinite;
}

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

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.post-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    text-decoration: none;
    color: var(--off-white);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--warm-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.post-platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--warm-gold);
    font-weight: 600;
}

.post-platform .x-logo {
    font-size: 1.25rem;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
}

.post-excerpt {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-time {
    font-size: 0.85rem;
    color: var(--mid-gray);
    font-style: italic;
    margin-top: auto;
}

/* CTA Message in Content Hub */
.cta-message {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.cta-message h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--warm-gold);
    margin-bottom: var(--spacing-sm);
}

.cta-message p {
    font-size: 1.25rem;
    color: var(--light-gray);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.content-card:hover {
    transform: translateY(-10px);
    border-color: var(--warm-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-light);
    color: var(--cosmic-blue-dark);
}

.x-logo {
    font-size: 2rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

.content-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--warm-gold);
}

.content-card p {
    color: var(--light-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.card-link:hover {
    gap: 1rem;
}

/* ===== Community Section ===== */
.community-section {
    background: var(--cosmic-blue);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.community-visual {
    text-align: center;
    padding: var(--spacing-lg);
}

.community-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.community-quote {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.info-benefits {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-gold);
    font-size: 0.9rem;
}

.benefit-item i {
    font-size: 2rem;
}

.community-join {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid var(--warm-gold);
}

.community-join h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--warm-gold);
}

.community-join > p {
    color: var(--light-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border-radius: 50px;
    border: 2px solid var(--warm-gold);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--mid-gray);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.form-note {
    font-size: 0.875rem;
    color: var(--mid-gray);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-hero);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--warm-gold);
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: var(--spacing-lg);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-decoration: none;
    color: var(--white);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-card:hover {
    transform: translateY(-10px);
    border-color: var(--warm-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto var(--spacing-sm);
    transition: var(--transition-smooth);
}

.cta-icon i {
    display: block;
}

.cta-icon .x-logo {
    font-size: 2.75rem;
}

/* Unified HTP Brand Style - Navy & Gold */
.cta-icon {
    background: var(--gradient-light);
    color: var(--cosmic-blue-dark);
    border: 2px solid var(--warm-gold);
}

.cta-card:hover .cta-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--warm-gold);
}

.cta-card p {
    font-size: 0.9rem;
    color: var(--mid-gray);
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--cosmic-blue-dark);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-gold);
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--warm-gold);
}

.brand-tagline {
    color: var(--mid-gray);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.footer-column h4 {
    color: var(--warm-gold);
    margin-bottom: var(--spacing-sm);
}

.footer-column a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--warm-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--mid-gray);
}

.footer-message {
    margin-top: var(--spacing-sm);
    color: var(--warm-gold);
    font-style: italic;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero-content,
    .theme-song-content,
    .radio-content,
    .community-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .podcast-cover-img {
        width: 250px;
        height: 250px;
    }
    
    .brand-logo-img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 640px) {
    :root {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta,
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .pegasus-visual-img {
        max-width: 300px;
    }
    
    .podcast-cover-img {
        width: 200px;
        height: 200px;
    }
    
    .theme-album-img {
        max-width: 280px;
    }
    
    .platforms-row {
        flex-direction: column;
    }
    
    .platform-btn {
        width: 100%;
        justify-content: center;
    }
}
