/* Global Styles */
:root {
    --primary-color: #25b94a;
    --secondary-color: #1e1e1e;
    --accent-color: #ffbb00;
    --text-color: #e0e0e0;
    --background-color: #121212;
    --card-background: #1e1e1e;
    --header-background: #1a1a1a;
    --border-color: #333333;
    --hover-color: #32d35e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Minecraft', Arial, sans-serif;
}

@font-face {
    font-family: 'Minecraft';
    src: url('https://fonts.cdnfonts.com/css/minecraft-4') format('woff2');
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background-color: var(--header-background);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--hover-color);
    background-color: rgba(255, 255, 255, 0.1);
}

nav a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Main Content Styles */
main {
    margin-bottom: 30px;
}

section {
    margin-bottom: 40px;
}

h2, h3, h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* Hero Section */
.hero {
    background-image: url('https://wallpaperaccess.com/full/3133075.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    position: relative;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.hero h2, .hero p {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background-color: var(--hover-color);
}

/* Feature Cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--hover-color);
}

/* Commands Page Styles */
.commands-intro {
    text-align: center;
    margin-bottom: 40px;
}

.command-category {
    margin-bottom: 30px;
}

.commands-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.commands-table th, .commands-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.commands-table th {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: bold;
}

.commands-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* VIP Page Styles */
.vip-intro {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    background-color: var(--card-background);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.price-card {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.price-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 20px 0;
}

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

.features {
    list-style-type: none;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.features li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.purchase-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.purchase-button:hover {
    background-color: var(--hover-color);
}

.purchase-steps {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--card-background);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.purchase-steps ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.purchase-steps li {
    margin-bottom: 10px;
}

.purchase-steps a {
    color: var(--accent-color);
    text-decoration: none;
}

.purchase-steps a:hover {
    text-decoration: underline;
}

/* Rules Page Styles */
.rules-intro {
    text-align: center;
    margin-bottom: 40px;
}

.rule-category {
    margin-bottom: 30px;
}

.rules {
    list-style-type: none;
}

.rules li {
    margin-bottom: 20px;
    padding: 20px;
    background-color: var(--card-background);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.rules h4 {
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.rules h4::before {
    content: "§";
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2em;
}

.rules-note {
    padding: 20px;
    background-color: rgba(255, 187, 0, 0.1);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--header-background);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .features, .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card {
        width: 100%;
        max-width: 100%;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}