/* Reset și variabile CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a2e;
    --accent-color: #16213e;
    --text-color: #ffffff;
    --text-secondary: #b8b8b8;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-accent: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--gradient-secondary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Brand Section */
.brand-section {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
}

.logo-crystal {
    position: relative;
    width: 50px;
    height: 50px;
}

.crystal-core {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: relative;
    z-index: 2;
    animation: crystalPulse 3s ease-in-out infinite;
}

.crystal-facets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.3) 50%, transparent 70%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: crystalShine 2s ease-in-out infinite;
}

.crystal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: crystalGlow 2s ease-in-out infinite;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-color);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Navigation Section */
.navigation-section {
    display: flex;
    align-items: center;
}

.nav-rings {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-ring {
    position: relative;
    width: 20px;
    height: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.nav-ring::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    z-index: 1000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-ring::after {
    content: '';
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
}

.nav-ring:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.nav-ring:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.ring-outer {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
    animation: ringRotate 10s linear infinite;
}

.ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.nav-ring:hover .ring-outer {
    border-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    animation: ringPulse 0.6s ease-out;
}

.nav-ring.active .ring-outer {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.nav-ring.active .ring-inner {
    background: white;
    transform: translate(-50%, -50%) scale(1.5);
}

/* Tooltip effects - all orange */
.nav-ring:hover::before {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    animation: tooltipGlow 0.6s ease-out;
}

.nav-ring:hover::after {
    border-bottom-color: #f7931e;
}

/* Action Section */
.action-section {
    display: flex;
    align-items: center;
}

.discord-portal {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.discord-portal:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2);
}

.portal-ring {
    position: relative;
    width: 40px;
    height: 40px;
}

.portal-core {
    width: 100%;
    height: 100%;
    background: #5865f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    animation: portalPulse 2s ease-in-out infinite;
}

.portal-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
}

.portal-particles::before,
.portal-particles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: #5865f2;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.portal-particles::before {
    animation: particleOrbit1 3s linear infinite;
}

.portal-particles::after {
    animation: particleOrbit2 4s linear infinite reverse;
}

.portal-info {
    display: flex;
    flex-direction: column;
}

.portal-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1;
}

.portal-code {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: 'Orbitron', monospace;
}

.portal-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
}

.toggle-crystal {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: var(--transition);
    position: relative;
}

.toggle-crystal:hover {
    transform: scale(1.1);
}

.crystal-line {
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: var(--transition);
}

.mobile-toggle.active .crystal-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-toggle.active .crystal-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .crystal-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-content {
    padding: 2rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    color: var(--text-color);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.2);
    cursor: default;
}

.mobile-link.discord {
    text-decoration: none;
    cursor: pointer;
}

.mobile-link:hover,
.mobile-link.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(10px);
}

.mobile-link.discord {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
}

.mobile-link.discord:hover {
    background: #5865f2;
}

.link-crystal {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transition: var(--transition);
}

.link-crystal.discord {
    background: #5865f2;
}

.mobile-link:hover .link-crystal {
    background: white;
    transform: scale(1.2);
}

@keyframes crystalPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes crystalShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes crystalGlow {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes portalPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes particleOrbit1 {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(25px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(25px) rotate(-360deg); }
}

@keyframes particleOrbit2 {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(35px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(35px) rotate(-360deg); }
}

@keyframes ringPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1.3); }
}

@keyframes tooltipGlow {
    0% { 
        transform: translateX(-50%) translateY(-10px) scale(0.8);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
    }
    50% { 
        transform: translateX(-50%) translateY(-10px) scale(1.1);
        box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
    }
    100% { 
        transform: translateX(-50%) translateY(-10px) scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    }
}

/* Main Content */
#main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="particles" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100" height="100" fill="url(%23particles)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}


.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

.title-line.accent {
    font-size: 0.7em;
    color: var(--text-secondary);
    -webkit-text-fill-color: var(--text-secondary);
    background: none;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.hero-cta {
    margin-bottom: 2rem;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-direction: column;
    text-align: center;
}

.btn-large span {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-large small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.3;
}

.metin2-orb {
    position: relative;
    width: 300px;
    height: 300px;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 50px var(--primary-color);
    animation: orbPulse 3s ease-in-out infinite;
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: orbRotate 10s linear infinite;
}

.orb-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.orb-particles::before,
.orb-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orb-particles::before {
    animation: particleOrbit1 8s linear infinite;
}

.orb-particles::after {
    animation: particleOrbit2 12s linear infinite reverse;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 107, 53, 0.5); }
    50% { text-shadow: 0 0 50px rgba(255, 107, 53, 0.8); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes orbRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particleOrbit1 {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes particleOrbit2 {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--accent-color);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.product-card {
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.product-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.product-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-align: center;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.feature i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.product-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.info-text {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-detail {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: var(--gradient-secondary);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: var(--gradient-accent);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.reason-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.reason-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reason-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 400px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.cta-note i {
    color: var(--primary-color);
    margin-right: 8px;
}


/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    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: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--accent-color);
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--gradient-secondary);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.feature-link:hover {
    color: white;
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--gradient-secondary);
    text-align: center;
}

.contact-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: #5865f2;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 1.3rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.discord-btn i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
    padding: 3rem 0 1rem;
}

.footer-nexus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    gap: 2rem;
}

.nexus-core {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.core-crystal {
    position: relative;
    width: 50px;
    height: 50px;
}

.crystal-hexagon {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    position: relative;
    z-index: 2;
    animation: hexagonPulse 3s ease-in-out infinite;
}

.crystal-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    animation: energyGlow 2s ease-in-out infinite;
}

.nexus-info {
    display: flex;
    flex-direction: column;
}

.nexus-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1;
}

.nexus-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.nexus-connections {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.connection-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    position: relative;
    animation: lineFlow 3s ease-in-out infinite;
}

.connection-dots {
    display: flex;
    gap: 0.5rem;
}

.connection-dots .dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.connection-dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.connection-dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

.nexus-portal {
    display: flex;
    align-items: center;
}

.portal-gateway {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.portal-gateway:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2);
}

.gateway-ring {
    position: relative;
    width: 35px;
    height: 35px;
}

.gateway-core {
    width: 100%;
    height: 100%;
    background: #5865f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    animation: gatewayPulse 2s ease-in-out infinite;
}

.gateway-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border: 2px solid rgba(88, 101, 242, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

.gateway-info {
    display: flex;
    flex-direction: column;
}

.gateway-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1;
}

.gateway-code {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: 'Orbitron', monospace;
}

.gateway-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer-signature {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.signature-line {
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 0 auto 1rem;
    border-radius: 1px;
}

.signature-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.signature-glow {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

@keyframes hexagonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes energyGlow {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes lineFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes gatewayPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .navigation-section {
        display: none;
    }

    .discord-portal {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-nexus {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nexus-connections {
        order: -1;
        width: 100%;
    }

    .connection-line {
        display: none;
    }

    .connection-dots {
        justify-content: center;
    }

    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-visual {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        transform: none;
    }

    .product-card.featured:hover {
        transform: translateY(-10px);
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }


    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 70vh;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .products {
        padding: 60px 0;
    }

    .why-choose {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .product-card,
    .reason-card {
        padding: 2rem 1.5rem;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Page-specific styles */
.page-hero {
    padding: 120px 0 80px;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 0.8rem;
}

.page-content {
    padding: 80px 0;
    background: var(--accent-color);
}

.content-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.content-intro h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.versions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.version-card {
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.version-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.version-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.version-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.version-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.version-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.version-info h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.version-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.version-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
}

.version-features h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.version-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.version-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.version-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.version-actions {
    text-align: center;
}

.features-showcase {
    margin: 6rem 0;
}

.features-showcase h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-showcase .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--gradient-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    font-family: 'Orbitron', monospace;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.technical-specs {
    margin: 6rem 0;
}

.technical-specs h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.spec-item {
    background: var(--gradient-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.spec-item h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.spec-item ul {
    list-style: none;
}

.spec-item li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.spec-item li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.additional-info {
    margin: 6rem 0;
}

.additional-info .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--gradient-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.info-card .info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-section {
    text-align: center;
    padding: 4rem 0;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    margin-top: 4rem;
}

.contact-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .versions-container {
        grid-template-columns: 1fr;
    }
    
    .version-header {
        flex-direction: column;
        text-align: center;
    }
    
    .version-image {
        align-self: center;
    }
    
    .features-showcase .features-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-info .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .version-card {
        padding: 1.5rem;
    }
    
    .feature-item,
    .spec-item,
    .info-card {
        padding: 1.5rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
