:root {
    --primary: #ff2d75;
    --primary-hover: #ff5d9e;
    --bg: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --text-dim: #a1a1aa;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Decoration */
.blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(50px, 50px); }
}

.blob-1 { top: -200px; left: -200px; }
.blob-2 { bottom: -200px; right: -200px; }

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary);
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
header {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 10%;
    gap: 4rem;
}

.hero-content {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bot-card {
    background: linear-gradient(135deg, rgba(255, 45, 117, 0.2), rgba(255, 45, 117, 0.1));
    border: 2px solid var(--primary);
    padding: 2.5rem;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    text-align: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(255, 45, 117, 0.2);
    min-width: 320px;
}

.made-by {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.bot-pfp {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(255, 45, 117, 0.3);
    object-fit: cover;
}

.creator-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.bot-tags {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.tag {
    padding: 0.4rem 1rem;
    background: rgba(255, 45, 117, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 45, 117, 0.3);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 45, 117, 0.5);
    background: var(--primary-hover);
}

/* Commands Section */
.commands {
    padding: 5rem 10%;
    background: linear-gradient(to bottom, transparent, var(--glass));
}

.terminal {
    background: #1e1f22;
    border-radius: 16px;
    padding: 2rem;
    font-family: 'Consolas', monospace;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 3rem auto;
}

.command-line {
    margin-bottom: 1rem;
    color: #dbdee1;
}

.cmd-name { color: #5865f2; font-weight: bold; }
.cmd-desc { color: #b5bac1; font-size: 0.9rem; margin-left: 1rem; }

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 10%;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: 0.3s;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-dim);
}

/* Legal Content */
.legal-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

.legal-container p, .legal-container li {
    margin-bottom: 1rem;
    color: var(--text-dim);
}

footer {
    text-align: center;
    padding: 5rem 10%;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.8rem;
}
