Posts

Login to Post

For You

Browsing public posts. Log in to see your friends feed and join the conversation.

Spidel · 4 months ago

In Blog: Club Cyberia (Music blog :3)

I love Albuquerque by Weird Al

💬 2 comments
❤️ 2 🔥 2

Top Comment by kattleprod · 1 reaction

my fav weird al song and thats saying a lot :D

Eggs · 4 months ago

Standalone

iggy male

i greatly enjoy iggy male she is my favourite sinner tho i also like heat clit he is aclose second i dont really have anything big to say i just like iggy male

images (2).jpg
💬 0 comments
💞 1 💖 1

Zara Zelona · 4 months ago

In Blog: Club Cyberia (Music blog :3)

Jhariah

PLEASE PEOPLE LISTEN TO JHARIAH TRUST ME HE'S SO GOOD

https://www.youtube.com/@Jhariah

The main album I'd suggest is his most recent, being Trust Ceremony; each song is just so distinct it's amazing

https://www.youtube.com/playlist?list=PLNk2OQjYEkMaLPUzlvBuwfKb2-9QPTvd5

Besides, each song also tells a (from what I can tell) semi-connected story, and it's great!!

a0215718583_10.jpg
💬 1 comment
💝 1 💞 1 💕 1 💖 1 ❤️ 1 💓 1

Top Comment by Fopull ADMIN · 0 reactions

i’m gonna listen to everything in this blog soon >:0

Novaa · 4 months ago

In Blog: Who y'all main in Smash?

My Smash Bros Main(s)?

💬 2 comments
💝 1 💞 1 💕 1 💖 1 ❤️ 1 💓 1

Top Comment by Zara Zelona · 6 reactions

Fire lineup lowk I will judge a lil for Sora since fighting them can be a bit meh, but solid either way!

Novaa · 4 months ago

In Blog: Club Cyberia (Music blog :3)

Deko - Nu Radio

💬 8 comments
❤️ 1 💕 1 💖 1 💓 1

Top Comment by Fopull ADMIN · 2 reactions

listening to it in the car tomorrow >:3

Fopull ADMIN · 4 months ago

In Blog: Who y'all main in Smash?

Link

💬 3 comments
👌 1 🤢 1

Top Comment by Zara Zelona · 5 reactions

This is true! Bomb sniping is fire!!

Eggs · 4 months ago

Standalone

what yopu are favourite pokemon

💬 5 comments
🐰 2 💕 1 🦊 1 ❤️ 1

Top Comment by Spidel · 1 reaction

Mine is probably leafeon

Gambling Fopull · 4 months ago

Standalone

My karma

💬 2 comments

Top Comment by Fopull ADMIN · 0 reactions

i deleted all the spam ones it was making the feed ugly

Zara Zelona · 4 months ago

In Blog: Club Cyberia (Music blog :3)

Azali

💬 5 comments
💖 2 💕 2 💓 2 ❤️ 2 🔥 2 ✅ 1

Top Comment by Zara Zelona · 5 reactions

https://youtu.be/6_tfys0CP4k?si=QpaRqrpUP9W1Tx0H I ALSO FORGOT TO INCLUDE TO DUST THOU SHALT RETURN, CRAZY COLLAB SONG HONESTLY

HoodlyTheOwl · 4 months ago

Standalone

chat who here likes abstragedy tadc?

i WILL be the healthy yuri artist on this site

selection.png
💬 2 comments
🔥 3 💝 1 ❤️ 1 💞 1 👍 1 💖 1 💓 1

Top Comment by Fopull ADMIN · 0 reactions

cinema

bubbaboogs · 4 months ago

Standalone

hello everybody

💬 3 comments

Top Comment by Fopull ADMIN · 0 reactions

i’ll buy it twin ❤️

FopTestUser · 4 months ago

In Blog: Profile Customization Hub!

Another profile customization template

💬 0 comments

Fopull ADMIN · 4 months ago

In Blog: Profile Customization Hub!

My current custom profile css

Feel free to take my current css, modify it, do whatever! I just hope this encourages more people to experiment with it :3

copy the following text and paste it into the custom css section when editing your profile:


:root {

    --bg: #060005;

    --surface: #120008;

    --border: #7a0020;

    --accent1: #c0002a;

    --accent2: #e03060;

    --text: #f0d0d8;

    --text-muted: #7a4050;

}



@keyframes bloodpulse {

    0% { background-color: #0f0008; }

    50% { background-color: #060005; }

    100% { background-color: #0f0008; }

}



@keyframes redglow {

    0% { border-color: #7a0020; box-shadow: 0 0 6px #7a002066, 0 0 14px #3a001044; }

    50% { border-color: #c0002a; box-shadow: 0 0 10px #c0002088, 0 0 22px #7a002055; }

    100% { border-color: #7a0020; box-shadow: 0 0 6px #7a002066, 0 0 14px #3a001044; }

}



@keyframes eyeglow {

    0% { text-shadow: 0 0 8px #9a0025bb, 0 0 20px #6a001544; }

    50% { text-shadow: 0 0 14px #c0002acc, 0 0 30px #8a002066; }

    100% { text-shadow: 0 0 8px #9a0025bb, 0 0 20px #6a001544; }

}



@keyframes float {

    0% { transform: translateY(0px); }

    50% { transform: translateY(-5px); }

    100% { transform: translateY(0px); }

}



@keyframes flicker {

    0%, 95%, 100% { opacity: 1; }

    96% { opacity: 0.92; }

    97% { opacity: 1; }

    98% { opacity: 0.88; }

    99% { opacity: 1; }

}



body {

    animation: bloodpulse 5s ease-in-out infinite;

    background-image: 

        repeating-linear-gradient(

            0deg,

            transparent,

            transparent 3px,

            rgba(150, 0, 20, 0.025) 3px,

            rgba(150, 0, 20, 0.025) 4px

        );

}



.navbar {

    animation: flicker 10s infinite;

    background: linear-gradient(90deg, #060005, #120008, #060005) !important;

    border-bottom: 2px solid #7a0020 !important;

    box-shadow: 0 2px 16px #5a001599;

}



.footer {

    background: linear-gradient(90deg, #060005, #120008, #060005) !important;

    border-top: 1px solid #7a0020 !important;

}



.card {

    animation: redglow 4s ease-in-out infinite;

    background: linear-gradient(135deg, #120008 0%, #080005 100%) !important;

}



h1, h2, h3 {

    animation: eyeglow 4s ease-in-out infinite;

    letter-spacing: 2px;

}



.btn {

    border-color: #7a0020 !important;

    color: #e03060 !important;

    background: transparent !important;

    transition: all 0.2s !important;

}



.btn:hover {

    background: #7a002033 !important;

    border-color: #c0002a !important;

    color: #f0d0d8 !important;

    transform: scale(1.03);

    box-shadow: 0 0 10px #c0002066;

}



img[style*="border-radius:50%"] {

    animation: float 4s ease-in-out infinite;

    box-shadow: 0 0 14px #9a002077, 0 0 28px #5a001044;

}



a {

    color: #e03060 !important;

    -webkit-text-fill-color: #e03060 !important;

}



a:hover {

    color: #f08090 !important;

    -webkit-text-fill-color: #f08090 !important;

    text-shadow: 0 0 6px #c0002066;

}



hr {

    border-image: linear-gradient(90deg, transparent, #7a0020, #c0002a, #7a0020, transparent) 1;

}



input, textarea, select {

    background: #0f0007 !important;

    border-color: #7a0020 !important;

    color: #f0d0d8 !important;

}

image_2026-04-02_172317257.png
💬 0 comments

Fopull ADMIN · 4 months ago

In Blog: Club Cyberia (Music blog :3)

I loooove Stomach Book

image_2026-04-02_171843983.jpg
💬 0 comments
💯 1

Fopull ADMIN · 4 months ago

In Blog: Foverse UPDATE LOG

UPDATE 0.1.0

💬 0 comments

Spidel · 4 months ago

Standalone

Crts

I love my old cathode Ray Tubes!!!

20260321_154725.jpg
💬 3 comments
💻 3

Top Comment by Fopull ADMIN · 0 reactions

thats so peak i want a crt so bad it would be fun to develop pixel art games on them

Gambling Fopull · 4 months ago

Standalone

Went to school

💬 0 comments

Eggs · 4 months ago

Standalone

bunnies

🐰🐰🐰🐰🐇🐰🐰🐇🐇🐇🐰🐇🐰🐇🐰🐇🐇🐇🐰🐇🐇

Bunnies!.mp3

💬 3 comments
🔥 2 🐰 1

Top Comment by Zara Zelona · 0 reactions

THIS IS THE BEST POST I'VE EVER 5READ EVER OMG!!@@!!

Zara Zelona · 4 months ago

In Blog: Zara Card Progress Blog

P.I.L.O.T 3-56, The Ace of Spades

💬 1 comment
🔥 3

Top Comment by Fopull ADMIN · 0 reactions

ok dis one’s my favorite i freaking love this is sick :DD !!

Novaa · 4 months ago

Standalone

First post :D

💬 1 comment
❤️ 1 💓 1 💕 1 💞 1 💖 1 💝 1

Top Comment by Fopull ADMIN · 1 reaction

haiiii !!!! welcome to foverse !! :333 feel free to post about anything u want !