:root {
    --lfn-primary: #6236FF;
    --lfn-secondary: #00E0C7;
    --lfn-accent: #FF3D71;
    --lfn-dark: #151A36;
    --lfn-light: #F5F6FF;
    --lfn-gradient: linear-gradient(135deg, var(--lfn-primary) 0%, var(--lfn-secondary) 100%);
    --lfn-shadow: 0 8px 30px rgba(98, 54, 255, 0.15);
    --lfn-radius: 12px;
    --lfn-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--lfn-dark);
    background-color: var(--lfn-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.lfn-container {
    position: relative;
}

.boan-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--lfn-primary);
    text-decoration: none;
    transition: var(--lfn-transition);
}

a:hover {
    color: var(--lfn-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 100px 0;
}

.cosmic-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.cosmic-heading:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--lfn-gradient);
    border-radius: 2px;
}

.cvow-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--lfn-gradient);
    color: white;
    border: none;
    border-radius: var(--lfn-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--lfn-transition);
    box-shadow: var(--lfn-shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cvow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(98, 54, 255, 0.25);
}

.cosmic-link {
    color: var(--lfn-secondary);
    font-weight: 600;
    position: relative;
}

.cosmic-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lfn-secondary);
    transition: var(--lfn-transition);
}

.cosmic-link:hover:after {
    width: 100%;
}

.stellar-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--lfn-dark);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--lfn-transition);
}

.stellar-cookie.active {
    transform: translateY(0);
}

.stellar-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stellar-cookie-content p {
    margin: 0;
    flex: 1;
}

.stellar-cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cosmos-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--lfn-transition);
}

.cosmos-header .boan-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.supernova-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.supernova-logo p {
    font-size: 1.8rem;
    margin: 0;
    background: var(--lfn-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orbit-nav .meteor-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.orbit-nav .meteor-list a {
    color: var(--lfn-dark);
    font-weight: 500;
    position: relative;
}

.orbit-nav .meteor-list a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lfn-gradient);
    transition: var(--lfn-transition);
}

.orbit-nav .meteor-list a:hover {
    color: var(--lfn-primary);
}

.orbit-nav .meteor-list a:hover:after {
    width: 100%;
}

.lfn-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.lfn-mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--lfn-primary);
    border-radius: 3px;
    transition: var(--lfn-transition);
}

.vortex-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e0e6ff 100%);
    overflow: hidden;
}

.vortex-hero .boan-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.vortex-content {
    flex: 1;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.vortex-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.vortex-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.vortex-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.hologram-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('images/18924984-30820149.jpg') center/cover;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(98, 54, 255, 0.3);
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 50px rgba(98, 54, 255, 0.3);
    }
    100% {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 0 80px rgba(98, 54, 255, 0.5);
    }
}

.pulsar-features {
    background-color: white;
}

.pulsar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pulsar-card {
    background-color: white;
    border-radius: var(--lfn-radius);
    padding: 30px;
    box-shadow: var(--lfn-shadow);
    transition: var(--lfn-transition);
    text-align: center;
}

.pulsar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(98, 54, 255, 0.2);
}

.pulsar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lfn-light);
    border-radius: 50%;
    position: relative;
}

.pulsar-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px dashed var(--lfn-primary);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.icon-shield, .icon-speed, .icon-analytics, .icon-integration {
    width: 40px;
    height: 40px;
    background-color: var(--lfn-primary);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.icon-shield {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}

.icon-speed {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.38 8.57l-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44zm-9.79 6.84a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83z'/%3E%3C/svg%3E");
}

.icon-analytics {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z'/%3E%3C/svg%3E");
}

.icon-integration {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z'/%3E%3C/svg%3E");
}

.quasar-about {
    background: linear-gradient(135deg, #151A36 0%, #2D3250 100%);
    color: white;
}

.quasar-about .boan-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.quasar-content {
    flex: 1;
}

.quasar-content .cosmic-heading {
    text-align: left;
    color: white;
}

.quasar-content .cosmic-heading:after {
    left: 0;
    transform: none;
}

.quasar-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.parallax-element {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('images/298429848-17200433.jpg') center/cover;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 224, 199, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.neutron-testimonials {
    background-color: var(--lfn-light);
}

.neutron-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    height: 300px;
}

.neutron-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.neutron-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.neutron-quote {
    background-color: white;
    border-radius: var(--lfn-radius);
    padding: 40px;
    box-shadow: var(--lfn-shadow);
    position: relative;
}

.neutron-quote:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(98, 54, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.neutron-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.neutron-author h4 {
    margin-bottom: 0;
    color: var(--lfn-primary);
}

.neutron-author p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.neutron-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.neutron-prev, .neutron-next {
    background-color: white;
    border: 2px solid var(--lfn-primary);
    color: var(--lfn-primary);
    padding: 10px 20px;
    border-radius: var(--lfn-radius);
    cursor: pointer;
    transition: var(--lfn-transition);
}

.neutron-prev:hover, .neutron-next:hover {
    background-color: var(--lfn-primary);
    color: white;
}

.wormhole-contact {
    background-color: white;
}

.wormhole-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.wormhole-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.wormhole-detail h3 {
    color: var(--lfn-primary);
    margin-bottom: 10px;
}

.wormhole-detail p {
    margin-bottom: 0;
}

.wormhole-map {
    border-radius: var(--lfn-radius);
    overflow: hidden;
    box-shadow: var(--lfn-shadow);
}

.blackhole-form {
    background: linear-gradient(135deg, #151A36 0%, #2D3250 100%);
    color: white;
}

.blackhole-container {
    max-width: 800px;
    margin: 0 auto;
}

.dimension-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dimension-field {
    margin-bottom: 20px;
}

.dimension-field.full-width {
    grid-column: 1 / -1;
}

.dimension-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.dimension-field input,
.dimension-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--lfn-radius);
    color: white;
    font-family: inherit;
    transition: var(--lfn-transition);
}

.dimension-field input:focus,
.dimension-field textarea:focus {
    outline: none;
    border-color: var(--lfn-secondary);
    background-color: rgba(255, 255, 255, 0.1);
}

.singularity-footer {
    background-color: var(--lfn-dark);
    color: white;
    padding: 80px 0 30px;
}

.singularity-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
}

.singularity-info h3 {
    color: var(--lfn-secondary);
    margin-bottom: 20px;
}

.singularity-links, .singularity-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.singularity-links h4 {
    color: var(--lfn-secondary);
    margin-bottom: 20px;
}

.singularity-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.singularity-links li {
    margin-bottom: 10px;
}

.singularity-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--lfn-transition);
}

.singularity-links a:hover {
    color: var(--lfn-secondary);
}

.singularity-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.hyperspace-privacy {
    padding: 180px 0 100px;
}

.starfield-content {
    background-color: white;
    border-radius: var(--lfn-radius);
    padding: 40px;
    box-shadow: var(--lfn-shadow);
}

.lfn-block {
    margin-bottom: 40px;
}

.lfn-block h2 {
    color: var(--lfn-primary);
    margin-bottom: 20px;
}

.asteroid-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.asteroid-list li {
    margin-bottom: 10px;
}

.cvow-address {
    background-color: var(--lfn-light);
    padding: 20px;
    border-radius: var(--lfn-radius);
    font-style: normal;
}

@media (max-width: 992px) {
    .cosmic-heading {
        font-size: 2rem;
    }
    
    .vortex-hero .boan-wrapper {
        flex-direction: column;
    }
    
    .vortex-content h2 {
        font-size: 2.5rem;
    }
    
    .quasar-about .boan-wrapper {
        flex-direction: column;
    }
    
    .wormhole-grid {
        grid-template-columns: 1fr;
    }
    
    .singularity-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .orbit-nav {
        display: none;
    }
    
    .lfn-mobile-toggle {
        display: flex;
    }
    
    .pulsar-grid {
        grid-template-columns: 1fr;
    }
    
    .wormhole-info {
        grid-template-columns: 1fr;
    }
    
    .dimension-form {
        grid-template-columns: 1fr;
    }
    
    .stellar-cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
} 