/* Welcome to the most outrageous CSS file you'll see today! */

body {
    font-family: "Comic Sans MS", cursive, sans-serif !important;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
    cursor: url('https://cur.cursors-4u.net/cursors/cur-11/cur1054.cur'), auto !important;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    border: 3px dashed #ff69b4;
    position: relative;
    z-index: 10;
}

header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px dotted #ff1493;
}

.rainbow-text {
    font-size: 3em;
    font-weight: bold;
    text-shadow: 3px 3px 0 #000, -3px -3px 0 #fff, 3px -3px 0 #000, -3px 3px 0 #fff;
    margin: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.tagline {
    font-size: 1.5em;
    color: #ff69b4;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero {
    text-align: center;
    padding: 30px 0;
    background: radial-gradient(circle, #fffacd 0%, #ffebcd 100%);
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid #ffd700;
}

.potato-icon {
    width: 100px;
    height: 100px;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero h2 {
    color: #ff8c00;
    font-size: 2.5em;
    text-decoration: underline;
    text-decoration-color: #ff1493;
    text-decoration-style: wavy;
}

.benefits {
    background-color: rgba(255, 105, 180, 0.2);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border: 1px solid #ff69b4;
}

.benefits h3 {
    color: #ff1493;
    font-size: 1.8em;
    text-align: center;
}

.benefits-list {
    list-style-type: none;
    padding: 0;
}

.benefits-list li {
    padding: 10px;
    margin: 5px 0;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-size: 1.2em;
    transition: all 0.3s;
}

.benefits-list li:hover {
    transform: translateX(20px);
    background-color: #fff0f5;
    box-shadow: 0 0 15px #ff69b4;
}

.toppings {
    text-align: center;
    padding: 20px;
    background: linear-gradient(45deg, #fffacd, #ffebcd);
    border-radius: 15px;
    margin: 20px 0;
}

.toppings h3 {
    color: #daa520;
    font-size: 1.8em;
}

.toppings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.topping {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 15px;
    border: 2px dashed #ff8c00;
    transition: all 0.3s;
}

.topping:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px #ffd700;
    background-color: #fff8dc;
}

.topping-icon {
    width: 50px;
    height: 50px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.cta {
    text-align: center;
    padding: 30px;
    background: radial-gradient(circle, #ffebcd 0%, #ffd700 100%);
    border-radius: 15px;
    margin: 20px 0;
}

.cta h3 {
    color: #8b4513;
    font-size: 1.8em;
}

.bling-button {
    background: linear-gradient(45deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
    background-size: 600% 600%;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 0 20px gold;
    transition: all 0.3s;
    animation: rainbow 3s ease infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes rainbow {
    0% { background-position: 0% 82%; }
    50% { background-position: 100% 19%; }
    100% { background-position: 0% 82%; }
}

.bling-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px #fff;
}

.fine-print {
    font-size: 0.8em;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 2px dotted #ff1493;
}

footer p {
    margin: 0;
    color: #8b0000;
}

.social-icons {
    margin-top: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.5) rotate(360deg);
}

.background-gifs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bling-gif {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.8;
    pointer-events: none;
}

#bling1 {
    top: 20%;
    left: 20%;
}

#bling2 {
    top: 60%;
    left: 70%;
}

#bling3 {
    top: 80%;
    left: 30%;
}

/* Extra bling effects */
::selection {
    background: linear-gradient(90deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff);
    color: white;
}

* {
    transition: all 0.3s ease;
}

/* Make everything wobble a bit */
@keyframes wobble {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.container {
    animation: wobble 8s ease-in-out infinite;
}