* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #0b0014, #16002b);
    color: #ffffff;
    min-height: 100vh;
}

header {
    padding: 30px;
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #b366ff;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px;
}

.hero {
    text-align: center;
    margin-top: 60px;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #d0d0d0;
    line-height: 1.6;
}

.buy-btn {
    margin-top: 40px;
    padding: 16px 45px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, #7f00ff, #e100ff);
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.buy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #b366ff;
}

.contact {
    margin-top: 25px;
    font-size: 16px;
    color: #aaa;
}

.contact span {
    color: #b366ff;
    font-weight: 600;
}

.about {
    margin-top: 120px;
    background: rgba(255,255,255,0.06);
    padding: 45px;
    border-radius: 25px;
}

.about h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 15px;
}

footer {
    margin-top: 120px;
    padding: 25px;
    text-align: center;
    font-size: 14px;
    color: #888;
}
