/* assets/css/style.css - FINAL VERSION */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&display=swap');

:root {
    --primary: #00f2ea;
    --secondary: #bc13fe;
    --warning: #ffea00;
    --accent: #ffffff;
    --bg-dark: #050508; 
    --card-bg: rgba(13, 13, 25, 0.75); /* Kicsit sötétebb üveg */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--accent);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 50%, rgba(188, 19, 254, 0.1) 0%, transparent 60%);
}

#canvas-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
}

.container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1;
}

/* TYPOGRAPHY */
h1, h2, h3, .logo, .btn, .dex-status {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* HEADER */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 0; margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem; font-weight: 900;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
}

nav { display: flex; gap: 15px; }

/* BUTTONS */
.btn {
    padding: 12px 25px;
    background: rgba(0, 242, 234, 0.05);
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none; font-weight: 700; font-size: 0.9rem;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    display: inline-flex; align-items: center; gap: 8px;
}

.btn:hover {
    background: var(--primary); color: #000;
    box-shadow: 0 0 20px var(--primary); transform: translateY(-3px);
}

/* HERO SECTION - CRITICAL FIXES */
.hero {
    min-height: 85vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding-bottom: 50px;
}

/* A Logó Konténer - Ez tartja középen */
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 25px; /* Távolság a címtől */
    z-index: 2;
}

/* Maga a Logó */
.hero-logo {
    width: 120px; /* PC Méret */
    height: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 242, 234, 0.5));
    animation: floatLogo 5s ease-in-out infinite;
}

.hero h1 {
    font-size: 4rem; margin-bottom: 15px; color: #fff; line-height: 1.1;
    text-shadow: 0 0 20px rgba(188, 19, 254, 0.5);
}

.hero p {
    font-size: 1.2rem; max-width: 700px; color: #b0b0d0; margin-bottom: 20px;
}

/* DEX Status */
.dex-status {
    margin: 20px 0 40px 0;
    font-size: 1rem; font-weight: 900; color: var(--warning);
    border: 1px solid var(--warning); padding: 10px 20px;
    background: rgba(255, 234, 0, 0.05);
    box-shadow: 0 0 15px rgba(255, 234, 0, 0.1);
    animation: pulseWarning 2s infinite;
}

/* CARDS */
section { padding: 60px 0; }
.card {
    background: var(--card-bg); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px; transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: var(--primary); }

h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px; color: var(--accent); }
.roadmap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }

/* FOOTER */
footer { text-align: center; padding: 40px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #666; font-size: 0.9rem; }
.contact-email { color: var(--primary); text-decoration: none; }

/* ANIMATIONS */
@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); filter: drop-shadow(0 0 25px rgba(188, 19, 254, 0.8)); }
}
@keyframes pulseWarning {
    0% { box-shadow: 0 0 0 0 rgba(255, 234, 0, 0.4); }
    100% { box-shadow: 0 0 0 15px rgba(255, 234, 0, 0); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    header { flex-direction: column; gap: 20px; }
    nav { flex-direction: column; width: 100%; }
    nav .btn { width: 100%; justify-content: center; }

    /* MOBIL LOGÓ FIX - Itt vált 90px-re */
    .hero-logo { width: 90px; margin-bottom: 20px; }
    
    .hero h1 { font-size: 2.2rem; padding: 0 10px; }
    .hero p { font-size: 1rem; }
    .dex-status { width: 90%; font-size: 0.85rem; }
}