/* Tale Twist Page Styles */

/* Hero Section */
.tale-twist-hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('../../assets/images/tale_twist/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tale-twist-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.tale-twist-hero-content {
    text-align: center;
    color: var(--text-white);
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tale-twist-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.tale-twist-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.tale-twist-hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tale-twist-hero-btn:hover {
    background-color: #ffffff;
    color: #1a1a2e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .tale-twist-hero-section {
        min-height: 400px;
    }
    
    .tale-twist-hero-title {
        font-size: 2rem;
    }
    
    .tale-twist-hero-subtitle {
        font-size: 1rem;
    }
}

/* Unlock Power Section */
.unlock-power-section {
    background-color: #ffffff;
    padding: 3rem 2rem 5rem 2rem;
}

.unlock-power-container {
    max-width: 1200px;
    margin: 0 auto;
}

.unlock-power-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 0.5rem;
}

.unlock-power-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 3rem;
}

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

.unlock-power-card {
    background-color: #1a1a2e;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.unlock-power-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.unlock-power-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.unlock-power-card-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .unlock-power-section {
        padding: 3rem 1.5rem;
    }
    
    .unlock-power-title {
        font-size: 2rem;
    }
    
    .unlock-power-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
    
    .unlock-power-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .unlock-power-card {
        padding: 2rem 1.5rem;
    }
    
    .unlock-power-icon {
        font-size: 2.5rem;
    }
    
    .unlock-power-card-title {
        font-size: 1.25rem;
    }
    
    .unlock-power-card-text {
        font-size: 0.95rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    background-color: #87CEEB;
    padding: 5rem 2rem;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    text-align: center;
}

.how-it-works-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 1rem;
    text-align: center;
}

.how-it-works-intro {
    font-size: 1.125rem;
    color: #1a1a2e;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    line-height: 1.7;
    text-align: center;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.how-it-works-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.how-it-works-feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.how-it-works-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.how-it-works-feature-text {
    font-size: 1rem;
    color: #1a1a2e;
    line-height: 1.6;
    margin: 0;
}

.how-it-works-visuals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.how-it-works-visual-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dragon-image {
    max-width: 300px;
    width: 300px;
    height: auto;
    border-radius: 12px;
}

/* Mobile Version - Hidden by default */
.how-it-works-mobile-version {
    display: none;
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 3rem 1.5rem;
    }
    
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1.25rem;
    }
    
    .how-it-works-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    /* Hide desktop version completely */
    .how-it-works-content {
        display: none !important;
    }
    
    .how-it-works-content-reverse {
        display: none !important;
    }
    
    /* Show mobile version */
    .how-it-works-mobile-version {
        display: block;
    }
    
    .how-it-works-mobile-grid-dragons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .how-it-works-mobile-features {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .how-it-works-mobile-feature {
        width: 100%;
        text-align: left;
    }
    
    .how-it-works-mobile-feature-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 0.5rem 0;
        text-align: left;
    }
    
    .how-it-works-mobile-feature-text {
        font-size: 1rem;
        color: #1a1a2e;
        line-height: 1.6;
        margin: 0;
        text-align: left;
    }
    
    .how-it-works-mobile-grid-girls {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }
    
    .how-it-works-mobile-visual-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .how-it-works-mobile-grid-dragons .dragon-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    .how-it-works-mobile-grid-girls .girl-mobile-image {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
}

.how-it-works-content-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.how-it-works-visuals-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.how-it-works-visual-item-left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    margin-top: -180px;
}

.phone-screen-wrapper-left {
    position: relative;
    display: inline-block;
}

.phone-image-left {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.book-overlay-top-right {
    position: absolute;
    top: 40px;
    right: -80px;
    z-index: 10;
    pointer-events: none;
    transform: rotate(20deg);
}

.book-image-left {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.girl-2-overlay-bottom-right {
    position: absolute;
    bottom: -200px;
    right: -150px;
    z-index: 5;
    pointer-events: none;
}

.girl-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.how-it-works-features-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Why Tale Twist Section */
.why-tale-twist-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.why-tale-twist-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-tale-twist-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 1rem;
}

.why-tale-twist-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 3rem;
}

.why-tale-twist-text {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-tale-twist-point {
    font-size: 1.125rem;
    color: #1a1a2e;
    line-height: 1.7;
    margin: 0;
    padding-left: 1.5rem;
    position: relative;
}

.why-tale-twist-point::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: #1a1a2e;
}

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

.why-tale-twist-card {
    background-color: #1a1a2e;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-tale-twist-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.why-tale-twist-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.why-tale-twist-card-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .why-tale-twist-section {
        padding: 3rem 1.5rem;
    }
    
    .why-tale-twist-title {
        font-size: 2rem;
    }
    
    .why-tale-twist-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .why-tale-twist-text {
        margin-bottom: 3rem;
    }
    
    .why-tale-twist-point {
        font-size: 1rem;
    }
    
    .why-tale-twist-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-tale-twist-card {
        padding: 2rem 1.5rem;
    }
    
    .why-tale-twist-icon {
        font-size: 2.5rem;
    }
    
    .why-tale-twist-card-title {
        font-size: 1.25rem;
    }
    
    .why-tale-twist-card-text {
        font-size: 0.95rem;
    }
}

/* Premium Features Section */
.premium-features-section {
    background-color: #1a1a2e;
    padding: 5rem 2rem;
}

.premium-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.premium-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.premium-features-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.premium-features-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.premium-features-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
}

.premium-features-intro {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

.premium-features-intro strong {
    font-weight: 700;
}

.premium-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.premium-features-item {
    display: flex;
    align-items: flex-start;
}

.premium-features-item-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
    position: relative;
}

.premium-features-item-text::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: #ffffff;
}

.premium-features-item-text strong {
    font-weight: 700;
}

.premium-features-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

@media (max-width: 768px) {
    .premium-features-section {
        padding: 3rem 1.5rem;
    }
    
    .premium-features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .premium-features-title {
        font-size: 2rem;
    }
    
    .premium-features-subtitle {
        font-size: 1.25rem;
    }
    
    .premium-features-intro {
        font-size: 1rem;
    }
    
    .premium-features-item-text {
        font-size: 0.95rem;
    }
}



