


:root {
    --neon-blue: #3b82f6;
    --neon-purple: #8b5cf6;
    --neon-mint: #10b981;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --dark-bg: #030304;
}


.premium-layout {
    background-color: var(--dark-bg);
    color: #fff;
    overflow-x: hidden;
}


.p-hero {
    position: relative;
    min-height: 110vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 4rem;
}


.p-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: floatGlow 10s infinite alternate;
    z-index: 0;
}
.glow-1 { top: -100px; left: -100px; background: var(--neon-purple); }
.glow-2 { bottom: 0; right: -100px; background: var(--neon-blue); animation-delay: -5s; }

.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
    z-index: 1;
}

.p-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.p-hero-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #bbb;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}
.pulse-dot {
    width: 8px; height: 8px; background: var(--neon-mint);
    border-radius: 50%; box-shadow: 0 0 10px var(--neon-mint);
    animation: pulse 2s infinite;
}


.p-hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}
.gradient-text {
    background: linear-gradient(135deg, #fff 30%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.3));
}

.p-hero-desc {
    font-size: 1.2rem;
    color: #888;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3rem;
}
.highlight-underline {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--neon-purple);
    text-underline-offset: 5px;
}


.p-hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.btn-glow-primary {
    background: #fff;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex; align-items: center; gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.btn-glow-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex; align-items: center; gap: 0.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}


.p-features-pill-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.p-pill {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: #888;
    font-size: 0.9rem;
    display: flex; align-items: center; gap: 6px;
    transition: 0.3s;
}
.p-pill:hover { border-color: var(--neon-purple); color: #fff; box-shadow: 0 5px 15px rgba(139, 92, 246, 0.1); }


.p-integration {
    background: #F4F5F7; 
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
}
.dark-mode-text { color: #111 !important; }

.p-int-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 5rem;
}

.p-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.p-section-title em {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--neon-purple); 
}

.p-section-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.p-check-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.p-check-list li {
    display: flex; align-items: center; gap: 10px;
    font-weight: 500; color: #333; font-size: 1.05rem;
}
.p-check-list i { color: var(--neon-mint); font-size: 1.4rem; }

.link-styled {
    color: #000; font-weight: 700; border-bottom: 2px solid #000;
    padding-bottom: 2px; display: inline-flex; align-items: center; gap: 5px;
    transition: 0.3s;
}
.link-styled:hover { gap: 10px; color: var(--neon-purple); border-color: var(--neon-purple); }


.p-int-visual { position: relative; height: 400px; display: flex; align-items: center; }
.p-layer {
    position: absolute; border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: 0.5s;
}
.p-layer-back { width: 90%; height: 90%; background: #e5e7eb; top: 0; left: 10%; transform: rotate(-3deg); z-index: 1; }
.p-layer-mid { width: 95%; height: 95%; background: #d1d5db; top: 10px; left: 5%; transform: rotate(-1deg); z-index: 2; }
.p-layer-front {
    width: 100%; position: relative; z-index: 3;
    transform: rotate(2deg); transition: 0.5s ease-out;
}
.p-dashboard-img { width: 100%; border-radius: 12px; border: 1px solid rgba(0,0,0,0.1); }
.p-int-visual:hover .p-layer-front { transform: rotate(0) scale(1.02); }

.floating-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: #fff; padding: 1rem; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 1rem;
    animation: bounce 3s infinite ease-in-out;
}
.floating-badge i { font-size: 1.5rem; color: #ef4444; background: #fee2e2; padding: 0.5rem; border-radius: 50%; }
.floating-badge small { display: block; color: #666; font-size: 0.8rem; }
.floating-badge span { display: block; font-weight: 700; color: #000; }


.p-features {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
}
.p-features-header { text-align: center; margin-bottom: 5rem; }
.gradient-text-2 {
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.p-tabs {
    display: inline-flex;
    background: rgba(255,255,255,0.05);
    padding: 5px; border-radius: 50px;
    margin-top: 2rem; border: 1px solid var(--glass-border);
}
.p-tab {
    background: transparent; border: none; color: #888;
    padding: 0.8rem 2rem; border-radius: 50px; cursor: pointer;
    font-weight: 600; transition: 0.3s;
}
.p-tab.active, .p-tab:hover { background: #fff; color: #000; box-shadow: 0 5px 15px rgba(255,255,255,0.2); }


.p-card-showcase {
    position: relative;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: rgba(20, 20, 22, 0.6); 
    backdrop-filter: blur(20px);
    overflow: hidden;
    margin-bottom: 4rem;
    min-height: 500px;
    display: flex;
}

.p-card-bg-glow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.15; z-index: 0; pointer-events: none;
    transition: opacity 0.5s;
}
.theme-mint .p-card-bg-glow { background: radial-gradient(circle at 80% 50%, var(--neon-mint), transparent 60%); }
.theme-purple .p-card-bg-glow { background: radial-gradient(circle at 80% 50%, var(--neon-purple), transparent 60%); }

.p-card-content {
    display: grid; grid-template-columns: 1fr 1fr;
    width: 100%; z-index: 1; position: relative;
}

.p-card-text {
    padding: 4rem;
    display: flex; flex-direction: column; justify-content: center;
}
.p-card-text h3 {
    font-size: 2.2rem; color: #fff; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 1rem;
}
.p-card-text p { color: #9ca3af; line-height: 1.6; margin-bottom: 2.5rem; font-size: 1.05rem; }

.p-cmd-list { display: flex; flex-direction: column; gap: 1.5rem; }
.p-cmd {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem; border-radius: 12px; transition: 0.3s;
}
.p-cmd:hover { background: rgba(255,255,255,0.08); transform: translateX(10px); }
.p-cmd code {
    display: block; font-family: 'Consolas', monospace; color: #fff;
    font-weight: 700; font-size: 1.1rem; margin-bottom: 0.3rem;
}
.theme-mint .p-cmd code { color: var(--neon-mint); }
.theme-purple .p-cmd code { color: var(--neon-purple); }
.p-cmd span { font-size: 0.9rem; color: #666; }


.p-card-visual {
    background: rgba(0,0,0,0.2);
    display: flex; align-items: center; justify-content: center;
    border-left: 1px solid var(--glass-border);
}

.discord-embed-wrapper {
    background: #36393f; 
    padding: 1rem;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    font-family: 'gg sans', 'Helvetica Neue', Arial, sans-serif;
    transform: perspective(1000px) rotateY(-5deg);
    transition: 0.5s;
}
.p-card-showcase:hover .discord-embed-wrapper { transform: perspective(1000px) rotateY(0deg) scale(1.02); }

.discord-message { display: flex; gap: 1rem; }
.d-avatar img { width: 40px; height: 40px; border-radius: 50%; }
.d-username { color: #fff; font-weight: 500; display: flex; align-items: center; gap: 5px; margin-bottom: 5px; }
.d-bot-tag { background: #5865f2; font-size: 0.6rem; padding: 2px 5px; border-radius: 3px; color: #fff; }

.d-embed {
    background: #2f3136; border-left: 4px solid;
    padding: 10px; border-radius: 4px; max-width: 100%;
}
.mint-border { border-left-color: var(--neon-mint); }
.purple-border { border-left-color: var(--neon-purple); }

.d-embed-title { font-weight: 700; color: #fff; margin-bottom: 8px; }
.d-embed-desc { color: #dcddde; font-size: 0.9rem; line-height: 1.4; }
.d-embed-image { height: 100px; background: #202225; margin-top: 10px; border-radius: 4px; }

.d-buttons { margin-top: 10px; display: flex; gap: 10px; flex-wrap: wrap; }
.d-btn {
    border: none; padding: 8px 16px; border-radius: 4px; color: white;
    font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: 0.2s;
}
.btn-primary { background: #5865f2; }
.btn-secondary { background: #4f545c; }
.btn-green { background: var(--neon-mint); color: #000; }
.btn-red { background: #ef4444; }
.d-btn:hover { opacity: 0.9; transform: translateY(-1px); }


@media screen and (max-width: 992px) {
    .p-hero-title { font-size: 3rem; }
    .p-int-grid { grid-template-columns: 1fr; text-align: center; }
    .p-int-info { order: 1; } .p-int-visual { order: 2; justify-content: center; }
    .p-check-list { align-items: center; }
    .p-card-content { grid-template-columns: 1fr; }
    .p-card-visual { padding: 3rem 0; border-left: none; border-top: 1px solid var(--glass-border); }
}

@keyframes floatGlow { 0% { transform: translate(0, 0); } 100% { transform: translate(50px, 50px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }






.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}


.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bento-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bento-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    width: 70px;
    height: 70px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}


.card-mc .bento-icon i { color: #8b5cf6; } 
.card-mc:hover { border-color: rgba(139, 92, 246, 0.5); }

.card-forum .bento-icon i { color: #f59e0b; } 
.card-forum:hover { border-color: rgba(245, 158, 11, 0.5); }

.card-community .bento-icon i { color: #3b82f6; } 
.card-community:hover { border-color: rgba(59, 130, 246, 0.5); }

.bento-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}
.bento-card p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mini-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mini-tags span {
    background: rgba(0,0,0,0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.05);
}


.tab-content {
    display: none;
    animation: fadeEffect 0.5s;
}
.active-content {
    display: block;
}

@keyframes fadeEffect {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}


.cmd-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}


.theme-red .p-card-bg-glow { background: radial-gradient(circle at 80% 50%, #ef4444, transparent 60%); }
.theme-red .d-embed { border-left-color: #ef4444; }

.theme-blue .p-card-bg-glow { background: radial-gradient(circle at 80% 50%, #3b82f6, transparent 60%); }
.theme-blue .d-embed { border-left-color: #3b82f6; }


@media screen and (max-width: 992px) {
    .bento-grid { grid-template-columns: 1fr; }
    .cmd-grid-2 { grid-template-columns: 1fr; }
    .p-tabs { flex-wrap: wrap; justify-content: center; }
}