body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #36393e;
    color: #ffffff;
    margin: 0;
    min-height: 100vh;
}

.hero-banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    border-bottom: 4px solid #05b03e;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.card {
    padding: 20px;
    text-align: center;
    background-color: #424549;
    color: #ffffff;
    border-radius: 13px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card .card-content {
    border-radius: 13px !important;
}

.main-card {
    margin-top: -30px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #424549 0%, #2f3136 100%);
    border: 1px solid #05b03e;
}

.feature-card {
    height: 100%;
    transition: transform 0.3s ease;
    background-color: #424549 !important;
    border: 1px solid #2f3136;
}

.feature-card .card-content {
    background-color: #424549 !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    border: 1px solid #6a0dad;
    background-color: #2f3136 !important;
}

.feature-card p {
    color: #e0e0e0;
}

.cta-card {
    margin-top: 2rem;
    background: linear-gradient(135deg, #6a0dad 0%, #4a0b77 100%);
}

.cta-card.notification {
    background: linear-gradient(135deg, #424549 0%, #2f3136 100%) !important;
    border: 2px solid #ffb300;
    position: relative;
    padding-left: 40px;
}

.cta-card.notification:before {
    content: "⚠️";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.cta-card.notification .card-title {
    color: #ffb300 !important;
    font-size: 1.8rem;
}

.cta-card.notification .flow-text {
    color: #ffd54f;
}

.quote-card {
    margin-top: 2rem;
    background: linear-gradient(135deg, #2f3136 0%, #424549 100%) !important;
    border: 1px solid #6a0dad;
}

.quote-image {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.flow-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 1.5rem 0;
    color: #e0e0e0;
}

.btn-large {
    margin: 1rem 0;
    background-color: #05b03e !important;
}

.btn-large:hover {
    background-color: #048f32 !important;
}

#copy-button {
    background-color: #6a0dad !important;
}

#copy-button:hover {
    background-color: #4a0b77 !important;
}

.card-title {
    color: #ffffff !important;
    font-weight: bold !important;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: -15px 0 15px 0;
    z-index: 3;
    position: relative;
}

.social-btn {
    background: linear-gradient(135deg, #05b03e 0%, #6a0dad 100%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.social-btn i {
    color: white;
    font-size: 1.5rem;
}

.social-btn .fa-x {
    font-size: 1.3rem;
}

.social-btn .fa-x-twitter {
    font-size: 1.2rem;
}

.meme-gallery-card {
    margin-top: 2rem;
    background: linear-gradient(135deg, #424549 0%, #2f3136 100%) !important;
    border: 1px solid #05b03e;
}

.meme-grid {
    margin-top: 1.5rem;
}

.meme-item {
    padding: 10px;
    transition: transform 0.3s ease;
    position: relative;
}

.download-btn {
    margin-top: 10px;
    background-color: #05b03e !important;
    width: 100%;
}

.download-btn:hover {
    background-color: #6a0dad !important;
}

.download-btn i {
    font-size: 18px;
}

.meme-item:hover {
    transform: scale(1.05);
}

.meme-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bottom-social {
    margin-top: 3rem;
    padding-bottom: 2rem;
}

#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    animation: twinkle 3s infinite, float 15s linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100vh); }
}
