/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Root Variables */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #fd79a8;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-light: #ffffff;
    --text-muted: #8892b0;
    --mystery-purple: #2d3436;
    --neon-blue: #00cec9;
    --neon-pink: #fd79a8;
    --shadow-color: rgba(108, 92, 231, 0.3);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    border: 2px solid var(--darker-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
}

::-webkit-scrollbar-corner {
    background: var(--darker-bg);
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--darker-bg);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
}

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

/* Particle Background */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}





/* Navigation Styles */
.custom-navbar {
    background: transparent;
    padding: 15px 0;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.custom-navbar .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.nav-pill-container {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 8px 30px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    box-shadow: 0 8px 32px rgba(108, 92, 231, 0.2);
    display: flex;
    gap: 15px;
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
}



.nav-link {
    color: var(--text-muted) !important;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    white-space: nowrap;
    z-index: 2;
}

.nav-link:hover {
    color: var(--text-light) !important;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.3), rgba(162, 155, 254, 0.3));
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
    transform: translateY(-2px) scale(1.05);
}

.nav-link.active {
    color: var(--text-light) !important;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 25px var(--shadow-color);
    transform: translateY(-2px) scale(1.1);
    text-shadow: 0 0 15px var(--neon-blue);
}

.nav-link i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-link.active i {
    transform: rotate(360deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.hero-image-container {
    padding-left: 30px;
}

.mystery-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    opacity: 0.1;
    animation: mysteryPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes mysteryPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.3; }
}

/* Glitch Effect */
.glitch {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue), var(--primary-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradientText 3s ease infinite, glitchShake 0.3s infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glitchShake {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitchTop 0.3s infinite;
    color: var(--neon-blue);
    z-index: -1;
}

.glitch::after {
    animation: glitchBottom 0.3s infinite;
    color: var(--neon-pink);
    z-index: -2;
}

@keyframes glitchTop {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, -2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitchBottom {
    0% { transform: translate(0); }
    20% { transform: translate(2px, 2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, 2px); }
    100% { transform: translate(0); }
}

.hero-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 400;
}

/* Mysterious Buttons */
.mysterious-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.mysterious-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.mysterious-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mysterious-btn:hover::before {
    left: 100%;
}

.mysterious-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mysterious-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    opacity: 0.2;
    animation: imageGlow 6s ease-in-out infinite;
    z-index: -1;
}

@keyframes imageGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.4; }
}

.hero-image {
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
    z-index: 1;
    max-width: 400px;
    height: auto;
}

.hero-image:hover {
    transform: scale(1.05);
}





/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 24px;
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Gallery Section */
.gallery-section {
    background: transparent;
    position: relative;
    z-index: 1;
}

.gallery-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.gallery-title .glitch {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.gallery-card {
    background: rgba(20, 20, 40, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
    border-color: rgba(108, 92, 231, 0.5);
}

.card-image-container {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--mystery-purple), var(--dark-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

.card-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--neon-pink);
    font-size: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 2;
}

.card-heart:hover {
    color: #ff6b9d;
    opacity: 1;
    transform: scale(1.2);
}

.placeholder-image {
    text-align: center;
    color: var(--text-muted);
    opacity: 0.5;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.placeholder-image p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

/* AI Image Generation Section */
.generator-section {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(162, 155, 254, 0.05) 100%);
    position: relative;
    z-index: 1;
}

.generator-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.generator-title .glitch {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.generator-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.image-container {
    background: rgba(20, 20, 40, 0.9);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(108, 92, 231, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}

.image-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 15px 20px;
    text-align: center;
}

.image-header h4 {
    margin: 0;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.image-wrapper {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mystery-purple), var(--dark-bg));
    overflow: hidden;
}

.generated-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.generated-image:hover {
    transform: scale(1.05);
}

.placeholder-container {
    text-align: center;
    color: var(--text-muted);
    opacity: 0.6;
}

.placeholder-container i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    animation: magicPulse 2s ease-in-out infinite;
}

@keyframes magicPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.placeholder-container p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.image-label {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.loading-spinner {
    text-align: center;
    color: var(--text-light);
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(108, 92, 231, 0.3);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-muted);
}

.prompt-container {
    background: rgba(20, 20, 40, 0.9);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.prompt-header {
    margin-bottom: 20px;
    text-align: center;
}

.prompt-header h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prompt-hint {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.prompt-input-group {
    position: relative;
    margin-bottom: 25px;
}

.prompt-input {
    width: 100%;
    background: rgba(10, 10, 20, 0.8);
    border: 2px solid rgba(108, 92, 231, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--text-light);
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.prompt-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
    background: rgba(10, 10, 20, 0.9);
}

.prompt-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.char-counter {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    pointer-events: none;
}

.prompt-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.generate-btn {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(253, 121, 168, 0.4);
    min-width: 200px;
}

.generate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 121, 168, 0.6);
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
}

.generate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.download-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 13px 33px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    min-width: 150px;
}

.download-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
}

.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .glitch {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .nav-pill-container {
        flex-wrap: nowrap;
        gap: 5px;
        padding: 8px 15px;
        max-width: 95%;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        margin: 0 auto;
    }
    
    .nav-pill-container::-webkit-scrollbar {
        display: none;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 12px;
        min-width: fit-content;
        flex-shrink: 0;
    }
    
    .nav-link span {
        display: none;
    }
    
    .nav-link i {
        font-size: 16px;
    }
    
    .nav-active-indicator {
        top: 8px;
        height: calc(100% - 16px);
    }
    
    .mysterious-btn,
    .mysterious-btn-outline {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    .hero-content {
        padding-right: 15px;
        margin-bottom: 30px;
    }
    
    .hero-image-container {
        padding-left: 15px;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-title .glitch {
        font-size: 2rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .card-image-container {
        height: 250px;
        padding: 8px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .generator-title {
        font-size: 2rem;
    }
    
    .generator-title .glitch {
        font-size: 2rem;
    }
    
    .generator-subtitle {
        font-size: 1rem;
    }
    
    .image-wrapper {
        height: 300px;
    }
    
    .prompt-container {
        padding: 20px;
    }
    
    .prompt-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .generate-btn,
    .download-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .glitch {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-pill-container {
        padding: 10px 15px;
        flex-direction: row;
        gap: 3px;
        border-radius: 30px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
    }
    
    .nav-pill-container::-webkit-scrollbar {
        display: none;
    }
    
    .nav-link {
        padding: 10px;
        font-size: 11px;
        min-width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 50%;
    }
    
    .nav-link i {
        font-size: 18px;
    }
    
    .nav-active-indicator {
        top: 10px;
        height: calc(100% - 20px);
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-content {
        padding-right: 10px;
        margin-bottom: 20px;
    }
    
    .hero-image-container {
        padding-left: 10px;
    }
    
    .hero-image {
        max-width: 250px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-title .glitch {
        font-size: 1.8rem;
    }
    
    .gallery-subtitle {
        font-size: 0.9rem;
    }
    
    .card-image-container {
        height: 180px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }
    
    .generator-title {
        font-size: 1.8rem;
    }
    
    .generator-title .glitch {
        font-size: 1.8rem;
    }
    
    .generator-subtitle {
        font-size: 0.9rem;
    }
    
    .image-wrapper {
        height: 250px;
    }
    
    .prompt-container {
        padding: 15px;
    }
    
    .prompt-input {
        font-size: 0.9rem;
        min-height: 100px;
    }
    
    .generate-btn,
    .download-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* About Section */
.about-section {
    background: transparent;
    position: relative;
    z-index: 1;
}

.about-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-title .glitch {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.feature-item span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Discover Section */
.discover-section {
    background: transparent;
    position: relative;
    z-index: 1;
}

.discover-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.discover-title .glitch {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discover-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.discover-card {
    background: rgba(20, 20, 40, 0.8);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.discover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
    border-color: rgba(108, 92, 231, 0.5);
}

.discover-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.discover-card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.discover-card-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contract Section */
.contract-section {
    background: transparent;
    position: relative;
    z-index: 1;
}

.contract-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contract-title .glitch {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contract-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.contract-container {
    background: rgba(20, 20, 40, 0.8);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contract-address h4 {
    font-family: 'Orbitron', monospace;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contract-address-box {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    position: relative;
}

.contract-text {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-light);
    background: none;
    word-break: break-all;
    line-height: 1.4;
    display: block;
    font-weight: 500;
}

.coming-soon {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
}

.contract-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Community Section */
.community-section {
    background: transparent;
    position: relative;
    z-index: 1;
}

.community-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.community-title .glitch {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.social-card {
    background: rgba(20, 20, 40, 0.8);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
    border-color: rgba(108, 92, 231, 0.5);
}

.social-icon {
    margin-bottom: 20px;
}

.social-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-card:hover .social-img {
    transform: scale(1.1);
}

.social-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.social-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
    border-radius: 25px;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    border-top: 1px solid rgba(108, 92, 231, 0.2);
}

.footer-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.footer-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.footer-disclaimer {
    max-width: 600px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
    
    .feature-item {
        font-size: 1rem;
        margin-bottom: 12px;
        padding: 10px 0;
    }
    
    .feature-item i {
        font-size: 1.1rem;
    }
    
    .discover-title,
    .contract-title,
    .community-title {
        font-size: 2rem;
    }
    
    .contract-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contract-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .social-card {
        margin-bottom: 20px;
    }
    
    .contract-text {
        font-size: 0.9rem;
    }
    
    .contract-address-box {
        padding: 12px;
    }
    
    .usage-counter {
        margin-bottom: 20px;
    }
    
    .usage-info {
        font-size: 14px;
    }
    
    .usage-reset {
        font-size: 12px;
        margin-left: 5px;
    }
    
    .usage-progress {
        margin-top: 12px;
    }
    
    .progress-text {
        font-size: 0.8rem;
    }
    

}

/* Usage Counter Styles */
.usage-counter {
    background: rgba(20, 20, 40, 0.6);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.usage-info {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    flex-wrap: wrap;
    gap: 8px;
}

.usage-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.usage-info span {
    font-weight: 600;
    color: var(--text-light);
}

.usage-reset {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
    font-style: italic;
}

/* Usage Progress Bar */
.usage-progress {
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 0.3s ease, background 0.3s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
}

.progress-text span {
    color: var(--text-light);
    font-weight: 600;
}

/* Generate button limit reached state */
.generate-btn.limit-reached {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    opacity: 0.6;
    cursor: not-allowed;
}

.generate-btn.limit-reached:hover {
    transform: none;
    box-shadow: none;
}

/* Active Navigation Indicator */
.nav-active-indicator {
    position: absolute;
    top: 8px;
    height: calc(100% - 16px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}



/* Enhanced Navigation Effects */
.custom-navbar {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-pill-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(162, 155, 254, 0.1));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-pill-container:hover::after {
    opacity: 1;
}

/* Extra small screens - improve navbar touch targets */
@media (max-width: 360px) {
    .nav-pill-container {
        padding: 8px 10px;
        gap: 2px;
        max-width: 320px;
    }
    
    .nav-link {
        min-width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .nav-link i {
        font-size: 16px;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .custom-navbar .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .custom-navbar {
        padding: 10px 0;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
} 