/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.05) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Images */
.logo-image {
    height: 50px;
    width: auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 10px rgba(107, 70, 193, 0.5));
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.7));
    transform: scale(1.05);
}

.hero-logo {
    height: 400px;
    width: auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 20px rgba(107, 70, 193, 0.6));
    animation: float 6s ease-in-out infinite;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 8px rgba(107, 70, 193, 0.4));
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6));
    transform: scale(1.05);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #6b46c1;
    box-shadow: 0 4px 20px rgba(107, 70, 193, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #fbbf24;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'),
        radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(107, 70, 193, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #e0e0e0;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
    font-size: 3rem;
}

.hero-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.bullet {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-right: 1rem;
    font-weight: bold;
}

.highlight-text {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.hero-cta {
    margin-bottom: 2rem;
    text-align: center;
}

.cta-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #fbbf24;
    color: #0a0a0a;
    border-color: #fbbf24;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #e0e0e0;
    border-color: #6b46c1;
}

.btn-secondary:hover {
    background: #6b46c1;
    color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Large Pixel Octopus for Hero */
.pixel-octopus-large {
    position: relative;
    width: 300px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
}

.octopus-body-large {
    position: absolute;
    top: 50px;
    left: 75px;
    width: 150px;
    height: 150px;
    background: #6b46c1;
    border: 8px solid #4c1d95;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.octopus-eyes-large {
    position: absolute;
    top: 75px;
    left: 100px;
    width: 100px;
    height: 50px;
}

.eye-large {
    position: absolute;
    width: 30px;
    height: 40px;
    background: #ef4444;
    border: 4px solid #dc2626;
    image-rendering: pixelated;
}

.left-eye-large {
    left: 0;
    transform: rotate(-15deg);
}

.right-eye-large {
    right: 0;
    transform: rotate(15deg);
}

.tentacles-large {
    position: absolute;
    top: 175px;
    left: 25px;
    width: 250px;
    height: 125px;
}

.tentacle-large {
    position: absolute;
    background: #06b6d4;
    border: 4px solid #0891b2;
    image-rendering: pixelated;
}

.t1-large { top: 0; left: 0; width: 40px; height: 60px; }
.t2-large { top: 10px; left: 40px; width: 30px; height: 50px; }
.t3-large { top: 20px; left: 70px; width: 30px; height: 40px; }
.t4-large { top: 30px; left: 100px; width: 30px; height: 30px; }
.t5-large { top: 20px; left: 130px; width: 30px; height: 40px; }
.t6-large { top: 10px; left: 160px; width: 30px; height: 50px; }
.t7-large { top: 0; left: 190px; width: 40px; height: 60px; }
.t8-large { top: 5px; left: 230px; width: 20px; height: 40px; }

.controller-large {
    position: absolute;
    top: 25px;
    left: 0;
    width: 60px;
    height: 40px;
    background: #374151;
    border: 4px solid #1f2937;
    image-rendering: pixelated;
}

.controller-large::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: #ef4444;
}

.controller-large::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 10px;
    height: 10px;
    background: #06b6d4;
}

.mouse-large {
    position: absolute;
    top: 25px;
    right: 0;
    width: 50px;
    height: 30px;
    background: #6b7280;
    border: 4px solid #374151;
    image-rendering: pixelated;
}

.mouse-large::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: #06b6d4;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Value Propositions */
.value-props {
    padding: 5rem 0;
    background: #1a1a2e;
    border-top: 2px solid #6b46c1;
    border-bottom: 2px solid #6b46c1;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #6b46c1;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 70, 193, 0.1), transparent);
    transition: left 0.5s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.3);
    border-color: #fbbf24;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.section-header p {
    font-size: 1.125rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 0;
    border: 2px solid #6b46c1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #06b6d4, #ef4444);
}

.feature-card:hover {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.3);
    transform: translateY(-5px);
    border-color: #fbbf24;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b46c1, #8b5cf6);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid #fbbf24;
    image-rendering: pixelated;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #e0e0e0;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: bold;
}

/* Contracts Section */
.contracts {
    padding: 5rem 0;
    background: #1a1a2e;
    border-top: 2px solid #6b46c1;
    border-bottom: 2px solid #6b46c1;
}

.contracts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contract-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #6b46c1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contract-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #fbbf24, #06b6d4, #ef4444);
}

.contract-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.3);
}

.contract-card.featured {
    border-color: #fbbf24;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
}

.contract-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.contract-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contract-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-badge {
    background: #fbbf24;
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #f59e0b;
}

.contract-card:not(.featured) .contract-badge {
    background: #6b7280;
    border-color: #4b5563;
}

.contract-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.price-note {
    display: block;
    color: #e0e0e0;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #374151;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: #06b6d4;
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.feature-item span {
    color: #e0e0e0;
    font-size: 0.875rem;
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 5rem 0;
    background: #0a0a0a;
}

.dashboard-mockup {
    background: #1a1a2e;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #6b46c1;
}

.dashboard-header {
    background: #16213e;
    padding: 1rem 2rem;
    border-bottom: 2px solid #6b46c1;
}

.dashboard-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #9ca3af;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-item.active {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.nav-item:hover {
    color: #e0e0e0;
}

.dashboard-content {
    padding: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 1.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid #6b46c1;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-section h4 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-placeholder {
    background: #16213e;
    border-radius: 0;
    padding: 1.5rem;
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: center;
    border: 2px solid #6b46c1;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 100%;
}

.bar {
    background: linear-gradient(to top, #6b46c1, #8b5cf6);
    width: 40px;
    border-radius: 0;
    min-height: 20px;
    animation: growUp 1s ease-out;
    border: 2px solid #fbbf24;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height); }
}

/* Bonus Program */
.bonus-program {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0a0a0a 100%);
    color: #e0e0e0;
    border-top: 2px solid #fbbf24;
    border-bottom: 2px solid #fbbf24;
}

.bonus-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bonus-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.bonus-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bonus-feature i {
    font-size: 1.25rem;
    color: #fbbf24;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.bonus-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.money-icon {
    font-size: 8rem;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: #6b46c1;
    color: #e0e0e0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 2px solid #fbbf24;
}

.contact-method h4 {
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-method p {
    color: #e0e0e0;
    margin: 0;
}

.contact-form {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #6b46c1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #6b46c1;
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #16213e;
    color: #e0e0e0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #e0e0e0;
    padding: 3rem 0 1rem;
    border-top: 2px solid #6b46c1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.pixel-octopus-footer {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.octopus-body-footer {
    position: absolute;
    top: 5px;
    left: 10px;
    width: 20px;
    height: 20px;
    background: #6b46c1;
    border: 2px solid #4c1d95;
    image-rendering: pixelated;
}

.octopus-eyes-footer {
    position: absolute;
    top: 8px;
    left: 12px;
    width: 16px;
    height: 8px;
}

.eye-footer {
    position: absolute;
    width: 4px;
    height: 6px;
    background: #ef4444;
    border: 1px solid #dc2626;
    image-rendering: pixelated;
}

.left-eye-footer {
    left: 0;
    transform: rotate(-15deg);
}

.right-eye-footer {
    right: 0;
    transform: rotate(15deg);
}

.tentacles-footer {
    position: absolute;
    top: 20px;
    left: 3px;
    width: 34px;
    height: 20px;
}

.tentacle-footer {
    position: absolute;
    background: #06b6d4;
    border: 1px solid #0891b2;
    image-rendering: pixelated;
}

.t1-footer { top: 0; left: 0; width: 6px; height: 8px; }
.t2-footer { top: 1px; left: 6px; width: 4px; height: 6px; }
.t3-footer { top: 2px; left: 10px; width: 4px; height: 4px; }
.t4-footer { top: 3px; left: 14px; width: 4px; height: 3px; }
.t5-footer { top: 2px; left: 18px; width: 4px; height: 4px; }
.t6-footer { top: 1px; left: 22px; width: 4px; height: 6px; }
.t7-footer { top: 0; left: 26px; width: 6px; height: 8px; }
.t8-footer { top: 1px; left: 32px; width: 2px; height: 6px; }

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.mad-octopus-footer {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: #1e40af;
    text-shadow: 1px 1px 0px #1e3a8a;
}

.games-footer {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: #06b6d4;
    text-shadow: 1px 1px 0px #0891b2;
    margin-top: 2px;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 2px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #0a0a0a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-top: 2px solid #6b46c1;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .highlight {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contracts-grid {
        grid-template-columns: 1fr;
    }

    .contract-card.featured {
        transform: none;
    }

    .contract-card.featured:hover {
        transform: translateY(-10px);
    }

    .bonus-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dashboard-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .highlight {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .logo-image {
        height: 40px;
    }

    .hero-logo {
        height: 250px;
    }

    .footer-logo-image {
        height: 30px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #6b46c1;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #fbbf24;
}