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

body {
    font-family: 'Georgia', 'Liberation Serif';
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    max-width: 800px;
    margin: 0 auto;
}

nav li {
    margin: 0 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #007bff;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #007bff;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

main {
    margin-top: 80px;
}

.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.content-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 2rem auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 300;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

.releases-list {
    margin: 2rem 0;
}

.release-item {
    display: block;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.release-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.release-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.release-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}


section {
    scroll-margin-top: 80px;
    background-color: #fff;
}


footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 2rem 0;
}

footer .content-container {
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0 auto;
}

footer p {
    color: #bdc3c7;
    margin: 0;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }

    nav li {
        margin: 0.5rem 0;
    }

    main {
        margin-top: 140px;
    }

    .content-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}
