
/* General Styling */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: linear-gradient(180deg, #fff9f0, #ffe5ec);
    color: #2c2c2c;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background: linear-gradient(90deg, #ffb347, #ffcc33);
    padding: 2rem;
    color: #222;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

header p {
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Wallet Button */
button {
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    background-color: #ff69b4;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
}

button:hover {
    transform: scale(1.05);
}

/* Swipe Container */
.swipe-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 2rem 1rem;
    background: #fff0f5;
}

.card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: white;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 0 18px rgba(0,0,0,0.1);
    font-size: 1.5rem;
}

/* Swap Section */
.swap-section {
    margin: 2rem;
}

.swap-button {
    background: linear-gradient(90deg, #20c997, #17a2b8);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
}

.swap-button:hover {
    background: linear-gradient(90deg, #17a2b8, #20c997);
}

/* Footer Links */
footer {
    background: #fefefe;
    padding: 1rem;
    margin-top: 3rem;
    border-top: 1px solid #ddd;
}

footer a {
    color: #ff69b4;
    text-decoration: none;
    margin: 0 1rem;
}

footer a:hover {
    text-decoration: underline;
}

.meme-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
}
