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

:root {
    --primary-color: #03949c;
    --secondary-color: #ff6b35;
    --accent-color: #ffd700;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #045b67 0%, #03949c 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #cc4a1a 100%);
    --gradient-accent: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    --gradient-glow: linear-gradient(45deg, #03949c, #045b67, #03949c);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Oyun renkleri */
    --credit-color: #ffd700;
    --crystal-color: #9c27b0;
    --energy-color: #4caf50;
    --research-color: #2196f3;
    --scout-color: #00d4ff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.loading-logo i {
    font-size: 3rem;
    animation: rocket-launch 2s ease-in-out infinite;
}

@keyframes rocket-launch {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loading-fill 3s ease-in-out;
}

@keyframes loading-fill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    animation: loading-pulse 2s ease-in-out infinite;
}

@keyframes loading-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-family: 'Orbitron', 'Exo 2', 'Rajdhani', sans-serif;
    font-weight: 900;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.6));
    }
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.section-badge i {
    font-size: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.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;
    gap: 15px;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
 
 

.logo-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 1;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="star" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="1" fill="url(%23star)"/><circle cx="300" cy="200" r="0.5" fill="url(%23star)"/><circle cx="500" cy="150" r="1.5" fill="url(%23star)"/><circle cx="700" cy="300" r="0.8" fill="url(%23star)"/><circle cx="900" cy="250" r="1.2" fill="url(%23star)"/><circle cx="150" cy="400" r="0.6" fill="url(%23star)"/><circle cx="350" cy="500" r="1" fill="url(%23star)"/><circle cx="550" cy="450" r="0.7" fill="url(%23star)"/><circle cx="750" cy="600" r="1.3" fill="url(%23star)"/><circle cx="950" cy="550" r="0.9" fill="url(%23star)"/><circle cx="200" cy="700" r="1.1" fill="url(%23star)"/><circle cx="400" cy="800" r="0.8" fill="url(%23star)"/><circle cx="600" cy="750" r="1.4" fill="url(%23star)"/><circle cx="800" cy="900" r="0.5" fill="url(%23star)"/></svg>') repeat;
    animation: stars-move 100s linear infinite;
}

@keyframes stars-move {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

.twinkling {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="twinkle" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff"/><stop offset="50%" stop-color="%23ffffff"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="250" cy="300" r="2" fill="url(%23twinkle)"/><circle cx="450" cy="600" r="1.5" fill="url(%23twinkle)"/><circle cx="650" cy="400" r="2.5" fill="url(%23twinkle)"/><circle cx="850" cy="700" r="1.8" fill="url(%23twinkle)"/></svg>') repeat;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.nebula {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: nebula-pulse 8s ease-in-out infinite;
}

@keyframes nebula-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.floating-asteroids {
    position: absolute;
    width: 100%;
    height: 100%;
}

.asteroid {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--text-secondary);
    border-radius: 50%;
    opacity: 0.6;
}

.asteroid-1 {
    top: 20%;
    left: 10%;
    animation: asteroid-float-1 15s linear infinite;
}

.asteroid-2 {
    top: 60%;
    right: 15%;
    animation: asteroid-float-2 20s linear infinite;
}

.asteroid-3 {
    bottom: 30%;
    left: 20%;
    animation: asteroid-float-3 18s linear infinite;
}

@keyframes asteroid-float-1 {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(-50px); }
}

@keyframes asteroid-float-2 {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-80px) translateY(100px); }
}

@keyframes asteroid-float-3 {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(120px) translateY(-80px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    animation: badge-pulse 2s ease-in-out infinite;
}

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

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--shadow-glow);
    margin-bottom: 0.5rem;
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.title-subtitle {
    display: block;
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 400;
    font-family: 'Exo 2', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn span {
    z-index: 1;
    position: relative;
}

.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-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-glow);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-glow:hover::after {
    opacity: 1;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-particles::before,
.btn-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particle-float 2s ease-in-out infinite;
}

.btn-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.btn-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    background: transparent;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.7rem !important;
    font-weight: 700;
    color: var(--primary-color) !important;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Visual - Game Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.game-preview {
    position: relative;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 35px;
    padding: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.game-interface {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.resources {
    display: flex;
    gap: 15px;
}

.resource {
    font-size: 0.9rem;
    font-weight: 600;
}

.resource.credit { color: var(--credit-color); }
.resource.crystal { color: var(--crystal-color); }
.resource.energy { color: var(--energy-color); }

.hex-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    flex: 1;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.hex-row {
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: center;
}

.hex-row.top-row {
    margin-bottom: 2px;
}

.hex-row.middle-row {
    margin: 0 15px;
    gap: 8px;
}

.hex-row.bottom-row {
    margin-top: 2px;
    gap: 3px;
}

.hex-button {
    width: 55px;
    height: 65px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--border-color);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hex-button.featured {
    width: 70px;
    height: 80px;
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.15);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    z-index: 2;
}

.hex-button.locked {
    border-color: #666;
    background: rgba(0, 0, 0, 0.8);
    cursor: not-allowed;
    opacity: 0.6;
}

.hex-button.locked .hex-content i {
    color: #666;
}

.hex-button.locked .hex-content span {
    color: #666;
}

.hex-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.hex-button:hover::before {
    opacity: 0.1;
}

.hex-button.featured::before {
    opacity: 0.2;
}

.hex-button:hover {
    transform: translateY(-3px) scale(1.05);
}

.hex-button.featured:hover {
    transform: translateY(-3px) scale(1.15);
}

.hex-button.locked:hover {
    transform: none;
    box-shadow: none;
}

.hex-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
    z-index: 1;
}

.hex-button i {
    color: var(--primary-color);
    font-size: 1rem;
}

.hex-button.featured i {
    font-size: 1.3rem;
}

.hex-button span {
    font-size: 0.55rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1;
    max-width: 45px;
    text-align: center;
}

.hex-button.featured span {
    font-size: 0.7rem;
    max-width: 60px;
}

/* Hexagon Button Colors - Oyun tasarımına birebir uygun */
.hex-button.hex-search {
    border-color: var(--scout-color);
    background: rgba(0, 212, 255, 0.1);
}

.hex-button.hex-search:hover {
    border-color: var(--scout-color);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.hex-button.hex-missions {
    border-color: var(--secondary-color);
    background: rgba(255, 107, 53, 0.1);
}

.hex-button.hex-missions:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.hex-button.hex-market {
    border-color: var(--energy-color);
    background: rgba(76, 175, 80, 0.1);
}

.hex-button.hex-market:hover {
    border-color: var(--energy-color);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
}

.hex-button.hex-war {
    border-color: #666;
    background: rgba(0, 0, 0, 0.8);
}

.hex-button.hex-profile {
    border-color: var(--crystal-color);
    background: rgba(156, 39, 176, 0.1);
}

.hex-button.hex-profile:hover {
    border-color: var(--crystal-color);
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.4);
}

.hex-button.hex-map {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.15);
}

.hex-button.hex-map:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hex-button.hex-commanders {
    border-color: #666;
    background: rgba(0, 0, 0, 0.8);
}

.hex-button.hex-inventory {
    border-color: var(--accent-color);
    background: rgba(255, 215, 0, 0.1);
}

.hex-button.hex-inventory:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.hex-button.hex-fleets {
    border-color: var(--crystal-color);
    background: rgba(156, 39, 176, 0.1);
}

.hex-button.hex-fleets:hover {
    border-color: var(--crystal-color);
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.4);
}

.hex-button.hex-allies {
    border-color: #666;
    background: rgba(0, 0, 0, 0.8);
}

.hex-button.hex-planets {
    border-color: var(--energy-color);
    background: rgba(76, 175, 80, 0.1);
}

.hex-button.hex-planets:hover {
    border-color: var(--energy-color);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
}

.hex-button.hex-messages {
    border-color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
}

.hex-button.hex-messages:hover {
    border-color: #e91e63;
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.4);
}

.hex-button.hex-chat {
    border-color: #666;
    background: rgba(0, 0, 0, 0.8);
}

/* Hexagon Button Active States */
.hex-button.active {
    transform: scale(1.1);
    box-shadow: 0 0 20px currentColor;
}

.hex-button.active.hex-search { box-shadow: 0 0 20px var(--scout-color); }
.hex-button.active.hex-missions { box-shadow: 0 0 20px var(--secondary-color); }
.hex-button.active.hex-market { box-shadow: 0 0 20px var(--energy-color); }
.hex-button.active.hex-profile { box-shadow: 0 0 20px var(--crystal-color); }
.hex-button.active.hex-map { box-shadow: 0 0 25px var(--primary-color); }
.hex-button.active.hex-inventory { box-shadow: 0 0 20px var(--accent-color); }
.hex-button.active.hex-fleets { box-shadow: 0 0 20px var(--crystal-color); }
.hex-button.active.hex-planets { box-shadow: 0 0 20px var(--energy-color); }
.hex-button.active.hex-messages { box-shadow: 0 0 20px #e91e63; }

/* Hexagon Button Glow Effects */
.hex-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -2;
    opacity: 0;
    transition: var(--transition);
    filter: blur(10px);
}

.hex-button:hover::after {
    opacity: 0.3;
}

/* Responsive Hexagon Menu */
@media (max-width: 480px) {
    .hex-button {
        width: 50px;
        height: 60px;
    }
    
    .hex-button.featured {
        width: 65px;
        height: 75px;
    }
    
    .hex-button i {
        font-size: 0.9rem;
    }
    
    .hex-button.featured i {
        font-size: 1.2rem;
    }
    
    .hex-button span {
        font-size: 0.5rem;
        max-width: 40px;
    }
    
    .hex-button.featured span {
        font-size: 0.65rem;
        max-width: 55px;
    }
    
    .hex-row.middle-row {
        margin: 0 12px;
        gap: 6px;
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    animation: float-slow 6s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.floating-2 {
    bottom: 30%;
    left: -20px;
    animation-delay: 2s;
}

.floating-3 {
    top: 60%;
    right: -30px;
    animation-delay: 4s;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    width: 2px;
    height: 20px;
    background: var(--primary-color);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

.scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--darker-bg);
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 0.8rem 1.5rem;
}

.highlight-text {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Feature Card Overlay */
.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    z-index: 10;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    animation: badge-pulse 2s ease-in-out infinite;
}

.overlay-badge i {
    font-size: 1rem;
}

/* Gameplay Section */
.gameplay {
    padding: 6rem 0;
}

.gameplay-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Orbitron', monospace;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.gameplay-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.showcase-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.showcase-item.active {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
}

.showcase-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #03949c 0%, #045b67 50%, #00d4ff 100%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    transition: all 0.8s ease-in-out;
    animation: smooth-glow 8s ease-in-out infinite, color-shift 6s ease-in-out infinite;
}

.showcase-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(3, 148, 156, 0.8), 0 0 60px rgba(3, 148, 156, 0.6);
}

.showcase-image {
    animation: smooth-glow 8s ease-in-out infinite;
}

.showcase-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-glow);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: glow-outer 3s ease-in-out infinite;
}



@keyframes glow-outer {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes smooth-glow {
    0% {
        box-shadow: 0 0 15px rgba(3, 148, 156, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(3, 148, 156, 0.8), 0 0 35px rgba(3, 148, 156, 0.6);
    }
    100% {
        box-shadow: 0 0 15px rgba(3, 148, 156, 0.4);
    }
}

@keyframes color-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.showcase-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Screenshots Section */
.screenshots {
    padding: 6rem 0;
    background: var(--darker-bg);
}

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

.screenshot-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.screenshot-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.screenshot-image.main-menu {
    background: url('../images/Screenshots/game_screen/1.jpg');
    background-size: cover;
    background-position: center;
}

.screenshot-image.map-view {
    background: url('../images/Screenshots/pmpf_screens/1.jpg');
    background-size: cover;
    background-position: center;
}

.screenshot-image.market {
    background: url('../images/Screenshots/market_screens/1.jpg');
    background-size: cover;
    background-position: center;
}

.screenshot-image.colony {
    background: url('../images/Screenshots/map_page/1.jpg');
    background-size: cover;
    background-position: center;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    gap: 1rem;
    padding: 2rem;
}

.screenshot-overlay i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    transition: var(--transition);
}

.screenshot-overlay span {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    transition: var(--transition);
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
    transform: scale(1.02);
}

.screenshot-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
}

.screenshot-overlay:hover i {
    transform: scale(1.1);
    color: var(--text-primary);
}

.screenshot-overlay:hover span {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.screenshot-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.screenshot-card p {
    padding: 0 1.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.screenshot-features {
    display: flex;
    gap: 0.8rem;
    padding: 0 1.5rem 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: var(--transition);
}

.feature-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Download Section */
.download {
    padding: 6rem 0;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.download-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.download-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.download-feature i {
    color: var(--energy-color);
    font-size: 1.1rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-phone {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    position: relative;
}

.download-phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.download-gameplay {
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gameplay-preview {
    text-align: center;
}

.preview-planet {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
}

.preview-planet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
}

.preview-ships {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.preview-ship {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .gameplay-content,
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

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

    .download-buttons {
        justify-content: center;
    }

    .phone-frame,
    .download-phone {
        width: 250px;
        height: 500px;
    }
    
    .screenshot-overlay {
        padding: 1.5rem;
        gap: 0.8rem;
    }
    
    .screenshot-overlay i {
        font-size: 2rem;
    }
    
    .screenshot-overlay span {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .screenshot-overlay {
        padding: 1rem;
        gap: 0.6rem;
    }
    
    .screenshot-overlay i {
        font-size: 1.8rem;
    }
    
    .screenshot-overlay span {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.screenshot-card,
.step-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Oyun Temalı Modal Galeri Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(15px);
}

.game-modal {
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(10, 10, 15, 0.95) 100%);
    margin: 3% auto;
    padding: 0;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    width: 92%;
    max-width: 1100px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.3),
        inset 0 0 50px rgba(0, 212, 255, 0.1);
    animation: gameModalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.game-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 20px;
}

@keyframes gameModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-100px) scale(0.8) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.game-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #045b67 50%, var(--crystal-color) 100%);
    padding: 2rem 2.5rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.game-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: headerShine 3s ease-in-out infinite;
}

@keyframes headerShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.header-icon i {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.header-text h2 {
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.header-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    font-weight: 300;
}

.close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.game-body {
    padding: 2.5rem;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.gallery-main {
    position: relative;
    text-align: center;
}

.image-frame {
    position: relative;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.image-frame img {
    max-width: 100%;
    max-height: 65vh;
    display: block;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}

.image-info {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.5);
    backdrop-filter: blur(10px);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.hex-btn {
    background: linear-gradient(135deg, var(--primary-color), #045b67);
    border: 3px solid rgba(0, 212, 255, 0.5);
    color: var(--text-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.hex-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hex-btn:hover::before {
    transform: translateX(100%);
}

.hex-btn:hover {
    background: linear-gradient(135deg, #045b67, var(--primary-color));
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.5),
        inset 0 0 30px rgba(0, 212, 255, 0.2);
}

.gallery-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.control-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.control-info i {
    color: var(--primary-color);
    font-size: 1rem;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thumbnail-container {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
}

.thumbnail-container:hover {
    transform: translateY(-5px);
}

.thumbnail-container.active {
    border-color: var(--primary-color);
    box-shadow: 
        0 0 25px rgba(0, 212, 255, 0.6),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.thumbnail {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
    opacity: 0.8;
}

.thumbnail-container:hover .thumbnail {
    opacity: 1;
}

.thumbnail-container.active .thumbnail {
    opacity: 1;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.thumbnail-container:hover .thumbnail-overlay,
.thumbnail-container.active .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* Responsive Oyun Modal */
@media (max-width: 768px) {
    .game-modal {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
    }
    
    .game-header {
        padding: 1.5rem 2rem;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .header-icon {
        width: 50px;
        height: 50px;
    }
    
    .header-icon i {
        font-size: 1.5rem;
    }
    
    .header-text h2 {
        font-size: 1.4rem;
    }
    
    .header-text p {
        font-size: 0.9rem;
    }
    
    .game-body {
        padding: 1.5rem;
    }
    
    .gallery-nav {
        padding: 0 1rem;
    }
    
    .hex-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .thumbnail {
        width: 120px;
        height: 80px;
    }
    
    .gallery-thumbnails {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .game-modal {
        width: 98%;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    .game-header {
        padding: 1rem 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .header-icon {
        width: 45px;
        height: 45px;
    }
    
    .header-text h2 {
        font-size: 1.2rem;
    }
    
    .header-text p {
        font-size: 0.8rem;
    }
    
    .game-body {
        padding: 1rem;
    }
    
    .gallery-container {
        gap: 1.5rem;
    }
    
    .gallery-nav {
        padding: 0 0.5rem;
    }
    
    .hex-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .gallery-thumbnails {
        gap: 0.8rem;
    }
    
    .thumbnail {
        width: 100px;
        height: 70px;
    }
    
    .control-info {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(10, 10, 15, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.roadmap-container {
    position: relative;
    z-index: 1;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--crystal-color));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.roadmap-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.roadmap-item:nth-child(odd) {
    flex-direction: row;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--crystal-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--darker-bg);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.2);
    transition: var(--transition);
}

.marker-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.roadmap-item:hover .marker-icon {
    transform: scale(1.1);
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.6),
        inset 0 0 30px rgba(0, 212, 255, 0.3);
}

.marker-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    transform: translateY(-50%);
}

.roadmap-item:nth-child(odd) .marker-line {
    left: 100%;
}

.roadmap-item:nth-child(even) .marker-line {
    right: 100%;
    background: linear-gradient(to left, var(--primary-color), transparent);
}

.roadmap-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 0 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.roadmap-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.roadmap-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-family: 'Orbitron', monospace;
    margin: 0;
}

.version-badge {
    background: linear-gradient(135deg, var(--crystal-color), var(--primary-color));
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.roadmap-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.roadmap-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.roadmap-features .feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: var(--transition);
}

.roadmap-features .feature-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Roadmap */
@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 30px;
    }
    
    .roadmap-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 30px;
    }
    
    .roadmap-marker {
        margin-bottom: 1rem;
    }
    
    .marker-line {
        display: none;
    }
    
    .roadmap-content {
        margin: 0;
        width: 100%;
    }
    
    .roadmap-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .roadmap {
        padding: 4rem 0;
    }
    
    .roadmap-content {
        padding: 1.5rem;
    }
    
    .roadmap-header h3 {
        font-size: 1.2rem;
    }
    
    .marker-icon {
        width: 50px;
        height: 50px;
    }
    
    .marker-icon i {
        font-size: 1.2rem;
    }
}

/* Başlangıç Rehberi Stilleri */

/* Quick Start Section */
.quick-start {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(3, 148, 156, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.quick-start-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.quick-step {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.quick-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.quick-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-tip {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-tip i {
    color: #ffc107;
    font-size: 1.1rem;
}

.step-tip span {
    color: #ffc107;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Game Mechanics Section */
.game-mechanics {
    padding: 100px 0;
    background: var(--darker-bg);
}

.mechanics-tabs {
    margin-top: 60px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 12px 25px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-glow);
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-panel.active {
    display: block;
}

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

.mechanics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.mechanics-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.mechanics-text p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Resources Tab */
.resource-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mining Resources Visual */
.mining-resources {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    max-width: 100%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top:25%;
}

.mining-resources h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
    overflow-y: auto;
    max-height: 350px;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.resource-grid::-webkit-scrollbar {
    width: 6px;
}

.resource-grid::-webkit-scrollbar-track {
    background: transparent;
}

.resource-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.resource-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    transition: var(--transition);
    text-align: center;
}

.resource-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 148, 156, 0.2);
}

.resource-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    color: white;
}

.resource-info h5 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.resource-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rarity {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
}

.rarity.common {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.rarity.rare {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.rarity.epic {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.rarity.legendary {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.rarity.mythical {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.value {
    color: var(--credit-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.mining-tips {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    overflow-y: auto;
    max-height: 150px;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.mining-tips::-webkit-scrollbar {
    width: 6px;
}

.mining-tips::-webkit-scrollbar-track {
    background: transparent;
}

.mining-tips::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.mining-tips::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.mining-tips h5 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.mining-tips ul {
    list-style: none;
    padding-left: 0;
}

.mining-tips li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.mining-tips li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.resource-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.resource-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.resource-info p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.resource-source {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.resource-chart {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 300px;
    padding: 20px;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.chart-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.chart-bar {
    width: 60px;
    background: var(--gradient-primary);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 10px 0;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.chart-bar:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Ships Tab */
.ship-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    width: 100%;
}

.ship-category h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 12px;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ship-category h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), white);
    transition: width 0.3s ease;
}

.ship-category:hover h4::after {
    width: 100%;
}

.ship-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ship-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(3, 148, 156, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ship-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.ship-item:hover::before {
    left: 100%;
}

.ship-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.ship-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
    transition: var(--transition);
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.05);
    padding: 8px;
}

.ship-item:hover img {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
}

.ship-details h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.ship-details p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.ship-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.stat {
    background: linear-gradient(135deg, rgba(3, 148, 156, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(3, 148, 156, 0.4);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.3s;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    border-color: var(--primary-color);
}

.ship-showcase {
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(3, 148, 156, 0.05) 0%, rgba(0, 212, 255, 0.02) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.showcase-ship {
    margin-bottom: 30px;
    position: relative;
}

.showcase-ship::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.showcase-ship img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
    transition: var(--transition);
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.05);
    padding: 15px;
}

.showcase-ship img:hover {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8));
}

.ship-info h4 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.ship-info p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 500;
}

.ship-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ship-nav {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ship-nav::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.3s;
}

.ship-nav:hover::before {
    left: 100%;
}

.ship-nav:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Colonies Tab */
.colony-system {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.colony-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.colony-step:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-info p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.building-types h4 {
    font-size: 1.3rem;
    margin: 30px 0 20px 0;
    color: var(--primary-color);
}

.building-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.building-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(3, 148, 156, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.building-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.building-item:hover::before {
    left: 100%;
}

.building-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.building-item i {
    font-size: 2.2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    transition: var(--transition);
}

.building-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.building-item span {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.building-item small {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
    opacity: 0.8;
}

.colony-preview {
    text-align: center;
}

.building-costs {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(3, 148, 156, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 25px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.building-costs::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.building-costs:hover::before {
    left: 100%;
}

.building-costs h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}



.cost-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cost-card {
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cost-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.cost-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(3, 148, 156, 0.1) 0%, rgba(0, 212, 255, 0.08) 100%);
    color: var(--text-primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cost-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.3s ease;
}

.cost-header:hover::before {
    left: 100%;
}

.cost-header:hover {
    background: linear-gradient(135deg, rgba(3, 148, 156, 0.15) 0%, rgba(0, 212, 255, 0.12) 100%);
}

.cost-header i:first-child { 
    color: var(--primary-color); 
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.cost-header span { 
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
}

.cost-header .chevron { 
    color: var(--text-secondary); 
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.cost-card.active .chevron { 
    transform: rotate(180deg);
    color: var(--primary-color);
}

.cost-content { 
    display: none; 
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.cost-content::-webkit-scrollbar {
    width: 6px;
}

.cost-content::-webkit-scrollbar-track {
    background: transparent;
}

.cost-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.cost-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cost-card.active .cost-content { 
    display: block; 
}

.cost-table { 
    width: 100%; 
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
}

.cost-table th,
.cost-table td { 
    text-align: left; 
    padding: 12px 15px; 
    font-size: 0.95rem; 
}

.cost-table thead th { 
    color: var(--primary-color); 
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.cost-table tbody tr { 
    transition: background 0.2s ease;
}

.cost-table tbody tr:hover { 
    background: rgba(0, 212, 255, 0.05);
}

.cost-table tbody tr + tr td { 
    border-top: 1px solid rgba(0, 212, 255, 0.1); 
}

.cost-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.cost-table td:nth-child(2) {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cost-table td:last-child {
    color: var(--text-primary);
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .building-costs { 
        padding: 25px 20px; 
        margin-top: 20px;
    }
    
    .building-costs h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .cost-list {
        gap: 12px;
    }
    
    .cost-header {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .cost-header span {
        font-size: 1rem;
    }
    
    .cost-content {
        padding: 16px;
        max-height: 300px;
    }
    
    .cost-table th, 
    .cost-table td { 
        font-size: 0.85rem;
        padding: 10px 12px;
    }
}

.planet-view {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(3, 148, 156, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    border: 2px solid rgba(3, 148, 156, 0.3);
}

.planet-surface {
    position: relative;
    width: 100%;
    height: 100%;
}

.building {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: building-float 3s ease-in-out infinite;
}

.building-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.building-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.building-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes building-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.colony-stats {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Missions Tab */
.mission-types {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mission-type {
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mission-type:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.type-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.type-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.type-header h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.mission-type p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.mission-rewards {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.reward {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: #ffc107;
    font-weight: 500;
}

.mission-tips h4 {
    font-size: 1.3rem;
    margin: 30px 0 20px 0;
    color: var(--primary-color);
}

.mission-tips ul {
    list-style: none;
    padding-left: 0;
}

.mission-tips li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.mission-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.mission-board {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-item {
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mission-item:hover {
    border-color: var(--primary-color);
}

.mission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mission-header h5 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.difficulty {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.difficulty.easy {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.difficulty.medium {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.difficulty.hard {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.mission-item p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.mission-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.5s ease-in-out;
}

.mission-progress span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 40px;
}

/* Market Tab */
.market-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.market-category h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.market-category p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.market-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.market-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.market-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.item-name {
    color: var(--text-primary);
    font-weight: 500;
}

.item-price {
    color: var(--credit-color);
    font-weight: 600;
}

.market-tips h4 {
    font-size: 1.3rem;
    margin: 30px 0 20px 0;
    color: var(--primary-color);
}

.market-tips ul {
    list-style: none;
    padding-left: 0;
}

.market-tips li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.market-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.market-preview {
    text-align: center;
}

.market-window {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    max-width: 350px;
    margin: 0 auto;
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.market-header h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.market-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--credit-color);
    font-weight: 600;
}

.market-items-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.preview-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.preview-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.item-details h5 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.price {
    color: var(--credit-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Advanced Tips Section */
.advanced-tips {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}

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

.tip-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.tip-header h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.tip-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tip-details ul {
    list-style: none;
    padding-left: 0;
}

.tip-details li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.tip-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question.disabled {
    cursor: not-allowed;
    opacity: 0.6;
    position: relative;
}

.faq-question.disabled:hover {
    transform: none;
    border-color: var(--border-color);
}

.version-badge {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #ffd700;
}

.version-badge i {
    font-size: 1rem;
    color: #000;
}

.version-badge span {
    font-weight: bold;
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Privacy Policy Section */
.privacy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.company-info {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
}

.company-info h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.company-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.policy-section {
    margin-bottom: 35px;
}

.policy-section h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Exo 2', sans-serif;
}

.policy-section h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.data-category {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
}

.data-category:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.data-category h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-category h4 i {
    font-size: 1rem;
}

.data-category p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.purpose-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.purpose-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.purpose-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.purpose-item span {
    color: var(--text-secondary);
    font-size: 1rem;
}

.rights-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.right-item i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 2px;
}

.right-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-item span {
    color: var(--text-secondary);
    font-size: 1rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Contact Support Section */
.contact-support {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Terms Section */
.terms-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.terms-section {
    margin-bottom: 35px;
}

.terms-section h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Exo 2', sans-serif;
}

.terms-section h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.terms-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Cookies Section */
.cookies-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.cookies-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookies-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.cookies-section {
    margin-bottom: 35px;
}

.cookies-section h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Exo 2', sans-serif;
}

.cookies-section h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cookies-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.cookie-type {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
}

.cookie-type:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-type h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-type h4 i {
    font-size: 1rem;
}

.cookie-type p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Disclosure Section */
.disclosure-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.disclosure-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclosure-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.disclosure-section {
    margin-bottom: 35px;
}

.disclosure-section h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Exo 2', sans-serif;
}

.disclosure-section h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.disclosure-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.company-details {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.company-details p {
    margin: 8px 0;
    color: var(--text-secondary);
}

.company-details strong {
    color: var(--primary-color);
}

.transfer-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.transfer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.transfer-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.transfer-item span {
    color: var(--text-secondary);
    font-size: 1rem;
}

.retention-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.retention-item {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
}

.retention-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.retention-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.retention-item h4 i {
    font-size: 1rem;
}

.retention-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.application-info {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.application-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.application-info h4 i {
    font-size: 1rem;
}

.application-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.update-info {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.update-info p {
    margin: 8px 0;
    color: var(--text-secondary);
}

.update-info strong {
    color: var(--primary-color);
}

/* Privacy Policy, Terms and Cookies Responsive */
@media (max-width: 768px) {
    .privacy-section, .disclosure-section, .terms-section, .cookies-section {
        padding: 60px 0;
    }
    
    .privacy-card, .disclosure-card, .terms-card, .cookies-card {
        padding: 25px;
        margin: 0 15px;
    }
    
    .company-info h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3, .disclosure-section h3, .terms-section h3, .cookies-section h3 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .data-categories, .retention-info, .cookie-types {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .data-category, .retention-item, .cookie-type {
        padding: 15px;
    }
    
    .purpose-item, .right-item, .contact-item, .transfer-item, .obligation-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .privacy-card, .disclosure-card, .terms-card, .cookies-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .company-info {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .company-info h2 {
        font-size: 1.3rem;
    }
    
    .policy-section, .disclosure-section, .terms-section, .cookies-section {
        margin-bottom: 25px;
    }
    
    .policy-section h3, .disclosure-section h3, .terms-section h3, .cookies-section h3 {
        font-size: 1.1rem;
    }
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.support-text p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.support-option:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.support-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.support-option span {
    color: var(--text-primary);
    font-weight: 500;
}

.support-visual {
    text-align: center;
}

.support-icon {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto;
    animation: support-pulse 3s ease-in-out infinite;
}

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

/* Guide Preview Styles */
.guide-preview {
    text-align: center;
    position: relative;
}

.guide-icon {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guide-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(3, 148, 156, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: guide-glow 3s ease-in-out infinite;
}

@keyframes guide-glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mechanics-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quick-start-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .resource-chart {
        height: 200px;
    }
    
    .chart-bar {
        width: 40px;
    }
    
    .planet-view {
        width: 250px;
        height: 250px;
    }
    
    .support-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .guide-icon {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .guide-glow {
        width: 160px;
        height: 160px;
    }
    
    /* Mining Resources Mobile */
    .mining-resources {
        max-width: 100%;
        margin: 0 auto;
        max-height: 500px;
    }
    
    .resource-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        max-height: 250px;
    }
    
    .resource-card {
        padding: 12px;
    }
    
    .resource-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .resource-info h5 {
        font-size: 0.8rem;
    }
    
    .rarity {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .value {
        font-size: 0.75rem;
    }
    
    .mining-tips {
        max-height: 120px;
    }
    
    /* Ships Mobile */
    .ship-categories {
        gap: 25px;
    }
    
    .ship-item {
        padding: 15px;
    }
    
    .ship-item img {
        width: 60px;
        height: 60px;
    }
    
    .ship-details h5 {
        font-size: 1rem;
    }
    
    .ship-details p {
        font-size: 0.85rem;
    }
    
    .stat {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .quick-step,
    .tip-card,
    .faq-item {
        padding: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .tip-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .resource-item,
    .ship-item,
    .colony-step {
        padding: 15px;
    }
    
    .resource-icon,
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .ship-item img {
        width: 60px;
        height: 60px;
    }
    
    .planet-view {
        width: 200px;
        height: 200px;
    }
    
    .building {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .building-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .building-item {
        padding: 20px 15px;
    }
    
    .building-item i {
        font-size: 1.8rem;
    }
    
    .building-item span {
        font-size: 0.9rem;
    }
    
    .building-item small {
        font-size: 0.75rem;
    }
}

/* Task Categories */
.task-categories {
    margin: 30px 0;
}

.task-categories h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.task-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.task-category-item {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(3, 148, 156, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.task-category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.task-category-item:hover::before {
    left: 100%;
}

.task-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
}

.task-category-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.task-category-item span {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.task-category-item small {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Task Examples */
.task-examples {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    max-height: 500px;
    overflow-y: auto;
}

.task-examples h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.example-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.example-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.example-category h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.example-category h5::before {
    content: '▶';
    color: var(--primary-color);
    font-size: 0.8rem;
}

.example-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.example-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 15px;
    align-items: center;
    transition: all 0.3s ease;
}

.example-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.task-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.task-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.task-reward {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Custom Scrollbar for Task Examples */
.task-examples::-webkit-scrollbar {
    width: 6px;
}

.task-examples::-webkit-scrollbar-track {
    background: transparent;
}

.task-examples::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.task-examples::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Responsive Design for Task Categories */
@media (max-width: 1200px) {
    .task-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .task-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .task-category-item {
        padding: 15px;
    }
    
    .task-category-item i {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .task-category-item span {
        font-size: 1rem;
    }
    
    .task-category-item small {
        font-size: 0.8rem;
    }
    
    .example-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .task-reward {
        justify-self: center;
    }
}

@media (max-width: 480px) {
    .task-category-grid {
        grid-template-columns: 1fr;
    }
    
    .task-examples {
        max-height: 400px;
        padding: 15px;
    }
}

/* Market Subcategories */
.market-subcategories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.subcategory-item {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(3, 148, 156, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subcategory-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.subcategory-item:hover::before {
    left: 100%;
}

.subcategory-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
}

.subcategory-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
}

.subcategory-item:hover i {
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(3, 148, 156, 0.7);
    transform: scale(1.1);
}

.subcategory-item span {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.subcategory-item small {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Market Overview */
.market-overview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.market-overview h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.category-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.stat-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.stat-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responsive Design for Market */
@media (max-width: 1200px) {
    .market-subcategories {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .market-subcategories {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }
    
    .subcategory-item {
        padding: 12px;
    }
    
    .subcategory-item i {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .subcategory-item span {
        font-size: 0.9rem;
    }
    
    .subcategory-item small {
        font-size: 0.8rem;
    }
    
    .stat-item {
        padding: 12px;
        gap: 12px;
    }
    
    .stat-item i {
        font-size: 1.1rem;
    }
    
    .stat-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .market-subcategories {
        grid-template-columns: 1fr;
    }
    
    .category-stats {
        gap: 12px;
    }
}
