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

body {
    font-family: 'Poppins', sans-serif;
    background-color: rgba(73, 73, 73, 1);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Nawigacja */
.navbar {
    background-color: rgba(161, 161, 161, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(104, 179, 224, 1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: rgba(104, 179, 224, 1);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: rgba(104, 179, 224, 1);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: rgba(104, 179, 224, 1);
}

/* Main content */
main {
    flex: 1;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    width: 100%;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(161, 161, 161, 0.1), rgba(104, 179, 224, 0.1));
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(104, 179, 224, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(104, 179, 224, 1);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(161, 161, 161, 1);
    max-width: 600px;
    margin: 0 auto;
}

.server-ip {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(161, 161, 161, 0.1);
    border-radius: 50px;
    display: inline-block;
}

.server-ip code {
    background-color: rgba(104, 179, 224, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: rgba(104, 179, 224, 1);
    font-size: 1.2rem;
    border: 1px solid rgba(104, 179, 224, 0.5);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background-color: rgba(161, 161, 161, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(104, 179, 224, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(104, 179, 224, 1);
}

.feature-card h3 {
    color: rgba(104, 179, 224, 1);
    margin-bottom: 1rem;
}

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

.news-card {
    background-color: rgba(161, 161, 161, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(104, 179, 224, 0.2);
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: rgba(104, 179, 224, 1);
    margin-bottom: 0.5rem;
}

.news-meta {
    color: rgba(161, 161, 161, 1);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: rgba(104, 179, 224, 1);
    text-decoration: none;
    font-weight: 500;
}

/* Changelog */
.changelog-list {
    margin-top: 2rem;
}

.changelog-item {
    background-color: rgba(161, 161, 161, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.changelog-item.feature { border-color: #4CAF50; }
.changelog-item.fix { border-color: #FFC107; }
.changelog-item.update { border-color: rgba(104, 179, 224, 1); }

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

.version {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(104, 179, 224, 1);
}

.date {
    color: rgba(161, 161, 161, 1);
}

/* Forms */
.form-container {
    max-width: 600px;
    margin: 2rem auto;
    background-color: rgba(161, 161, 161, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(104, 179, 224, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(104, 179, 224, 1);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(73, 73, 73, 1);
    border: 1px solid rgba(161, 161, 161, 0.3);
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(104, 179, 224, 1);
}

.btn {
    background-color: rgba(104, 179, 224, 1);
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: rgba(104, 179, 224, 0.8);
}

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

.shop-item {
    background-color: rgba(161, 161, 161, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(104, 179, 224, 0.2);
}

.shop-item h3 {
    color: rgba(104, 179, 224, 1);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 1rem 0;
}

.price span {
    color: rgba(104, 179, 224, 1);
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    margin-top: auto;
    border-top: 2px solid rgba(104, 179, 224, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: rgba(104, 179, 224, 1);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(161, 161, 161, 1);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: rgba(161, 161, 161, 1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features,
    .news-grid,
    .shop-grid {
        grid-template-columns: 1fr;
    }
}