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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #0a0a0a;
    color: #ffffff;
    letter-spacing: 0.025em;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.nav-brand .logo {
    height: 40px;
    width: auto;
    filter: invert(1) brightness(1.1);
    transition: filter 0.3s ease;
}

.nav-brand .logo:hover {
    filter: invert(1) brightness(1.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #667eea;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 2rem;
    z-index: 2;
}

#home .hero-content h2 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #e7e7e7;
    background: none;
    background-color: transparent;
    -webkit-text-fill-color: #e7e7e7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin: 1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-around;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.plugin-showcase {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 650px;
}

.plugin-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plugin-img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 100px rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-purchase {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    flex: 1;
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 153, 142, 0.4);
}

.btn-trial {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex: 1;
}

.btn-trial:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.plugin-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 1rem auto 0;
}

/* Plugins Section */
.plugins {
    background: #111;
}

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

.plugin-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #333;
}

.plugin-image > img {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plugin-image > img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(102, 126, 234, 0.3);
}

.plugin-title {
    font-family: 'Share Tech Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px;
}

.plugin-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 10px;
}

.plugin-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.plugin-info {
    padding: 2rem;
}

.plugin-info h3 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.plugin-info p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Pricing Container */
.pricing-container {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(102, 126, 234, 0.08) 100%);
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    text-align: center;
}

.price-original-strike {
    font-size: 1.3rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.price-discount-large {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    margin-bottom: 1rem;
    line-height: 1;
}

.discount-badge {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-text {
    font-size: 0.75rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-code {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(102, 126, 234, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    letter-spacing: 2px;
    border: 1px solid rgba(102, 126, 234, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.badge-code:hover {
    background: rgba(102, 126, 234, 0.5);
    border-color: rgba(102, 126, 234, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.badge-code:active {
    transform: translateY(0);
}

.badge-code.copied {
    background: rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.6);
    animation: copied-pulse 0.6s ease-out;
}

@keyframes copied-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.badge-savings {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
    text-transform: uppercase;
}

/* Clickable Code Styles */
.clickable-code {
    position: relative;
}

.clickable-code::after {
    content: '📋 Click to copy';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'Roboto', sans-serif;
    letter-spacing: normal;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.clickable-code:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

.platform-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
    text-align: center;
}

/* Demos Section */
.demos {
    background: #0a0a0a;
}

.demos-intro {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demos-description {
    text-align: left;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.demo-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-comparison {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.demo-comparison-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: left;
}

.demo-go-tutorial {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.3rem;
    color: #ffffff;
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

.demo-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.demo-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-item audio {
    width: 100%;
}

.demo-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-self: self-end;
}

.youtube-tutorials {
    display: block;
    place-self: center;
    max-width: 560px;
    width: -webkit-fill-available;
}

/* About Section */
.about {
    background: #111;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cccccc;
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature h4 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature p {
    color: #cccccc;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
}

.contact-simple {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.email-display {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.email-display:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}

.email-link {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.email-link:hover {
    color: #667eea;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #111;
    border-top: 1px solid #333;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: invert(1) brightness(0.9);
}

.footer-brand p {
    color: #cccccc;
}

.footer-links h4,
.footer-legal h4 {
    font-family: 'Share Tech Mono', monospace;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links a,
.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 2rem 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .plugin-showcase {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 2rem;
        max-width: 100%;
    }

    .plugin-img {
        max-width: 350px;
    }

    .plugin-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }

    .demo-pair {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .demo-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .demo-comparison {
        padding: 1.5rem;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

/* Navigation Mobile Styles */
.nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1rem 2rem;
    border-top: 1px solid #333;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Loading and Animation States */
.demo-item.loading::after {
    content: "Loading...";
    display: block;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.animate {
    animation: slideInUp 0.6s ease-out;
}

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }

    .plugin-info {
        padding: 1.5rem;
    }

    .price-discount-large {
        font-size: 2.5rem;
    }

    .badge-code {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .pricing-container {
        padding: 1rem;
    }

    .clickable-code::after {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.plugin-card,
.demo-item,
.feature {
    animation: fadeIn 0.6s ease-out;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}