:root {
    --bg-color: #0b0710;
    --card-bg: rgba(26, 17, 37, 0.6);
    --card-border: rgba(147, 51, 234, 0.2);
    --card-hover: rgba(147, 51, 234, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #a78bfa;
    --purple-light: #c084fc;
    --purple-main: #9333ea;
    --purple-dark: #6b21a8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    text-transform: lowercase;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(circle at center, #1a0b2e 0%, #0b0710 100%);
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    padding: 6rem 0 4rem;
}

.logo-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.highlight-3d {
    display: inline-block;
    font-style: italic;
    font-weight: 800;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #ffffff 15%,
        var(--purple-light) 25%,
        var(--purple-main) 35%,
        var(--purple-light) 45%,
        #ffffff 50%,
        #ffffff 65%,
        var(--purple-light) 75%,
        var(--purple-main) 85%,
        var(--purple-light) 95%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-gradient-anim 4s linear infinite;
}

@keyframes text-gradient-anim {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}

.cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background-color: var(--text-primary);
    animation: blink 1s step-end infinite;
    margin-left: 4px;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 2px;
}

.status-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 0.3rem;
    color: var(--text-primary);
    font-weight: 600;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #6b7280;
}

.dot.online {
    background-color: #10b981;
}

.dot.offline {
    background-color: #ef4444;
}

.commands-section, .info-section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--purple-main);
    border-radius: 2px;
}

.carousel-section {
    width: 100%;
    margin-bottom: 6rem;
}

.carousel-container {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
}

.carousel-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-color) 0%, transparent 15%, transparent 85%, var(--bg-color) 100%);
    z-index: 2;
    pointer-events: none;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.track-left {
    animation: scroll-left 40s linear infinite;
}

.track-right {
    animation: scroll-right 45s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}

@keyframes scroll-right {
    0% { transform: translateX(calc(-50% - 0.75rem)); }
    100% { transform: translateX(0); }
}

.command-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 320px;
    position: relative;
    z-index: 1;
}

.command-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--card-hover);
    z-index: 10;
    background: linear-gradient(145deg, rgba(26, 17, 37, 0.9), rgba(15, 10, 20, 0.9));
}

.command-card code {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--purple-light);
    font-weight: 600;
}

.command-card span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(145deg, rgba(26, 17, 37, 0.8), rgba(15, 10, 20, 0.8));
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--purple-light);
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.placeholders {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.placeholders code {
    background: rgba(147, 51, 234, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: #e9d5ff;
    font-family: monospace;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.placeholders code:hover {
    background: rgba(147, 51, 234, 0.4);
    transform: scale(1.05);
}

.owner-section {
    margin-bottom: 6rem;
}

.owner-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(26, 17, 37, 0.8), rgba(15, 10, 20, 0.8));
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.owner-card:hover {
    border-color: var(--card-hover);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.1);
}

.owner-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
}

#owner-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--purple-main);
}

.status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 4px solid #0f0a14;
    background-color: #6b7280;
}

.status-online { background-color: #10b981; }
.status-idle { background-color: #f59e0b; }
.status-dnd { background-color: #ef4444; }
.status-offline { background-color: #6b7280; }

.owner-info h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.owner-tag {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.owner-custom-status {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.owner-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-primary {
    background-color: var(--purple-main);
    color: #ffffff;
    border: 1px solid var(--purple-main);
}

.btn-primary:hover {
    background-color: var(--purple-light);
    border-color: var(--purple-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.important-command {
    border: 1px solid transparent !important;
}

.important-command::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(90deg, var(--purple-main), #ff6b6b, #4facfe, var(--purple-main));
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    pointer-events: none;
    animation: gradient-border-anim 3s linear infinite;
}

@keyframes gradient-border-anim {
    0% { background-position: 0% 0; }
    100% { background-position: 150% 0; }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .info-section {
        grid-template-columns: 1fr;
    }
}
