body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    color: #00ffff; /* Vibrant cyan for headlines */
    letter-spacing: 0.5px;
}
a {
    color: #ff00ff; /* Magenta for links */
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #ff69b4; /* Softer pink on hover */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.hero {
    background: linear-gradient(135deg, rgba(18,18,18,0.85), rgba(42,42,42,0.85)), url('https://placehold.co/1920x1080/000000/2a2a2a?text=BeatForge');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}
.hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}
.hero p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-button {
    display: inline-block;
    background-color: #ff00ff;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    font-size: 1em;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff00ff;
}
.cta-button.buy-button {
    background-color: #00ffff;
    color: #121212;
}
.cta-button.buy-button:hover {
    background-color: #00cccc;
    box-shadow: 0 0 20px #00ffff;
}
.section {
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.feature-item {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid #00ffff;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.feature-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #e0e0e0;
}
.download-section ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.download-section .download-link {
    background-color: #2a2a2a;
    color: #e0e0e0;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid #00ffff;
}
.download-section .download-link:hover {
    background-color: #00ffff;
    color: #121212;
}

/* Manual Specific Styles */
.manual-section h3 {
    margin-top: 40px;
    border-bottom: 2px solid #00ffff;
    padding-bottom: 10px;
    font-size: 1.8em;
}
.manual-section h4 {
    color: #ff00ff;
    margin-top: 30px;
    font-size: 1.4em;
}
.manual-section ul, .manual-section ol {
    padding-left: 25px;
}
.manual-section li {
    margin-bottom: 12px;
}
.manual-section ul ul {
    margin-top: 10px;
}
.manual-section strong {
    color: #00ffff;
}
code {
    background-color: #3a3a3a;
    padding: 3px 7px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95em;
    color: #ff69b4;
}
.key-combo {
    background-color: #4f4f4f;
    border: 1px solid #666;
    padding: 2px 6px;
    border-radius: 4px;
    color: #e0e0e0;
}

/* Purchase Page Specific Styles */
.purchase-header {
    background-color: #1e1e1e;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.purchase-header h1 a {
    color: #00ffff;
    font-size: 1.5em;
    text-decoration: none;
}
.purchase-container {
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
}
.purchase-container .price {
    font-size: 3em;
    color: #00ffff;
    margin: 10px 0 20px;
}
.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.email-input {
    padding: 15px;
    border-radius: 50px;
    border: 2px solid #3a3a3a;
    background-color: #2a2a2a;
    color: #e0e0e0;
    font-size: 1em;
    text-align: center;
}
.email-input:focus {
    outline: none;
    border-color: #00ffff;
}

/* Centering for the Buy Button */
.centered-buy-button {
    text-align: center;
    margin-top: 30px;
}


