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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-image: url('communismsolbackground.png');
    background-size: 100% auto;
    background-position: top center;
    background-attachment: scroll;
    background-repeat: repeat-y;
    min-height: 100vh;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px 30px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.3);
}

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

.x-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
}

.x-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.hero {
    text-align: center;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #FFFFFF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 8px 20px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
    object-fit: cover;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.buy-button {
    padding: 18px 60px;
    font-size: 1.2rem;
    font-weight: bold;
    background: #FFFFFF;
    color: #000000;
    border: 3px solid #FFFFFF;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.5);
    background: #E5E5E5;
}

.buy-button:active {
    transform: translateY(-1px);
}

.about {
    width: 100%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #FFFFFF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.about h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FFFFFF;
}

footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-top: 20px;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 30px 20px;
    }

    .profile-pic {
        width: 150px;
        height: 150px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .buy-button {
        padding: 15px 40px;
        font-size: 1rem;
    }

    .about {
        padding: 30px 20px;
    }

    .about h3 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
}
