/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    background: #000000;
    overflow-x: hidden;
}

/* --- MODAL STYLES --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
}

.modal.active {
    display: block;
}

.modal-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#modal-body {
    width: 100%;
    min-height: 100vh;
    overflow-y: auto;
}

#modal-body iframe {
    width: 100%;
    min-height: 100vh;
    border: none;
    display: block;
}

.close-btn {
    position: fixed;
    top: 20px;
    left: 15px;
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: #444444;
}

/* Background - Desktop Only */
.background {
    display: none;
}

@media (min-width: 768px) {
    .background {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
    }

    .background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: var(--desktop-bg-url);
        background-size: cover;
        background-position: center;
        filter: blur(40px) brightness(0.4);
        transform: scale(1.1);
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

@media (min-width: 768px) {
    .container {
        padding: 40px 20px;
    }
}

/* Profile Card */
.profile-card {
    width: 100%;
    background: #000000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.6s ease-out;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .profile-card {
        width: 75%;
        max-width: 540px;
        border-radius: 30px;
        min-height: auto;
        border: 1px solid #2a2a2a;
        overflow: hidden;
    }
}

/* eBook Card (Used for About Page as well) */
.ebook-container {
    align-items: flex-start;
    padding: 40px 20px;
}

.ebook-card {
    width: 100%;
    max-width: 600px;
    background: #000000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.6s ease-out;
    padding: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .ebook-card {
        border-radius: 30px;
        border: 1px solid #2a2a2a;
    }
}

.book-image {
    max-width: 180px;
    width: 100%;
    display: block;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out 0.2s both;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.ebook-card h1 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideIn 0.5s ease-out 0.3s both;
}

.ebook-description {
    color: #ddd;
    font-size: 15px;
    max-width: 450px;
    margin: 0 auto 20px;
    line-height: 1.6;
    animation: slideIn 0.5s ease-out 0.35s both;
}

.ebook-card h2 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px;
    animation: slideIn 0.5s ease-out 0.4s both;
}

.ebook-card h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0;
    animation: slideIn 0.5s ease-out 0.45s both;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px auto 30px;
    max-width: 420px;
    text-align: left;
    animation: slideIn 0.5s ease-out 0.5s both;
    color: white;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 2.4em;
}

.features-list li::before {
    content: "✅";
    color: #00bfff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
}

.newsletter {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 40px;
    animation: slideIn 0.5s ease-out 0.55s both;
}

.newsletter iframe {
    border-radius: 5px;
    border: 1px solid #e5e7eb7a;
    background-color: transparent;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
    margin-bottom: 20px;
    animation: slideIn 0.5s ease-out 0.6s both;
}

.product {
    background-color: #111;
    border: 1px solid #444;
    padding: 15px;
    border-radius: 10px;
    flex: 1;
    min-width: 100px;
    max-width: 150px;
}

.about-us-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.about-us-icon {
    font-size: 1.5rem;
    color: white;
}

/* About Page Specific Styles */
.about-description {
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.product h2 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.promo-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    animation: slideIn 0.5s ease-out 0.65s both;
}

.ebook-card button {
    margin: 20px auto;
    padding: 15px 30px;
    background: white;
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
    transition: background-color 0.3s ease;
    animation: slideIn 0.5s ease-out 0.7s both;
}

.ebook-card button:hover {
    background: #dddddd;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Profile Header */
.profile-header {
    text-align: center;
    padding: 0 0 30px;
    background: #000000;
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    margin-top: 30px;
    object-fit: cover;
    border-radius: 100%;
    animation: scaleIn 0.5s ease-out 0.2s both;
    border: 3px solid #2a2a2a;
}

@media (min-width: 768px) {
    .profile-image {
        border-radius: 50%;
    }
}

.profile-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    padding: 0 30px;
    animation: slideIn 0.5s ease-out 0.3s both;
}

.bio-text {
    display: block;
    color: #888888;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 0 30px;
    animation: slideIn 0.5s ease-out 0.35s both;
}

.verified-badge {
    margin-top: 5px;
    width: 20px;
    height: 20px;
    color: #1DA1F2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Subscription Bar Styles */
.subscription-bar {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    animation: slideIn 0.5s ease-out 0.55s both;
}

.subscription-bar form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.subscription-bar input[type="email"] {
    flex: 0 0 70%;
    padding: 0 20px;
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    background: #111111;
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    height: 52px;
    line-height: 52px;
    box-sizing: border-box;
}

.subscription-bar input[type="email"]:focus {
    outline: none;
    border-color: white;
}

.subscription-bar input[type="email"]::placeholder {
    color: #666666;
}

.subscription-bar button[type="submit"] {
    flex: 1;
    padding: 0 20px;
    background: white;
    color: #000000;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    height: 52px;
    line-height: 52px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscription-bar button[type="submit"]:hover:not(:disabled) {
    background: #dddddd;
}

.subscription-bar button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.subscribe-message {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    animation: fadeIn 0.3s ease-out;
}

.subscribe-message.error {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.subscribe-message.success {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .subscription-bar form {
        flex-direction: column;
    }
    
    .subscription-bar input[type="email"] {
        flex: 1;
        width: 100%;
    }
    
    .subscription-bar button[type="submit"] {
        flex: 1;
        width: 100%;
    }
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 0px;
    margin-bottom: 0px;
    animation: slideIn 0.5s ease-out 0.5s both;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
    transform: scale(0.8);
}

.social-icon:hover {
    background: #2a2a2a;
    transform: translateY(-5px) scale(1.0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.social-icon img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* Content Area */
.content-area {
    padding: 30px;
    padding-top: 10px;
}

/* Action Cards */
.content-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.action-card {
    background-color: #111111;
    border: 1px solid #2a2a2a;
    padding: 20px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.action-card img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
    display: block;
}

.action-card-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 8px;
}

.action-card-description {
    color: #aaaaaa;
    font-size: 14px;
    margin-bottom: 15px;
}

.action-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #000000;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.action-card-btn:hover {
    background: #dddddd;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #111111;
    color: white;
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.action-btn:hover {
    background: #2a2a2a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.action-btn-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Branding */
.branding {
    text-align: center;
    color: #666666;
    font-size: 11px;
    font-weight: 500;
    padding: 15px 0;
    letter-spacing: 0.5px;

}





