/* Rebel of the Forsaken Dedicated Page Styles */

.rebel-page {
    --rebel-primary: #8b0000;
    --rebel-gold: #c9a55a;
    --rebel-dark: #0a0a0a;
}

/* Rebel Hero Section */
.rebel-hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #2a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rebel-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.rebel-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 165, 90, 0.1) 0%, transparent 50%);
    animation: pulseRebel 10s ease-in-out infinite;
}

@keyframes pulseRebel {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.rebel-hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    animation: fadeInUp 1.2s ease;
    max-width: 1000px;
    padding: 0 20px;
}

.rebel-title {
    font-size: 5.5rem;
    margin-bottom: 0.5rem;
    color: var(--rebel-gold);
    text-shadow: 0 4px 30px rgba(139, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: 2px;
}

.rebel-subtitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.rebel-tagline {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--rebel-gold);
    font-style: italic;
    font-weight: 300;
}

/* Book Section */
.book-section {
    padding: 6rem 0;
    background: white;
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: start;
}

.book-cover {
    position: relative;
    position: sticky;
    top: 100px;
}

.book-cover img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.book-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--rebel-primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.book-details h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.book-details h3 {
    font-size: 2rem;
    color: var(--rebel-gold);
    margin-bottom: 2rem;
}

.book-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
}

.book-description .opening-line {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.book-description .opening-line strong {
    color: var(--secondary-color);
}

.book-description .closing-line {
    color: var(--rebel-primary);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.book-description .genre-line {
    font-size: 1rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
}

.book-description .genre-line em {
    color: var(--rebel-gold);
    font-style: normal;
    font-weight: 500;
}

.book-meta {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.meta-item .label {
    font-weight: 700;
    color: var(--secondary-color);
}

.meta-item .value {
    color: #666;
}

.btn-preorder {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--rebel-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-preorder:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    background: #a00000;
}

/* Movie Section */
.movie-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.movie-content {
    max-width: 1000px;
    margin: 0 auto;
}

.movie-details h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.movie-details p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.production-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--rebel-gold);
}

.info-item h4 {
    font-size: 1rem;
    color: var(--rebel-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.casting-cta {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.casting-cta h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.casting-cta p {
    margin-bottom: 1.5rem;
}

.btn-casting {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--rebel-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-casting:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
    background: #a00000;
}

/* Characters Section */
.characters-section {
    padding: 6rem 0;
    background: white;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.character-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--rebel-gold);
}

.character-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.character-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.char-desc {
    color: var(--rebel-primary);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.character-card p:not(.char-desc) {
    line-height: 1.7;
    color: #666;
}

/* About Rebel Section */
.about-rebel-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.creator-content {
    max-width: 900px;
    margin: 0 auto;
}

.creator-info {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.creator-info h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.creator-role {
    color: var(--rebel-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.creator-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.company-info {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.company-info h4 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.company-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-company {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-company:hover {
    background: var(--secondary-color);
    color: white;
}

/* Newsletter Rebel */
.newsletter-rebel {
    background: var(--rebel-dark);
    color: var(--text-light);
    text-align: center;
    padding: 4rem 0;
}

.newsletter-rebel h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--rebel-gold);
}

.newsletter-rebel p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 968px) {
    .book-showcase {
        grid-template-columns: 1fr;
    }
    
    .book-cover {
        position: relative;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .rebel-title {
        font-size: 3rem;
    }
    
    .rebel-subtitle {
        font-size: 1.5rem;
    }
    
    .rebel-tagline {
        font-size: 1.3rem;
    }
    
    .production-info {
        grid-template-columns: 1fr;
    }
    
    .characters-grid {
        grid-template-columns: 1fr;
    }
}
