* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light gray text for readability */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar .logo {
    float: left;
    font-size: 24px;
    font-weight: bold;
    color: #e91e63; /* Logo color */
}

.nav-links {
    list-style: none;
    float: right;
}

.nav-links li {
    display: inline;
    margin-left: 20px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e91e63; /* Vibrant hover color */
}

header {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.5)), url('your-minecraft-background-image.jpg') no-repeat center center; /* Gradient with background */
    background-size: cover;
    border-radius: 10px;
}
.header-content h1 {
    font-size: 3rem; /* Adjust font size as needed */
    color: #ffffff; /* Main text color */
    text-align: center;
    margin: 20px 0;
    position: relative;
    /* 3D text effect with text-shadow */
    text-shadow: 
        1px 1px 0 #191b1d,  /* First shadow */
        2px 2px 0 #191b1d,  /* Second shadow */
        3px 3px 0 #191b1d,  /* Third shadow */
        4px 4px 0 #191b1d;  /* Fourth shadow */
}

/* Optional: Hover effect */
.header-content h1:hover {
    transform: translateZ(20px); /* Slightly lift the text on hover */
    transition: transform 1s ease; /* Smooth transition for hover */
}



.header-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #2c2c2c; /* Dark card background */
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    flex: 1 1 200px; /* Responsive card sizing */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* Plans Section Styles */
.plans-section {
    padding: 60px 20px;
    background-color: rgba(20, 20, 20, 0.9); /* Dark background to match theme */
    color: #e0e0e0;
    text-align: center;
}

.plans-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #e91e63; /* Vibrant color for headings */
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
}

.plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.plan {
    background-color: rgba(50, 50, 50, 0.8); /* Semi-transparent background */
    border-radius: 10px;
    padding: 30px 20px;
    margin: 10px;
    flex: 1 1 250px; /* Responsive card sizing */
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.8);
}

.plan h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #e91e63;
}

.plan .price {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.plan ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan ul li {
    font-size: 1.1em;
    margin: 10px 0;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 10px;
    background-color: #e91e63; /* Button color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s;
}

.button:hover {
    background-color: #d81b60; /* Darker shade on hover */
    transform: translateY(-3px);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .plan {
        flex: 1 1 100%; /* Make plans take full width on smaller screens */
        max-width: 100%;
    }
}


.button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    background-color: #e91e63; /* Button color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s;
}

.button:hover {
    background-color: #d81b60; /* Darker shade on hover */
    transform: translateY(-3px);
}

.footer {
    position: relative;
    width: 100%;
    padding: 1px 1px; /* Adjusted padding for a smaller footer */
    color: #e0e0e0; /* Light gray text for readability */
    overflow: hidden; /* Hide any overflow */
}

.footer::before {
    content: "";
    position: absolute;
    top: 10;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 50, 50, 0.7); /* Gray overlay */
    z-index: 1; /* Ensure overlay is on top */
}

.footer-content {
    position: relative; /* Ensure content is above the overlay */
    text-align: center;
    z-index: 2; /* Ensure content is above the overlay */
}

.footer-content h4 {
    margin: 10px 0;
    font-size: 18px; /* Header font size */
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 5px 0;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e91e63; /* Vibrant color on hover */
}

.footer-social a {
    display: inline-block;
    margin: 5px 10px;
    color: #e0e0e0;
    text-decoration: none;
}

.footer-social a:hover {
    color: #e91e63; /* Vibrant color on hover */
}

.footer-copy {
    margin-top: 10px;
    font-size: 14px; /* Smaller font size */
}

