/* OG-MYST Network - Professional Business Styling */
/* Enhanced with OG-PvP Network Theme & Modern Features */

:root {
    /* OG-PvP Core Color Scheme */
    --og-bg-color: #030712;
    --og-card-bg: #1f2937;
    --og-border-color: rgba(129, 140, 153, 0.2);
    --og-accent-color: #e11d48;
    --og-accent-hover: #be123c;
    --og-glow-color: rgba(225, 29, 72, 0.5);
    --og-text-primary: #f5f5f5;
    --og-text-secondary: #d1d5db;
    --og-text-muted: #9ca3af;

    /* Additional Network Colors */
    --og-success: #22c55e;
    --og-warning: #f59e0b;
    --og-error: #ef4444;
    --og-info: #3b82f6;

    /* RGB versions for opacity control */
    --og-accent-rgb: 225, 29, 72;
    --og-bg-rgb: 3, 7, 18;
    --og-card-rgb: 31, 41, 55;

    /* Spacing and sizing */
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --border-radius-lg: 16px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(225, 29, 72, 0.3);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--og-bg-color) 0%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(225, 29, 72, 0.1);
    border-radius: 50%;
    border-top-color: var(--og-accent-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

.loading-text {
    color: var(--og-text-primary);
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--og-bg-color);
    color: var(--og-text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--og-border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
    height: var(--header-height);
}

.nav-bar.scrolled {
    background: rgba(3, 7, 18, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-bar.nav-hidden {
    transform: translateY(-100%);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav-brand h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--og-accent-color);
    text-shadow: 0 0 20px var(--og-glow-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--og-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--og-accent-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--og-accent-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

/* Main dropdown chevron rotates down when hovered */
.nav-dropdown:hover .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Submenu chevron stays pointing right */
.nav-sub-dropdown .dropdown-toggle i.fa-chevron-right {
    transform: rotate(0deg) !important;
    margin-left: auto;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(225, 29, 72, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--og-text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(225, 29, 72, 0.15);
    color: var(--og-accent-color);
    transform: translateX(8px);
}

/* Submenu styles */
.nav-sub-dropdown {
    position: relative;
}

.dropdown-submenu {
    position: absolute;
    top: -8px;
    left: calc(100% + 8px);
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-15px);
    transition: var(--transition-smooth);
    z-index: 1001;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.nav-sub-dropdown:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.dropdown-submenu .dropdown-item:hover {
    transform: translateX(5px);
}

/* MYST Logo in navigation */
.nav-myst-logo {
    width: 16px;
    height: 16px;
    filter: brightness(0.8);
    transition: var(--transition-smooth);
}

.dropdown-item:hover .nav-myst-logo {
    filter: brightness(1) drop-shadow(0 0 5px var(--og-glow-color));
}

/* Coming Soon Styles */
.coming-soon {
    position: relative;
    cursor: not-allowed;
    opacity: 0.6;
}

.coming-soon-badge {
    background: linear-gradient(45deg, var(--og-accent-color), #f97316);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    font-weight: 600;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.5);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(225, 29, 72, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(225, 29, 72, 0.8);
        transform: scale(1.05);
    }
}

.nav-item {
    display: flex;
    align-items: center;
}

/* Custom Tooltip Styles */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(15px);
    color: var(--og-text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1002;
    border: 1px solid rgba(225, 29, 72, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(225, 29, 72, 0.1);
}

[data-tooltip]:after {
    content: '';
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(31, 41, 55, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1003;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Alternative positioning for elements that might overflow */
[data-tooltip].tooltip-top:before {
    bottom: calc(100% + 12px);
    top: auto;
    transform: translateX(-50%) translateY(-5px);
}

[data-tooltip].tooltip-top:after {
    bottom: calc(100% + 6px);
    top: auto;
    border-bottom: none;
    border-top: 6px solid rgba(31, 41, 55, 0.98);
}

[data-tooltip].tooltip-top:hover:before,
[data-tooltip].tooltip-top:hover:after {
    transform: translateX(-50%) translateY(0);
}

[data-tooltip].tooltip-bottom:before {
    top: calc(100% + 12px);
    bottom: auto;
}

[data-tooltip].tooltip-bottom:after {
    top: calc(100% + 6px);
    bottom: auto;
    border-top: none;
    border-bottom: 6px solid rgba(31, 41, 55, 0.98);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--og-bg-color) 0%, #0f172a 50%, #1e293b 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(225, 29, 72, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo-img {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--og-glow-color));
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition: none !important;
    display: block;
    margin: 0 auto;
}

/* Ensure logo loads properly */
.hero-logo-img[src] {
    opacity: 1;
    visibility: visible;
}

/* Fallback for slow loading */
.hero-logo-img:not([src]) {
    background: linear-gradient(45deg, var(--og-accent-color), transparent);
    min-height: 200px;
    border-radius: 8px;
}

/* Mobile responsive hero logo */
@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        max-width: 200px;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 20px var(--og-glow-color)); }
    100% { filter: drop-shadow(0 0 30px var(--og-glow-color)) drop-shadow(0 0 40px rgba(225, 29, 72, 0.3)); }
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-main {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--og-accent-color);
    text-shadow: 0 0 30px var(--og-glow-color);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: var(--og-text-primary);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--og-text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--og-accent-color) 0%, #dc2626 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn--outline {
    background: transparent;
    color: var(--og-accent-color);
    border: 2px solid var(--og-accent-color);
}

.btn--outline:hover {
    background: var(--og-accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--accent {
    background: var(--og-accent-color);
    color: white;
    border: 2px solid var(--og-accent-color);
    box-shadow: var(--shadow-md);
}

.btn--accent:hover {
    background: var(--og-accent-hover);
    border-color: var(--og-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn--sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn--full-width {
    width: 100%;
    justify-content: center;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--og-text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--og-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Projects Section */
.projects-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.05) 0%, transparent 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.project-card {
    background: var(--og-card-bg);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--og-border-color);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 280px;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(225, 29, 72, 0.2);
    border-color: var(--og-accent-color);
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.project-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.project-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status--success {
    background: rgba(34, 197, 94, 0.2);
    color: var(--og-success);
    border: 1px solid var(--og-success);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--og-text-primary);
    margin-bottom: 1rem;
}

.project-description {
    color: var(--og-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-actions {
    display: flex;
    gap: 1rem;
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    background: var(--og-bg-color);
}

.demo-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.demo-plan {
    background: var(--og-card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--og-border-color);
    transition: var(--transition-smooth);
    position: relative;
    text-align: center;
}

.demo-plan--popular {
    border-color: var(--og-accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.demo-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--og-accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--og-text-primary);
    margin-bottom: 1rem;
}

.demo-plan-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--og-accent-color);
}

.price-period {
    font-size: 1rem;
    color: var(--og-text-secondary);
}

.price-lifetime {
    font-size: 0.9rem;
    color: var(--og-text-muted);
    margin-top: 0.5rem;
}

.demo-plan-features ul {
    list-style: none;
    text-align: left;
}

.demo-plan-features li {
    padding: 0.5rem 0;
    color: var(--og-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-plan-features i {
    color: var(--og-success);
    width: 16px;
}

/* Earn Section */
.earn-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.1) 0%, transparent 100%);
    text-align: center;
}

.earn-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--og-accent-color);
    text-shadow: 0 0 30px var(--og-glow-color);
    margin-bottom: 1rem;
}

.earn-subtitle {
    font-size: 1.5rem;
    color: var(--og-text-secondary);
    margin-bottom: 3rem;
}

.earn-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.benefit-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--og-text-primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--og-text-secondary);
}

/* Hosted Section */
.hosted-section {
    padding: 6rem 0;
    background: var(--og-bg-color);
    text-align: center;
}

.hosted-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.hosted-action {
    text-align: center;
    margin-top: 3rem;
}

.hosted-benefit {
    background: var(--og-card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--og-border-color);
    transition: var(--transition-smooth);
    text-align: center;
}

.hosted-benefit:hover {
    transform: translateY(-3px);
    border-color: var(--og-accent-color);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.1);
}

.hosted-benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.hosted-benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--og-text-primary);
    margin-bottom: 1rem;
}

.hosted-benefit-description {
    color: var(--og-text-secondary);
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--og-card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--og-border-color);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--og-border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--og-text-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--og-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--og-accent-color);
}

.modal-body {
    padding: 2rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--og-text-primary);
}

.form-control {
    padding: 0.75rem;
    border: 1px solid var(--og-border-color);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--og-text-primary);
    transition: var(--transition-smooth);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--og-accent-color);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, var(--og-bg-color) 100%);
    border-top: 1px solid var(--og-border-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--og-text-primary);
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--og-accent-color);
}

.footer-description {
    color: var(--og-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--og-card-bg);
    border: 1px solid var(--og-border-color);
    border-radius: 50%;
    color: var(--og-text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--og-accent-color);
    border-color: var(--og-accent-color);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-link-btn {
    color: var(--og-text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.footer-links a:hover,
.footer-link-btn:hover {
    color: var(--og-accent-color);
}

.footer-contact p {
    color: var(--og-text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--og-accent-color);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--og-border-color);
    color: var(--og-text-muted);
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--og-card-bg);
    border: 1px solid var(--og-border-color);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateX(400px);
    transition: var(--transition-smooth);
}

.notification.show {
    transform: translateX(0);
}

.notification--success {
    border-color: var(--og-success);
    background: rgba(34, 197, 94, 0.1);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-message {
    color: var(--og-text-primary);
}

.notification-close {
    background: none;
    border: none;
    color: var(--og-text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-fast);
}

.notification-close:hover {
    color: var(--og-accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-links {
        display: none;
    }

    /* Mobile dropdown adjustments */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        min-width: auto;
    }

    .dropdown-submenu {
        position: static;
        margin-left: 1rem;
    }

    .nav-dropdown:hover .dropdown-toggle i {
        transform: none;
    }

    .coming-soon-badge {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
    }

    .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-title-sub {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem 0;
    }

    .demo-plans {
        grid-template-columns: 1fr;
    }

    .demo-plan--popular {
        transform: none;
    }

    .earn-title {
        font-size: 2rem;
    }

    .hosted-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2rem;
    }

    .hero-title-sub {
        font-size: 1.2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .modal-content {
        width: 95%;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --og-border-color: rgba(129, 140, 153, 0.5);
        --og-text-secondary: #ffffff;
        --og-text-muted: #cccccc;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .loading-spinner {
        animation: none;
    }
    
    .loading-text {
        animation: none;
    }
}

/* A-ADS Monetization Section */
.ads-section {
    background: linear-gradient(135deg, var(--og-bg-color) 0%, rgba(31, 41, 55, 0.3) 100%);
    padding: 2rem 0;
    border-top: 1px solid var(--og-border-color);
    margin-top: 2rem;
}

.ads-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    padding: 1rem;
}

.ads-section #frame {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(31, 41, 55, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 29, 72, 0.1);
}

.ads-section iframe {
    border-radius: var(--border-radius);
    min-height: 90px;
    transition: var(--transition-smooth);
}

.ads-section iframe:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive ads */
@media (max-width: 768px) {
    .ads-section {
        padding: 1.5rem 0;
    }
    
    .ads-section #frame {
        padding: 0.75rem;
    }
    
    .ads-section iframe {
        width: 85% !important;
    }
}

@media (max-width: 480px) {
    .ads-section iframe {
        width: 95% !important;
    }
}
