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

html {
    overflow-x: hidden;
    width: 100%;
}



body {
    font-family: 'Inter', sans-serif;
    background-color: #272b2f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(39, 43, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: none; /* Hide logo icon on desktop */
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}



/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.new-program-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0066ff;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-text {
    position: relative;
}

.hero-title {
    font-size: 2.1rem !important;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top: 20px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-1,
.title-line-2 {
    display: block;
}

.hero-description {
    font-size: 1rem !important;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.cta-button {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: white;
    border: none;
    padding: 24px 60px;
    font-size: 22px !important;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 15px auto;
    display: block;
    min-width: 280px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.disclaimer {
    font-size: 14px;
    color: #888888;
    text-align: center;
}





/* What's Inside Section */
.whats-inside {
    padding: 0 0 30px 0;
    background-color: #272b2f;
    position: relative;
    z-index: 15;
    margin-top: -40px;
    overflow-x: hidden;
    width: 100%;
}

.whats-inside-container {
    background-color: #3375a6;
    border-radius: 20px;
    padding: 25px 40px 30px 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 10px;
}

.content-item {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.content-item::before {
    content: '●';
    color: white;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.content-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    margin: 0;
}

.content-item p strong {
    font-weight: 800;
    color: white;
}

.target-audience {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-top: 15px;
    line-height: 1.6;
    font-style: italic;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid white;
}

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

.folder-icon {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.folder-icon:hover {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Video Section */
.video-section {
    background-color: #272b2f;
    padding: 80px 0;
}

.video-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-description {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Testimonials */
.testimonials {
    padding: 0 0 50px 0;
    background-color: #272b2f;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: white;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: 500px;
    height: 250px;
}

.testimonial-card {
    background-color: #375A7F;
    padding: 30px;
    border-radius: 15px;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    height: 100%;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.testimonial-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.stars {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 0;
}

.testimonial-text {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.slider-btn {
    background-color: rgba(0, 102, 255, 0.3);
    border: none;
    color: #ffffff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slider-btn:hover {
    background-color: #0066ff;
    transform: scale(1.1);
}

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

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #0066ff;
}

.dot:hover {
    background-color: rgba(0, 102, 255, 0.7);
}

/* Middle CTA */
.middle-cta {
    padding: 40px 0;
    text-align: center;
    background-color: #272b2f;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #0066ff;
    text-align: center;
}

/* Exclusive Content */
.exclusive-content {
    padding: 0 0 30px 0;
    background-color: #272b2f;
    position: relative;
    z-index: 15;
    overflow-x: hidden;
    width: 100%;
}

.exclusive-container {
    background-color: #3375a6;
    border-radius: 20px;
    padding: 25px 40px 30px 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.exclusive-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 10px;
}

.exclusive-image {
    display: flex;
    justify-content: center; /* Center the image like in What's Inside */
    align-items: center;
}

.locked-folder {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    object-fit: contain;
}

.exclusive-text {
    color: white;
    margin-top: 20px;
}

.support-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-top: 15px;
    line-height: 1.6;
    font-style: italic;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid white;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 0;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 70px;
    border: none;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #385972;
    color: #183042;
    min-width: 320px;
    justify-content: center;
}

.support-btn.patreon {
    background: #385972;
}

.support-btn.telegram {
    background: #385972;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(56, 89, 114, 0.4);
    background: #4a6b85;
}

.btn-icon {
    font-size: 28px;
    font-weight: 800;
}

.exclusive-title {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inside-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.exclusive-list {
    margin-bottom: 30px;
}

.exclusive-item {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.exclusive-item::before {
    content: '•';
    color: white;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.exclusive-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.support-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.6;
}


/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: #272b2f;
    text-align: center;
}


.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.social-icon:hover .social-icon-img {
    transform: scale(1.1);
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: #0066ff;
    transform: translateY(-2px);
}

.website-url {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.website-url a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.website-url a:hover {
    color: #0066ff;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-link {
    color: #888;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: #0066ff;
}

.footer-separator {
    color: #888;
    font-size: 12px;
}

.footer-copyright {
    color: #888;
    font-size: 12px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: #272b2f;
    margin: 0;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.modal-content h2 {
    color: #0066ff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.modal-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #cccccc;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #0066ff;
}

.modal-text {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Download Modal Styles */
.download-modal-content {
    max-width: 500px;
    text-align: center;
}

.download-modal-content h2 {
    color: #ffffff !important;
}

.download-description {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-form {
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #444;
    border-radius: 8px;
    background-color: #1a1d20;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: #0066ff;
}

.form-group input[type="email"].error {
    border-color: #ff4444;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    cursor: pointer;
    font-size: 0.7rem;
    color: #cccccc;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #0066ff;
}

.error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.download-btn {
    width: 100%;
    padding: 18px 30px;
    background-color: #0066ff;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.download-btn:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.download-btn:disabled {
    background-color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loading {
    color: #cccccc;
}

.download-note {
    color: #888;
    font-size: 0.75rem;
    margin-top: 20px;
    text-align: center;
}

/* Language Selection Modal */
.language-modal-content {
    max-width: 300px;
    text-align: center;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.language-option {
    background: transparent;
    border: 2px solid #0066ff;
    color: #0066ff;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.language-option:hover {
    background: #0066ff;
    color: white;
}

.language-option.active {
    background: #0066ff;
    color: white;
}

.language-name {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        position: relative;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        position: static;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .logo-icon {
        display: block !important; /* Show logo icon on mobile */
        width: 35px;
        height: 35px;
        border-radius: 0;
        object-fit: contain;
    }
    
    .logo-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 22px;
        text-align: center;
        width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    
    .new-program-text {
        font-size: 0.8rem;
        order: 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        order: 1;
    }
    
    .hero-description {
        order: 2;
    }
    
    .cta-button {
        order: 3;
    }
    
    .cta-button {
        padding: 20px 50px;
        font-size: 20px;
        min-width: 250px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whats-inside-container {
        padding: 40px 25px 25px 25px;
    }
    
    .exclusive-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .exclusive-container {
        padding: 40px 25px 25px 25px;
    }
    
    
    
    .testimonial-slider {
        flex-direction: row;
        gap: 15px;
    }
    
    .testimonial-container {
        height: 280px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .video-title {
        font-size: 1.6rem;
    }
    
    .video-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .video-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .exclusive-title {
        font-size: 1.6rem;
    }
    
    .testimonials-title {
        font-size: 1.6rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .support-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }
    
    .support-btn {
        min-width: 300px;
        padding: 30px 50px;
        font-size: 22px;
    }
    
    
    
    .social-icon-img {
        width: 35px;
        height: 35px;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        font-size: 11px;
    }
    
    .footer-link,
    .footer-separator,
    .footer-copyright {
        font-size: 11px;
    }
    
    .modal-content {
        margin: 0;
        padding: 20px;
        width: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content h3 {
        font-size: 1.1rem;
    }
    
    .download-modal-content {
        max-width: 350px;
    }
    
    .download-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input[type="email"] {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .download-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .checkbox-label {
        font-size: 0.65rem;
    }
    
    .download-note {
        font-size: 0.7rem;
    }
    
    .testimonial-slider {
        flex-direction: row;
        gap: 10px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-container {
        height: 250px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .video-title {
        font-size: 1.4rem;
    }
    
    .video-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .video-section {
        padding: 50px 0;
    }
    
    .video-container {
        margin: 0 10px;
    }
    
    .testimonials-title {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .cta-subtitle {
        font-size: 0.8rem;
    }
    
    .folder-icon,
    .locked-folder {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    html {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .header-content {
        position: relative;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        position: static;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .logo-icon {
        display: block !important; /* Show logo icon on mobile */
        width: 30px;
        height: 30px;
        border-radius: 0;
        object-fit: contain;
    }
    
    .logo-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        text-align: center;
        width: 100%;
    }
    
    .whats-inside-container {
        padding: 30px 20px 20px 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .exclusive-container {
        padding: 30px 20px 20px 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .testimonial-slider {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .video-container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .exclusive-content-wrapper {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .content-item {
        padding-left: 20px;
        margin-bottom: 10px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .new-program-text {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .exclusive-title {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 18px;
        min-width: 220px;
    }
    
    .character {
        width: 250px;
        height: 350px;
    }
    
    .folder-icon,
    .locked-folder {
        width: 250px;
        height: 250px;
    }
}

/* First Time Language Modal Styles */
.language-settings-title {
    font-size: 0.9rem !important;
    color: #888 !important;
    text-align: center;
    margin: 0 0 15px 0;
    font-weight: 400;
}

.language-question {
    font-size: 1.4rem;
    color: #ffffff;
    text-align: center;
    margin: 20px 0 30px 0;
    font-weight: 600;
}

.language-confirm-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.language-confirm-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.language-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Mobile styles for language modal */
@media (max-width: 768px) {
    .language-settings-title {
        font-size: 0.8rem !important;
    }
    
    .language-confirm-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .language-confirm-btn {
        width: 100%;
        padding: 18px 20px;
    }
    
    .language-question {
        font-size: 1.2rem;
        margin: 15px 0 25px 0;
    }
}
