/* ==========================================
   Project Gebura | Main Style Sheet
   ========================================== */

:root {
    --bg-dark: #0f0f15;
    --card-bg: rgba(25, 25, 35, 0.6);
    --primary: #ff4c4c;
    --accent: #5ab2ff;
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
    --glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid var(--border-glass);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.play-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 76, 76, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 76, 76, 0.4);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0f, #1e1e2d);
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.sub-hero {
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
    background: linear-gradient(180deg, #1e1e2d, #0f0f15);
}

.sub-hero p {
    color: var(--text-dim);
    margin-top: 10px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, var(--bg-dark));
    pointer-events: none;
}

/* Glitch Effect */
.glitch {
    font-size: 5rem;
    font-weight: 900;
    position: relative;
    color: white;
    letter-spacing: 5px;
    margin-bottom: 10px;
    animation: bounce 2s infinite ease-in-out;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 30px;
    text-align: center;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.sub-btns {
    display: flex;
    gap: 15px;
}

.btn.highlight {
    font-size: 1.4rem;
    padding: 18px 50px;
    background: var(--primary);
    box-shadow: 0 0 25px rgba(255, 76, 76, 0.4);
}

.btn.highlight:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 76, 76, 0.6);
}

.role-desc {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-features {
    max-width: 1100px;
}

.team-divider {
    margin-top: 80px;
    text-align: center;
}

.team-placeholder {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-glass);
    border-radius: 15px;
    color: var(--text-dim);
}

.btn {
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn.primary {
    background: var(--accent);
    color: white;
}

.btn.primary:hover {
    background: #4ab2ff;
    box-shadow: 0 0 20px rgba(90, 178, 255, 0.5);
}

.btn.secondary {
    border: 1px solid var(--border-glass);
    color: white;
}

.btn.secondary:hover {
    background: var(--glass);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.founder-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.founder-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.founder-info h3 span {
    color: var(--primary);
}

.handle {
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: bold;
}

.bio {
    line-height: 1.6;
    color: var(--text-dim);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-glass);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-box h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-dim);
    line-height: 1.5;
}

/* Changelog Section */
.changelog-section {
    padding-bottom: 100px;
}

.changelog-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
}

.release-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text; /* Dodano dla kompatybilności */
    -webkit-text-fill-color: transparent;
}

.release-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 700;
}

.release-desc {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-style: italic;
}

.changelog-item {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid var(--primary);
}

.changelog-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.changelog-item ul {
    list-style: none;
    color: var(--text-dim);
}

.changelog-item ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    line-height: 1.4;
}

.changelog-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.status-footer {
    margin-top: 40px;
    text-align: center;
    color: var(--text-dim);
    font-style: italic;
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--border-glass);
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .glitch { font-size: 3rem; }
    .hero-btns { flex-direction: column; }
}
