:root {
    --bg-main: #05070c;
    --bg-secondary: #0b0f18;
    --accent: #47cdf2;
    --text-main: #ffffff;
    --text-muted: #a0aab8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: rgba(11, 15, 24, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(71, 205, 242, 0.15);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

h1 {
    font-size: 1.6rem;
    color: var(--text-main);
    letter-spacing: 2px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover, .discord-link {
    color: var(--accent);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 65vh;
    text-align: center;
    padding: 2rem 1rem;
    background: radial-gradient(circle at center, var(--bg-secondary) 0%, var(--bg-main) 100%);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.download-btn, .discord-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.download-btn {
    background-color: var(--accent);
    color: var(--bg-main);
    box-shadow: 0 0 20px rgba(71, 205, 242, 0.15);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(71, 205, 242, 0.4);
}

.discord-btn {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.discord-btn:hover {
    background-color: rgba(71, 205, 242, 0.05);
    transform: translateY(-2px);
}

section {
    padding: 7rem 5%;
}

section h2 {
    text-align: center;
    color: var(--text-main);
    font-size: 2.2rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--bg-secondary);
    padding: 2rem 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(71, 205, 242, 0.2);
    transform: translateY(-3px);
    color: var(--text-main);
}

.feature-card:hover::before {
    opacity: 1;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.showcase-item {
    width: 100%;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    border: 1px solid rgba(71, 205, 242, 0.2);
}

.patch-notes-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.patch-note {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    background-color: var(--bg-main);
    padding: 3rem;
    border-radius: 8px;
    border-top: 4px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.patch-note h3 {
    margin-bottom: 2rem;
    color: var(--text-main);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.patch-note ul {
    list-style-type: none;
}

.patch-note li {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
}

.patch-note li::before {
    content: '→';
    color: var(--accent);
    margin-right: 15px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-main);
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.download-stats {
    margin-top: 2rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.stats-label {
    color: var(--text-muted);
    font-weight: 600;
}

.stats-value {
    color: var(--accent);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(71, 205, 242, 0.4);
}