@font-face {
    font-family: 'HeadingFont';
    src: url('toxigenesisbd.otf') format('opentype');
}
@font-face {
    font-family: 'BodyFont';
    src: url('monofontorg.otf') format('opentype');
}

:root { 
    --neon: #00f2ff; 
    --magenta: #ff00ea; 
    --bg: #02020a; 
    --card-bg: rgba(0,0,0,0.85);
    --text: #ffffff;
    --text-light: #aaa;
    --border: #333;
    --accent-gradient: linear-gradient(135deg, #00f2ff, #ff00ea);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #050510; }
::-webkit-scrollbar-thumb { 
    background: #222; 
    border-radius: 5px; 
    border: 2px solid #050510;
}
::-webkit-scrollbar-thumb:hover { background: var(--neon); }

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

body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'BodyFont', monospace; 
    line-height: 1.6;
    overflow-x: hidden;
}

#cursor {
    width: 15px; height: 15px; background: var(--neon);
    border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998;
    box-shadow: 0 0 15px var(--neon), 0 0 30px var(--neon);
    transition: transform 0.1s ease;
}

@media (max-width: 768px) {
    #cursor { display: none !important; }
}

#cursor.hover {
    transform: scale(1.8);
    background: var(--magenta);
    box-shadow: 0 0 30px var(--magenta), 0 0 60px var(--magenta);
    z-index: 9997;
}

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

.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--neon);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(2,2,10,0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.logo {
    font-family: 'HeadingFont', sans-serif;
    font-size: 1.8rem;
    color: var(--neon);
    text-decoration: none;
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite;
    z-index: 10001;
    cursor: pointer;
}

.logo .domain {
    font-size: 0.7rem;
    opacity: 0.7;
    font-family: monospace;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 5px var(--neon), 0 0 10px var(--neon); }
    50% { text-shadow: 0 0 20px var(--neon), 0 0 40px var(--neon); }
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    z-index: 10001;
    cursor: pointer;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon);
    transition: width 0.3s;
}

nav a:hover { color: var(--neon); }
nav a:hover::after { width: 100%; }

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 9999;
}

.hero h1 {
    font-family: 'HeadingFont', sans-serif;
    font-size: clamp(3rem, 12vw, 6rem);
    letter-spacing: 8px;
    color: var(--text);
    margin-bottom: 20px;
    animation: glitch 3s infinite, float 6s ease-in-out infinite;
    text-shadow: 4px 4px var(--magenta), 8px 8px rgba(0,242,255,0.3);
    position: relative;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-3px, 3px); }
    94% { transform: translate(3px, -3px); }
    96% { transform: translate(-3px, -3px); }
    98% { transform: translate(3px, 3px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero > p {
    max-width: 800px;
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.8;
}

.hero .funny-note {
    background: rgba(255,0,234,0.1);
    border: 1px solid var(--magenta);
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.5s both;
    font-size: 1rem;
    color: var(--magenta);
}

.cta-btn {
    padding: 20px 60px;
    background: transparent;
    border: 3px solid var(--neon);
    color: var(--neon);
    font-family: 'HeadingFont', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 5px;
    cursor: pointer !important;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.7s both, borderGlow 2s ease-in-out infinite;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 10000;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: var(--neon);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.cta-btn:hover { color: #000; }
.cta-btn:hover::before { width: 400px; height: 400px; }

@keyframes borderGlow {
    0%, 100% { border-color: var(--neon); box-shadow: 0 0 20px rgba(0,242,255,0.3); }
    50% { border-color: var(--magenta); box-shadow: 0 0 30px rgba(255,0,234,0.4); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.steps {
    display: flex;
    gap: 30px;
    margin-top: 80px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.step {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 30px 25px;
    border-radius: 12px;
    width: 220px;
    text-align: center;
    transition: all 0.4s;
    animation: float 4s ease-in-out infinite;
}

.step:nth-child(2) { animation-delay: 0.5s; }
.step:nth-child(3) { animation-delay: 1s; }
.step:nth-child(4) { animation-delay: 1.5s; }

.step:hover {
    border-color: var(--neon);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0,242,255,0.3);
}

.step-vip {
    border-color: #ffd700 !important;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 180, 0, 0.05)) !important;
}

.step-vip:hover {
    border-color: #ffd700 !important;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4) !important;
}

.step-vip .step-number {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.step-vip h3 {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.step-number {
    font-family: 'HeadingFont', sans-serif;
    font-size: 3rem;
    color: var(--neon);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

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

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.what-is {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.what-is h2 {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    font-size: 3rem;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out;
}

.secure-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 40px;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--neon);
    border-radius: 15px;
    margin: 30px auto;
    max-width: 350px;
}

.secure-badge svg {
    width: 35px;
    height: 35px;
}

.secure-badge span {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    font-size: 1.3rem;
}

.secure-badge p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.explanation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.explain-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 35px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.4s;
    animation: fadeInUp 1s ease-out;
}

.explain-card:nth-child(2) { animation-delay: 0.2s; }
.explain-card:nth-child(3) { animation-delay: 0.4s; }

.explain-card:hover {
    border-color: var(--neon);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,242,255,0.2);
}

.explain-card .emoji {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    animation: bounce 2s infinite;
}

.explain-card .emoji svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 5px var(--neon));
}

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

.explain-card h3 {
    color: var(--neon);
    font-family: 'HeadingFont', sans-serif;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.explain-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.form-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.form-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    padding: 50px;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    animation: borderGlow 3s ease-in-out infinite;
}

.form-card h2 {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.form-card .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

label {
    display: block;
    color: var(--neon);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-family: 'HeadingFont', sans-serif;
    animation: fadeInLeft 0.5s ease-out;
}

.textarea-btns {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.ai-btn-fixed {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 8px 15px;
    background: var(--neon);
    border: none;
    border-radius: 20px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'HeadingFont', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 242, 255, 0.3);
}

.ai-btn-fixed:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--neon);
}

.ai-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon);
}

.ai-modal-content {
    background: #050510;
    border: 1px solid var(--neon);
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.2);
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    padding-bottom: 15px;
}

.ai-avatar {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ai-header h2 {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    font-size: 1.4rem;
    margin: 0;
}

.ai-header p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

.ai-messages {
    height: 300px;
    overflow-y: auto;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-message {
    padding: 10px 15px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.5;
}

.ai-message.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.ai-message.user {
    align-self: flex-end;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--neon);
    color: var(--neon);
}

.ai-input-area {
    display: flex;
    gap: 10px;
}

.ai-input-area input {
    margin-bottom: 0;
    flex: 1;
}

.ai-mic-btn {
    width: 45px;
    background: transparent;
    border: 1px solid var(--magenta);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--magenta);
    transition: all 0.3s;
}

.ai-mic-btn:hover {
    background: rgba(255, 0, 234, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 234, 0.4);
}

.ai-mic-btn.recording {
    background: var(--magenta);
    color: #000;
    animation: micPulse 1.5s infinite;
}

@keyframes micPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 234, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 234, 0); }
}

.ai-send-btn {
    width: 50px;
    background: var(--neon);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s;
}

.ai-send-btn:hover {
    box-shadow: 0 0 15px var(--neon);
    transform: scale(1.05);
}

.ai-use-btn {
    background: linear-gradient(135deg, var(--magenta), #ff0055);
    border: none;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 0, 234, 0.3);
}

.ai-use-btn:hover {
    background: var(--magenta) !important;
    box-shadow: 0 0 30px var(--magenta) !important;
}

.ai-disclaimer {
    font-size: 0.7rem;
    color: #666;
    margin-top: 15px;
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .ai-btn { padding: 6px 10px; font-size: 0.7rem; }
    .ai-modal-content { padding: 20px; }
    .ai-messages { height: 250px; }
}

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

input, textarea {
    width: 100%; 
    background: rgba(255,255,255,0.05); 
    border: 1px solid var(--border);
    padding: 15px; 
    color: var(--text); 
    margin-bottom: 25px; 
    font-family: 'BodyFont';
    border-radius: 6px; 
    font-size: 1rem; 
    border-bottom: 3px solid var(--border);
    transition: all 0.3s;
}

input:focus, textarea:focus { 
    outline: none; 
    border-color: var(--neon);
    border-bottom-color: var(--neon);
    box-shadow: 0 5px 20px rgba(0,242,255,0.2);
    transform: translateY(-2px);
}

textarea { min-height: 130px; resize: vertical; }

.textarea-wrapper { position: relative; }
.textarea-wrapper textarea { padding-right: 140px; }

.textarea-wrapper .inspiration-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
}

@media (min-width: 769px) {
    .date-picker {
        padding: 15px 20px;
        font-size: 1.1rem;
        cursor: pointer;
    }
    
    .date-picker::-webkit-calendar-picker-indicator {
        filter: invert(1);
        cursor: pointer;
        margin-left: 10px;
    }
}

.disclaimer {
    font-size: 0.8rem; 
    color: var(--text-light); 
    margin-bottom: 25px;
    padding: 15px; 
    border: 1px dashed var(--border);
    background: rgba(255,0,0,0.03);
    line-height: 1.6;
    border-radius: 6px;
}

.disclaimer input { 
    width: auto; 
    margin-right: 10px; 
    margin-bottom: 0;
    cursor: pointer !important;
}

.disclaimer label {
    display: inline;
    color: var(--text-light);
    font-size: 0.8rem;
    letter-spacing: 0;
    cursor: pointer;
    animation: none;
}

.btn {
    padding: 18px 40px; 
    background: transparent; 
    border: 3px solid var(--neon);
    color: var(--neon); 
    font-family: 'HeadingFont', sans-serif; 
    font-size: 1.1rem;
    letter-spacing: 4px; 
    cursor: pointer !important;
    width: 100%;
    transition: all 0.4s;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0,242,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.btn:hover:not(:disabled) { 
    background: var(--neon); 
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,242,255,0.4);
}

.btn:hover:not(:disabled)::after { left: 100%; }

.btn:disabled { 
    border-color: var(--border); 
    color: var(--text-light); 
    cursor: not-allowed; 
}

.error-msg {
    color: #ff4444;
    font-size: 0.95rem;
    margin-top: 15px;
    display: none;
    text-align: center;
    animation: shake 0.5s ease-in-out;
}

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

.future-hint {
    display: none;
    background: rgba(0, 242, 255, 0.1); 
    border: 1px solid var(--neon);
    color: var(--neon); 
    padding: 15px; 
    margin-bottom: 20px; 
    font-size: 0.95rem;
    border-radius: 6px;
    animation: pulse 2s infinite;
}

.inspiration-display {
    background: rgba(255, 0, 234, 0.1);
    border: 1px dashed var(--magenta);
    color: var(--magenta);
    padding: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    border-radius: 6px;
    display: none;
    line-height: 1.6;
}

.inspiration-display.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.inspiration-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--magenta);
    color: var(--magenta);
    font-family: 'HeadingFont', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    animation: fadeInUp 0.5s ease-out;
}

.inspiration-btn:hover {
    background: var(--magenta);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 0, 234, 0.5);
}

.audio-section {
    background: rgba(255, 0, 234, 0.05);
    border: 1px dashed var(--magenta);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.audio-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'HeadingFont', sans-serif;
    font-size: 1rem;
    color: var(--text);
}

.beta-badge {
    background: var(--magenta);
    color: #000;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.audio-hint {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.record-btn-new {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--magenta);
    color: var(--magenta);
    font-family: 'HeadingFont', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.record-btn-new:hover {
    background: var(--magenta);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 0, 234, 0.5);
}

.recording-status-new {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    padding: 8px 15px;
    border-radius: 6px;
    animation: pulse 1s infinite;
}

.recording-dot {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

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

.recording-status-new #recording-timer {
    color: #ff4444;
    font-family: monospace;
    font-size: 0.9rem;
}

.stop-btn-new {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #ff4444;
    border: none;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-family: 'HeadingFont', sans-serif;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.stop-btn-new:hover {
    background: #ff6666;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.audio-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--neon);
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 15px;
    animation: fadeInUp 0.5s ease-out;
}

.audio-preview-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neon);
    font-size: 0.9rem;
}

.audio-preview .play-btn-new,
.audio-preview .delete-btn-new {
    background: transparent;
    border: 1px solid;
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-preview .play-btn-new {
    border-color: var(--neon);
    color: var(--neon);
}

.audio-preview .play-btn-new:hover {
    background: var(--neon);
    color: #000;
}

.audio-preview .delete-btn-new {
    border-color: #ff4444;
    color: #ff4444;
}

.audio-preview .delete-btn-new:hover {
    background: #ff4444;
    color: #000;
}

.success-section {
    display: none;
    padding: 100px 20px;
    text-align: center;
    min-height: 80vh;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.success-section h2 {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    font-size: 3rem;
    margin-bottom: 25px;
    animation: glitch 3s infinite;
}

.success-section p {
    color: var(--text-light);
    max-width: 700px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.share-buttons {
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
    justify-content: center;
    margin: 30px 0;
}

.share-buttons .share-btn {
    padding: 10px 14px; 
    background: rgba(255,255,255,0.05); 
    border: 1px solid var(--border);
    color: var(--text); 
    text-decoration: none; 
    font-size: 1.2rem;
    transition: all 0.3s;
    border-radius: 6px;
    cursor: pointer !important;
    min-width: 120px;
    text-align: center;
}

.share-btn:hover { 
    border-color: var(--neon); 
    color: var(--neon); 
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,242,255,0.3);
}

.why-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-section h2 {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    font-size: 3rem;
    margin-bottom: 50px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature {
    padding: 40px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.4s;
    animation: fadeInUp 1s ease-out;
}

.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.4s; }

.feature:hover {
    border-color: var(--neon);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,242,255,0.2);
}

.feature .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.feature .icon svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 8px var(--neon));
}

.feature h3 {
    color: var(--neon);
    font-family: 'HeadingFont', sans-serif;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-section h2 {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease-out;
}

.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.3s; }
.faq-item:nth-child(5) { animation-delay: 0.4s; }
.faq-item:nth-child(6) { animation-delay: 0.5s; }

.faq-item:hover {
    border-color: var(--neon);
    transform: translateX(5px);
}

.faq-item h3 {
    color: var(--text);
    font-family: 'HeadingFont', sans-serif;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

footer {
    border-top: 2px solid var(--border);
    padding: 60px 20px 30px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-section h3 {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p, .footer-section a {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.footer-section a:hover { color: var(--neon); }

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
}

#copy-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon);
    color: #000;
    padding: 15px 30px;
    font-family: 'HeadingFont', sans-serif;
    font-size: 0.9rem;
    border-radius: 8px;
    display: none;
    z-index: 10001;
    box-shadow: 0 5px 20px rgba(0,242,255,0.4);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.terms-modal-content {
    background: var(--card-bg);
    border: 2px solid var(--neon);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: borderGlow 3s ease-in-out infinite;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover { color: var(--magenta); }

.terms-modal-content h2 {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 2px;
}

.modal-body {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.95rem;
}

.modal-body h3 {
    color: var(--neon);
    font-family: 'HeadingFont', sans-serif;
    margin: 25px 0 10px 0;
    font-size: 1.1rem;
}

.modal-body p { margin-bottom: 15px; }
.modal-body ul { margin-left: 20px; margin-bottom: 15px; }
.modal-body li { margin-bottom: 8px; color: var(--text-light); }
.modal-body strong { color: var(--magenta); }

.terms-modal-content .btn {
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 20px;
}

@media (max-width: 768px) {
    #cursor { display: none !important; }
    .particle { display: none; }
    .hero h1 { animation: none !important; }
    .step { animation: none !important; }
    .explain-card { animation: none !important; }
    .feature { animation: none !important; }
    .faq-item { animation: none !important; }
    
    header { padding: 12px 15px; flex-wrap: wrap; }
    .logo { font-size: 1.2rem !important; }
    .logo .domain { display: none; }
    nav { width: 100%; display: flex; justify-content: center; margin-top: 10px; }
    nav a { margin-left: 10px; font-size: 0.75rem; }
    .hero { padding: 100px 15px 40px; min-height: auto; }
    .hero h1 { font-size: clamp(2rem, 10vw, 3rem); letter-spacing: 2px; margin-bottom: 15px; }
    .hero > p { font-size: 1rem; line-height: 1.6; }
    .funny-note { padding: 12px 15px; font-size: 0.9rem; margin-bottom: 20px; }
    .cta-btn { padding: 15px 30px; font-size: 1rem; }
    .steps { flex-direction: column; align-items: center; gap: 20px; margin-top: 40px; }
    .step { width: 100%; max-width: 320px; padding: 20px 15px; }
    .step-number { font-size: 2rem; }
    .step h3 { font-size: 1rem; }
    .step p { font-size: 0.85rem; }
    .what-is { padding: 60px 15px; }
    .what-is h2 { font-size: 1.8rem; }
    .explanation-grid { grid-template-columns: 1fr; gap: 20px; }
    .explain-card { padding: 25px 15px; }
    .form-section { padding: 60px 15px; }
    .form-card { padding: 25px 15px; border-radius: 8px; }
    .form-card h2 { font-size: 1.5rem; }
    input, textarea { padding: 12px; font-size: 1rem; }
    .btn { padding: 15px 25px; font-size: 1rem; }
    .why-section { padding: 60px 15px; }
    .why-section h2 { font-size: 1.8rem; }
    .features { grid-template-columns: 1fr; gap: 20px; }
    .feature { padding: 25px 15px; }
    .faq-section { padding: 60px 15px; }
    .faq-section h2 { font-size: 1.8rem; }
    .faq-item { padding: 20px 15px; }
    .faq-item h3 { font-size: 1rem; }
    .faq-item p { font-size: 0.9rem; }
    footer { padding: 40px 15px 20px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .footer-section h3 { font-size: 1.1rem; }
    .terms-modal-content { padding: 25px 20px; }
    .terms-modal-content h2 { font-size: 1.4rem; }
    .modal-body { font-size: 0.9rem; }
    .success-section { padding: 60px 15px; }
    .success-section h2 { font-size: 2rem; }
    .success-section p { font-size: 1rem; }
}

.inspiration-section-gallery {
    padding: 100px 20px;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.inspiration-section-gallery h2 {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    font-size: 3rem;
    margin-bottom: 15px;
}

.inspiration-section-gallery .subtitle {
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.inspiration-grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 10px;
}

.idea-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 242, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    min-height: 180px;
}

.idea-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon);
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.15);
}

.idea-card p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    margin: 0;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--neon), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.idea-card:hover .card-glow {
    opacity: 0.05;
}

.cta-btn.small {
    padding: 12px 30px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .inspiration-section-gallery { padding: 60px 15px; }
    .inspiration-section-gallery h2 { font-size: 2rem; }
    .inspiration-grid-gallery { grid-template-columns: 1fr; gap: 20px; }
    .idea-card { min-height: auto; padding: 25px; }
}

section { scroll-margin-top: 100px; }

.instagram-section {
    padding: 100px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.instagram-section h2 {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    font-size: 3rem;
    margin-bottom: 20px;
}

.instagram-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-feed-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.insta-post-wrapper {
    flex: 0 1 320px;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.insta-post-wrapper:hover {
    transform: translateY(-5px);
}

.insta-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--neon);
    color: var(--neon);
    text-decoration: none;
    font-family: 'HeadingFont', sans-serif;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 20px;
}

.insta-cta:hover {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 25px var(--neon);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .instagram-section { padding: 60px 15px; }
    .instagram-section h2 { font-size: 2rem; }
    .instagram-feed-container { gap: 10px; }
    .insta-cta { font-size: 1rem; padding: 12px 25px; }
}

.insta-post-card {
    flex: 0 1 280px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    background: #000;
    transition: all 0.4s;
}

.insta-post-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.4);
}

.insta-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.insta-media-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.insta-media-container img, 
.insta-media-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}

.insta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 242, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.insta-post-card:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay svg {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.8));
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(2, 2, 10, 0.95);
    border: 1px solid var(--neon);
    padding: 20px;
    border-radius: 12px;
    z-index: 100002;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--neon);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'HeadingFont', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: var(--neon);
    border: none;
    color: #000;
}

.cookie-btn.decline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-light);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px var(--neon);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.content-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.content-section h2 {
    font-family: 'HeadingFont', sans-serif;
    color: var(--neon);
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.content-section p { margin-bottom: 20px; }
.content-section ul { margin-left: 30px; margin-bottom: 20px; }
.content-section li { margin-bottom: 10px; }

.seo-content {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.launch-btn {
    display: block !important;
    width: 100% !important;
    padding: 18px 30px !important;
    background: linear-gradient(135deg, #00f2ff, #0088ff) !important;
    border: none !important;
    border-radius: 12px !important;
    color: #000 !important;
    font-family: 'HeadingFont', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    margin-top: 20px !important;
    box-shadow: 0 4px 15px rgba(0,242,255,0.4) !important;
}

.launch-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(0,242,255,0.6) !important;
}

.launch-btn:active {
    transform: translateY(0) !important;
}

.launch-btn:disabled {
    background: #666 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.record-btn-new, .stop-btn-new, .play-btn-new, .delete-btn-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    background: transparent;
    border: 2px solid var(--neon);
    color: var(--neon);
    font-family: 'HeadingFont', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.record-btn-new:hover, .stop-btn-new:hover, .play-btn-new:hover, .delete-btn-new:hover {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 15px var(--neon);
}

.record-btn-new svg, .stop-btn-new svg, .play-btn-new svg, .delete-btn-new svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.audio-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0,242,255,0.1);
    border: 1px solid var(--neon);
    border-radius: 8px;
    margin-top: 10px;
}

.audio-preview-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.success-card {
    background: var(--card-bg);
    border: 2px solid var(--neon);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(0,242,255,0.3);
    animation: borderGlow 3s ease-in-out infinite;
}

.success-icon {
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out infinite;
}

.success-card h2 {
    font-family: 'HeadingFont', sans-serif;
    font-size: 2rem;
    color: var(--neon);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.success-message {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 15px;
}

.success-date {
    font-size: 1.2rem;
    color: var(--neon);
    font-weight: bold;
    margin-bottom: 25px;
}

.success-note {
    background: rgba(0,242,255,0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.success-note p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

.success-card .btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--neon);
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'HeadingFont', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.success-card .btn:hover {
    box-shadow: 0 0 20px var(--neon);
    transform: translateY(-2px);
}

.share-buttons {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,242,255,0.2);
}

.share-text {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    border: 2px solid var(--neon) !important;
    color: var(--neon) !important;
    text-decoration: none !important;
    transition: all 0.3s !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
}

.social-btn span {
    display: inline !important;
    line-height: 1 !important;
}

.social-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0,242,255,0.4) !important;
}

.social-btn.facebook:hover {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
    color: #fff !important;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    border-color: #bc1888 !important;
    color: #fff !important;
}

.social-btn.twitter:hover {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

.social-btn.email:hover {
    background: var(--neon) !important;
    color: #fff !important;
}

.social-btn.copy:hover {
    background: var(--neon) !important;
    color: #fff !important;
}

/* GEO optimization classes */
.geo-summary {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ccc;
    padding: 15px;
    background: rgba(0,242,255,0.05);
    border-radius: 8px;
    border-left: 3px solid var(--neon);
}

.geo-citation {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
    padding: 10px 15px;
    margin-top: 20px;
    background: rgba(0,242,255,0.03);
    border-radius: 6px;
}