:root {
    --primary-color: #ff4d8d;
    --secondary-color: #ff3377;
    --background-color: #1a1a2e;
    --text-color: #ffffff;
    --card-background: #2d2d2d;
    --message-background: #3a3a3a;
    --user-message-color: #ff4d8d;
    --bot-message-color: #ff3377;
    --nav-background: rgba(26, 26, 46, 0.95);
    --nav-border: rgba(255, 77, 141, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    background: linear-gradient(180deg, rgba(15, 15, 35, 1) 0%, rgba(26, 26, 46, 1) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Removed complex background overlays for unified look */

/* Removed unused background animation keyframes */

/* Removed header styles - no longer needed */

/* Chat Container */
.chat-container {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 70px; /* Account for fixed navbar */
}

/* Chat Window */
.chat-window {
    flex: 1;
    background: none;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    position: relative;
    height: calc(100vh - 120px); /* Account for navbar and input */
}

.messages {
    flex: 1;
    padding: 1rem;
    padding-bottom: 1rem; /* Reduced padding since input will hide */
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
    max-height: 100%;
    scroll-behavior: smooth;
    transition: padding-bottom 0.3s ease;
}

/* Add padding when input is visible */
.messages.input-visible {
    padding-bottom: calc(1rem + 120px);
}

.messages::-webkit-scrollbar {
    width: 8px;
}

.messages::-webkit-scrollbar-track {
    background: #2d2d2d;
    border-radius: 4px;
}

.messages::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
    border: 1px solid #333;
}

.messages::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Message Styles */
.message {
    max-width: 80%;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    position: relative;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: messageSlideIn 0.5s ease-out forwards;
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 77, 141, 0.2);
}

@keyframes messageSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.message-content > div:first-child > span {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    flex: 1;
    line-height: 1.6;
    color: #ffffff;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.message-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    clear: both;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Typewriter cursor animation */
.typewriter-cursor {
    animation: blink 1s infinite;
    color: var(--primary-color);
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Copy Button Styles */
.copy-button {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    flex-shrink: 0;
    min-width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    background: linear-gradient(135deg, #ff4d8d 0%, #ff3377 100%);
    border: 1px solid rgba(255, 77, 141, 0.4);
    box-shadow: 0 2px 8px rgba(255, 77, 141, 0.3);
    transform: translateX(0);
}

.copy-button:hover, .copy-button:active {
    opacity: 1;
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, #ff3377 0%, #ff4d8d 100%);
    box-shadow: 0 6px 20px rgba(255, 77, 141, 0.4);
}

.copy-button i {
    font-size: 0.9rem;
}

/* Copy button visibility */
.message.bot-message .copy-button {
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.message.bot-message:hover .copy-button {
    opacity: 1;
}

.message.bot-message .copy-button:hover {
    opacity: 1;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .copy-button {
        padding: 0.5rem;
        opacity: 0.9;
        background: linear-gradient(135deg, #ff4d8d 0%, #ff3377 100%);
        border: 1px solid rgba(255, 77, 141, 0.4);
        box-shadow: 0 2px 8px rgba(255, 77, 141, 0.3);
    }
    
    .copy-button:active {
        transform: scale(0.95);
        opacity: 1;
    }
    
    .message.bot-message .copy-button {
        opacity: 0.9;
    }
    
    .message.bot-message:hover .copy-button {
        opacity: 0.9;
    }
    
    .tts-button {
        padding: 0.5rem;
        opacity: 0.9;
        background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
        border: 1px solid rgba(76, 175, 80, 0.4);
        box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    }
    
    .tts-button:active {
        transform: scale(0.95);
        opacity: 1;
    }
    
    .message.bot-message .tts-button {
        opacity: 0.9;
    }
    
    .message.bot-message:hover .tts-button {
        opacity: 0.9;
    }
    

}

/* TTS Button Styles */
.tts-button {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    flex-shrink: 0;
    min-width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: 1px solid rgba(76, 175, 80, 0.4);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    transform: translateX(0);
}







.tts-button:hover, .tts-button:active {
    opacity: 1;
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.tts-button i {
    font-size: 0.9rem;
}

/* TTS button visibility */
.message.bot-message .tts-button {
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.message.bot-message:hover .tts-button {
    opacity: 1;
}

.message.bot-message .tts-button:hover {
    opacity: 1;
}

/* Clear History Button Styles */
.clear-history-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    background: linear-gradient(135deg, #ff416c 0%, #ff4757 100%);
    border: 1px solid rgba(255, 65, 108, 0.4);
    box-shadow: 
        0 4px 15px rgba(255, 65, 108, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.clear-history-btn i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.clear-history-btn:hover {
    background: linear-gradient(135deg, #ee5a6f 0%, #ff3742 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 65, 108, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.clear-history-btn:hover i {
    transform: rotate(180deg);
}

.message-content i {
    margin-top: 0.2rem;
}

.user-message {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(35, 35, 55, 0.9) 100%);
    border: 1px solid rgba(255, 77, 141, 0.3);
    margin-left: auto;
    color: #ffffff;
    box-shadow: 
        0 4px 15px rgba(255, 77, 141, 0.1),
        0 0 30px rgba(255, 51, 119, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    transition: all 0.3s ease;
}

.user-message:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(255, 77, 141, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bot-message {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(35, 35, 55, 0.9) 100%);
    border: 1px solid rgba(255, 51, 119, 0.3);
    margin-right: auto;
    color: #ffffff;
    box-shadow: 
        0 4px 15px rgba(255, 51, 119, 0.1),
        0 0 30px rgba(255, 77, 141, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    transition: all 0.3s ease;
}

.bot-message:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(255, 51, 119, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.message-time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    text-align: right;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bot-message .message-time {
    text-align: left;
    color: rgba(255, 255, 255, 0.6);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 77, 141, 0.1);
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    max-width: 120px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 77, 141, 0.2);
    box-shadow: 0 2px 8px rgba(255, 77, 141, 0.1);
    font-size: 0.85rem;
    font-weight: normal;
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(8px);
}

.typing-dots {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.typing-dots span {
    width: 4px;
    height: 4px;
    background: rgba(255, 77, 141, 0.6);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span {
    font-weight: normal;
    letter-spacing: 0.2px;
    font-size: 0.8rem;
}

@keyframes typing {
    0%, 80%, 100% { 
        transform: scale(0.8);
        opacity: 0.4;
    }
    40% { 
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Mobile-specific typing indicator styles */
@media (max-width: 768px) {
    .typing-indicator {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        max-width: 110px;
        gap: 0.4rem;
    }
    
    .typing-dots span {
        width: 3px;
        height: 3px;
    }
}

/* Chat Input Area */
.chat-input-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, #1a1a1a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 77, 141, 0.2);
    z-index: 100;
    /* Add padding for Safari mobile bottom bar */
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

/* Hidden state for input container */
.chat-input-container.hidden-input {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

/* Show input hint when hidden */
.scroll-hint {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 77, 141, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 101;
    transition: all 0.3s ease;
    transform: translateY(0) scale(1);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.3);
}

.scroll-hint.visible {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
}

.scroll-hint:hover {
    background: rgba(255, 77, 141, 1);
    transform: translateY(-12px) scale(1.1);
    cursor: pointer;
}

/* Mobile Safari specific adjustments */
@supports (-webkit-touch-callout: none) {
    .chat-input-container {
        /* Add extra padding for Safari mobile */
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px) + 60px);
    }
    
    /* Adjust messages container to prevent overlap */
    .messages-container {
        padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
    }
}

/* Update messages container padding */
.messages-container {
    padding: 1rem;
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Ensure the chat container takes full height */
.chat-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: -webkit-fill-available;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

/* Chat Input */
.chat-input {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(45, 45, 45, 0.7);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 77, 141, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(255, 77, 141, 0.1);
    transition: all 0.3s ease;
}

.chat-input:focus-within {
    border-color: rgba(255, 77, 141, 0.4);
    box-shadow: 
        0 4px 20px rgba(255, 77, 141, 0.2),
        0 0 40px rgba(255, 51, 119, 0.2);
    transform: translateY(-2px);
}

@keyframes headerGlow {
    0% { 
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.3),
            0 0 40px rgba(42, 82, 152, 0.2);
    }
    100% { 
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.3),
            0 0 60px rgba(42, 82, 152, 0.4);
    }
}

@keyframes inputGlow {
    0% { 
        box-shadow: 
            0 -4px 20px rgba(0, 0, 0, 0.3),
            0 0 40px rgba(42, 82, 152, 0.2);
    }
    100% { 
        box-shadow: 
            0 -4px 20px rgba(0, 0, 0, 0.3),
            0 0 60px rgba(42, 82, 152, 0.4);
    }
}

#messageInput {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.5rem;
    outline: none;
    resize: none;
    max-height: 120px;
    min-height: 24px;
    line-height: 1.5;
}

#messageInput::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

#sendButton {
    background: linear-gradient(135deg, #ff4d8d 0%, #ff3377 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 15px rgba(255, 77, 141, 0.3),
        0 0 30px rgba(255, 51, 119, 0.2);
}

#sendButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff3377 0%, #ff4d8d 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#sendButton:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 6px 20px rgba(255, 77, 141, 0.4),
        0 0 40px rgba(255, 51, 119, 0.3);
}

#sendButton:hover::before {
    opacity: 1;
}

#sendButton:active {
    transform: scale(0.95);
}

#sendButton i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

#sendButton:hover i {
    transform: translateX(2px);
}

/* Removed about and footer styles - no longer needed */

/* Responsive Design */
@media (max-width: 768px) {
    .chat-container {
        width: 100vw;
        height: 100vh;
        height: -webkit-fill-available; /* Better iOS support */
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .messages {
        padding-bottom: 1rem; /* Reduced for mobile since input will hide */
    }
    
    .messages.input-visible {
        padding-bottom: calc(1rem + 140px); /* Extra space for mobile input when visible */
    }
    
    .chat-input-container {
        padding: 1rem;
    }
    
    .message {
        max-width: 90%;
        padding: 0.8rem 1rem;
    }
    
    .chat-input {
        padding: 0.3rem;
    }
    
    #messageInput {
        padding: 0.8rem 1rem;
    }
    
    #sendButton {
        padding: 0.8rem 1rem;
        min-width: 45px;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* All unnecessary page elements removed - pure chat interface */

/* Clean, solid styling - no glass effects */

/* Payment Prompt */
.payment-prompt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.payment-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem 2rem 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    border: 1px solid rgba(255, 77, 141, 0.3);
    box-shadow: 
        0 4px 15px rgba(255, 77, 141, 0.2),
        0 0 30px rgba(255, 51, 119, 0.1);
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.promo-text {
    text-align: left;
    flex: 1;
}

.promo-text h4 {
    color: #fff;
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.promo-text p {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.3;
}

.promo-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.8);
}

.countdown-time {
    color: #fff;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pricing Information */
.pricing-info {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.original-price {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.discounted-price {
    color: #4CAF50;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.savings {
    color: #4CAF50;
    font-size: 0.8rem;
    font-weight: 500;
}

.payment-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.payment-button {
    background: linear-gradient(135deg, #ff4d8d 0%, #ff3377 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.3);
}

.payment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 141, 0.4);
}

.payment-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.3);
}

/* Mobile styles for payment prompt */
@media (max-width: 768px) {
    .payment-content {
        padding: 1.5rem;
        width: 85%;
    }
    
    .payment-content h3 {
        font-size: 1.3rem;
    }
    
    .payment-content p {
        font-size: 0.9rem;
    }
    
    .payment-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
    
    .payment-options {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .payment-option-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .promo-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    .promo-text {
        text-align: center;
    }
    
    .promo-text h4 {
        font-size: 1rem;
    }
    
    .promo-text p {
        font-size: 0.8rem;
    }
    
    .countdown-timer {
        justify-content: center;
        font-size: 0.7rem;
    }
    
    .countdown-time {
        font-size: 0.9rem;
    }
    
    .pricing-info {
        padding: 0.8rem;
    }
    
    .discounted-price {
        font-size: 1.1rem;
    }
}

.payment-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    text-align: center;
}

.payment-options {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-option-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.payment-option-btn:hover {
    background: rgba(255, 77, 141, 0.2);
    border-color: rgba(255, 77, 141, 0.4);
    color: #fff;
    transform: translateY(-1px);
}

.payment-option-btn:active {
    transform: translateY(0);
}

.payment-option-btn i {
    font-size: 0.9rem;
}

/* Stripe Payment Form Styles */
.stripe-payment {
    max-width: 500px;
    width: 95%;
}

.stripe-payment #payment-element {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stripe-payment .payment-button {
    width: 100%;
    margin-top: 1rem;
    position: relative;
}

.stripe-payment .spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.stripe-payment .hidden {
    display: none;
}

.stripe-payment #payment-message {
    color: #ff4444;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.payment-button.secondary {
    background: linear-gradient(135deg, #666 0%, #555 100%);
    margin-top: 0.5rem;
}

.payment-button.secondary:hover {
    background: linear-gradient(135deg, #555 0%, #444 100%);
}

/* Subscription management dialog styles */
.subscription-management-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.subscription-management-content {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a2e 100%);
    border: 2px solid rgba(255, 77, 141, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: dialogSlideIn 0.3s ease-out;
}

@keyframes dialogSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 77, 141, 0.2);
}

.subscription-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subscription-header h3 i {
    color: #ff4d8d;
}

.close-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 77, 141, 0.1);
    color: #ff4d8d;
}

.subscription-status {
    margin-bottom: 1.5rem;
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.status-badge.active {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.subscription-status p {
    color: #ccc;
    font-size: 0.9rem;
}

.subscription-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    color: #ccc;
    font-weight: 500;
}

.detail-item .value {
    color: #ffffff;
    font-weight: 600;
}

.subscription-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.action-btn {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.verify-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

.manage-btn {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.manage-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
}

.info-btn {
    background: linear-gradient(135deg, #ff4d8d 0%, #ff3377 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 77, 141, 0.3);
}

.info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 77, 141, 0.4);
}

.subscription-note {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 77, 141, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.subscription-note p {
    color: #ccc;
    font-size: 0.85rem;
    margin: 0;
}

.subscription-note i {
    color: #ff4d8d;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .subscription-management-content {
        padding: 1.5rem;
        margin: 1rem;
        max-height: 85vh;
    }
    
    .subscription-header h3 {
        font-size: 1.3rem;
    }
    
    .subscription-actions {
        gap: 0.5rem;
    }
    
    .action-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Navigation Bar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nav-background);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--nav-border);
    box-shadow: 0 2px 20px rgba(255, 77, 141, 0.2);
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.nav-link:hover {
    background: rgba(255, 77, 141, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.3);
}

/* Navigation Language Selector */
.nav-language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 10px;
    background: rgba(255, 77, 141, 0.05);
    border: 1px solid rgba(255, 77, 141, 0.1);
    transition: all 0.3s ease;
}

.nav-language-selector:hover {
    background: rgba(255, 77, 141, 0.1);
    border-color: rgba(255, 77, 141, 0.2);
}

.nav-language-selector span {
    color: var(--primary-color);
    font-size: 1rem;
}

.nav-language-selector select {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-language-selector select:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-language-selector select:focus {
    background: rgba(255, 255, 255, 0.15);
}

.nav-language-selector select option {
    background: var(--card-background);
    color: var(--text-color);
    padding: 0.5rem;
}

/* Navigation Clear History Button */
.nav-clear-history-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 77, 141, 0.1);
    border: 1px solid rgba(255, 77, 141, 0.2);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-clear-history-btn:hover {
    background: rgba(255, 77, 141, 0.2);
    border-color: rgba(255, 77, 141, 0.4);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-clear-history-btn i {
    font-size: 1rem;
}

.nav-stripe-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 179, 71, 0.2) 100%);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-stripe-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 179, 71, 0.3) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.nav-stripe-btn i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Hide hamburger menu on desktop */
.nav-toggle {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        padding: 0.8rem;
        background: rgba(255, 77, 141, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(255, 77, 141, 0.2);
        transition: all 0.3s ease;
        z-index: 2001;
    }
    
    .nav-toggle:hover {
        background: rgba(255, 77, 141, 0.2);
        border-color: rgba(255, 77, 141, 0.4);
    }
    
    /* Hamburger Menu Bars */
    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(10px);
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 4rem 0 2rem 0;
        gap: 1.5rem;
        border-top: none;
        z-index: 9999;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
    }
    
    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .nav-link {
        width: 90%;
        justify-content: center;
        padding: 1.2rem;
        margin: 0 auto;
        font-size: 1.2rem;
        background: rgba(255, 77, 141, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(255, 77, 141, 0.2);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 77, 141, 0.2);
        border-color: rgba(255, 77, 141, 0.4);
        transform: translateY(-2px);
    }
    
    .nav-link span {
        font-size: 1.2rem;
    }
    
    .nav-language-selector {
        width: 90%;
        justify-content: center;
        padding: 1.2rem;
        margin: 0 auto;
        background: rgba(255, 77, 141, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(255, 77, 141, 0.2);
    }
    
    .nav-language-selector select {
        font-size: 1.1rem;
        padding: 0.7rem;
        background: var(--card-background);
        color: white;
        border: 1px solid rgba(255, 77, 141, 0.3);
        border-radius: 8px;
    }
    
    .nav-clear-history-btn {
        width: 90%;
        justify-content: center;
        padding: 1.2rem;
        margin: 0 auto;
        font-size: 1.1rem;
        background: rgba(255, 77, 141, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(255, 77, 141, 0.2);
        transition: all 0.3s ease;
    }
    
    .nav-clear-history-btn:hover {
        background: rgba(255, 77, 141, 0.2);
        border-color: rgba(255, 77, 141, 0.4);
        transform: translateY(-2px);
    }
    
    .nav-clear-history-btn span {
        font-size: 1.2rem;
    }
    
    .nav-stripe-btn {
        width: 90%;
        justify-content: center;
        padding: 1.2rem;
        margin: 0 auto;
        font-size: 1.1rem;
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 179, 71, 0.2) 100%);
        border-radius: 12px;
        border: 1px solid rgba(255, 215, 0, 0.4);
        transition: all 0.3s ease;
        color: #ffd700;
        font-weight: 600;
    }
    
    .nav-stripe-btn:hover {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 179, 71, 0.3) 100%);
        border-color: rgba(255, 215, 0, 0.6);
        transform: translateY(-2px);
    }
    
    .nav-stripe-btn span {
        font-size: 1.2rem;
    }
    
    /* Hamburger Animation */
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Stories Page Styles */
.stories-main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    padding: 2rem 1rem;
    background: transparent;
}

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

.stories-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.1) 0%, rgba(255, 51, 119, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.stories-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stories-header h1 i {
    margin-right: 1rem;
}

.stories-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-card {
    background: var(--card-background);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 77, 141, 0.1);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 77, 141, 0.2);
    border-color: rgba(255, 77, 141, 0.3);
}

.story-image {
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.story-image i {
    font-size: 3rem;
    color: white;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.story-excerpt {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.story-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.story-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 77, 141, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
}

.story-meta i {
    font-size: 0.8rem;
}

.read-story-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-story-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 77, 141, 0.4);
}

.read-story-btn:active {
    transform: translateY(0);
}

.stories-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 77, 141, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 77, 141, 0.1);
}

.stories-footer p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.stories-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.stories-footer a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 77, 141, 0.1);
    border: 1px solid rgba(255, 77, 141, 0.2);
    border-radius: 10px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.social-link:hover {
    background: rgba(255, 77, 141, 0.2);
    border-color: rgba(255, 77, 141, 0.4);
    transform: translateY(-2px);
    color: var(--primary-color);
}

.social-link i {
    font-size: 1.2rem;
}

/* Mobile Responsive for Stories */
@media (max-width: 768px) {
    .stories-main {
        padding: 1rem;
    }
    
    .stories-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stories-header h1 {
        font-size: 2rem;
    }
    
    .stories-header p {
        font-size: 1rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-card {
        margin-bottom: 1rem;
    }
    
    .story-content {
        padding: 1rem;
    }
    
    .story-content h3 {
        font-size: 1.2rem;
    }
    
    .story-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        justify-content: center;
    }
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Prompt Examples Page Styles */
.prompts-main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    padding: 2rem 1rem;
    background: transparent;
}

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

.prompts-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.1) 0%, rgba(255, 51, 119, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.prompts-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.prompts-header h1 i {
    margin-right: 1rem;
}

.prompts-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 77, 141, 0.1);
    border: 1px solid rgba(255, 77, 141, 0.2);
    border-radius: 25px;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    background: rgba(255, 77, 141, 0.2);
    border-color: rgba(255, 77, 141, 0.4);
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.3);
}

.category-tab i {
    font-size: 1.1rem;
}

/* Prompt Categories */
.prompt-category {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.prompt-category.active {
    display: grid;
}

/* Prompt Cards */
.prompt-card {
    background: var(--card-background);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 77, 141, 0.1);
    display: flex;
    flex-direction: column;
}

.prompt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 77, 141, 0.2);
    border-color: rgba(255, 77, 141, 0.3);
}

.prompt-content {
    padding: 1.5rem;
    flex: 1;
}

.prompt-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.prompt-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.prompt-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.prompt-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 77, 141, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
}

.prompt-meta i {
    font-size: 0.8rem;
}

/* Copy Prompt Button */
.copy-prompt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-prompt-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 77, 141, 0.4);
}

.copy-prompt-btn:active {
    transform: translateY(0);
}

.copy-prompt-btn i {
    font-size: 1.1rem;
}

/* Prompts Footer */
.prompts-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 77, 141, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 77, 141, 0.1);
}

.prompts-footer p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.prompts-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.prompts-footer a:hover {
    color: var(--secondary-color);
}

/* Mobile Responsive for Prompts */
@media (max-width: 768px) {
    .prompts-main {
        padding: 1rem;
    }
    
    .prompts-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .prompts-header h1 {
        font-size: 2rem;
    }
    
    .prompts-header p {
        font-size: 1rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .category-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .category-tab span {
        display: none;
    }
    
    .prompt-category {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .prompt-card {
        margin-bottom: 1rem;
    }
    
    .prompt-content {
        padding: 1rem;
    }
    
    .prompt-content h3 {
        font-size: 1.2rem;
    }
    
    .prompt-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        justify-content: center;
    }
}

/* Recommended Reading Section */
.recommended-reading {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 77, 141, 0.3);
}

.recommended-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.recommended-container h2 {
    color: #ff4d8d;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.recommended-container > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.recommended-book-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 77, 141, 0.3);
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommended-book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 77, 141, 0.3);
}

.book-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff4d8d 0%, #ff3377 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.3);
}

.book-image i {
    font-size: 3rem;
    color: white;
}

.book-content {
    flex: 1;
    text-align: left;
}

.book-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.book-author {
    color: #ff4d8d;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.book-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.book-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.book-rating {
    color: #ffaa00;
    font-weight: 500;
}

.book-rating i {
    margin-right: 0.3rem;
}

.book-price {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
}

.book-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff4d8d 0%, #ff3377 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.3);
}

.book-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 141, 0.4);
    color: white;
    text-decoration: none;
}

.book-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .recommended-book-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .book-content {
        text-align: center;
    }
    
    .book-meta {
        justify-content: center;
    }
    
    .recommended-container {
        padding: 0 1rem;
    }
    
    .recommended-container h2 {
        font-size: 1.5rem;
    }
} 