/* ================= General Styles ================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: #0b0015;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= Top-left Bot Icon ================= */
.top-left-icon {
    position: fixed;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    z-index: 999;
}

.top-left-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(142, 45, 226, 0.7);
}

/* ================= Top-right Premium Button ================= */
.premium-top-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: gold;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

.premium-top-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.9);
}

/* ================= Header Section ================= */
header {
    background: linear-gradient(135deg, #1b002d, #3e007f);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bot-logo {
    width: 180px;
    height: 180px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(94, 0, 255, 0.6), 0 0 15px rgba(255, 0, 255, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bot-logo:hover {
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 10px 35px rgba(94, 0, 255, 0.9), 0 0 25px rgba(255, 0, 255, 0.6);
}

.bot-name {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 20px #b366ff, 0 0 35px #8e2de2, 0 0 50px #5e00ff;
    letter-spacing: 2px;
}

.bot-description {
    font-size: 1.3rem;
    max-width: 750px;
    color: #d1c1ff;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 0 10px #a64fff, 0 0 20px #8e2de2;
}

.guild-count {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffb3ff;
    margin: 15px 0 30px 0;
    text-shadow: 0 0 12px #a64fff, 0 0 20px #8e2de2;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        text-shadow: 0 0 12px #a64fff, 0 0 20px #8e2de2;
    }

    50% {
        text-shadow: 0 0 20px #d18aff, 0 0 35px #b366ff;
    }
}

/* ================= Header Buttons ================= */
.header-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.invite-btn,
.support-btn {
    display: inline-block;
    padding: 18px 35px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 25px rgba(94, 0, 255, 0.5);
    transition: all 0.3s ease;
}

.invite-btn {
    background: linear-gradient(45deg, #8e2de2, #5e00ff);
}

.invite-btn:hover {
    background: linear-gradient(45deg, #b366ff, #8e2de2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(142, 45, 226, 0.8);
}

.support-btn {
    background: linear-gradient(45deg, #5e00ff, #8e2de2);
}

.support-btn:hover {
    background: linear-gradient(45deg, #8e2de2, #b366ff);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(142, 45, 226, 0.8);
}

/* ================= Features Section ================= */
.features {
    background: #120029;
    padding: 80px 0;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d18aff;
    text-shadow: 0 0 8px #a64fff;
}

.features .description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin: auto;
    color: #f0e0ff;
}

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

.feature-card {
    background: #1f0033;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 5px 20px rgba(142, 45, 226, 0.4);
    transition: 0.3s;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.2rem;
    text-shadow: 0 0 8px #b366ff;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(94, 0, 255, 0.7);
}

/* ================= Advanced Features Section ================= */
.advanced-features {
    background: #120029;
    padding: 80px 0;
    text-align: center;
}

.advanced-features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #d18aff;
    text-shadow: 0 0 10px #a64fff;
}

.advanced-features ul {
    list-style-type: disc;
    margin-left: 40px;
    max-width: 900px;
    margin: auto;
    font-size: 1.1rem;
    color: #f0e0ff;
}

.advanced-features ul li {
    margin-bottom: 15px;
}

/* ================= Creator Section ================= */
.creator {
    background: #1b002d;
    padding: 80px 0;
    text-align: center;
}

.creator h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #d18aff;
    text-shadow: 0 0 8px #a64fff;
}

.creator-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(142, 45, 226, 0.7);
}

.creator p {
    font-size: 1.1rem;
    color: #f0e0ff;
    margin-bottom: 10px;
}

/* ================= Footer ================= */
footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #bbb;
}

.contact {
    background: #1b002d;
    padding: 60px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #d18aff;
    text-shadow: 0 0 8px #a64fff;
}

.contact p {
    font-size: 1.1rem;
    color: #f0e0ff;
    margin-bottom: 12px;
}

.contact a {
    color: #ffb3ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #d18aff;
}