/* ------------------------
   Global Styles
------------------------ */
body {
    font-family: 'Comic Sans MS', Arial, sans-serif;
    background-color: #121212;
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    animation: fadeIn 1s ease-in;
}

/* ------------------------
   Page Load Animation
------------------------ */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ------------------------
   Links
------------------------ */
a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: #FFD700;
    background: rgba(255, 255, 0, 0.2);
    border-radius: 5px;
    padding: 2px 4px;
}

/* ------------------------
   Buttons
------------------------ */
button {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 12px 25px;
    background-color: #32CD32;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
}

button:hover {
    background-color: #28a745;
}

/* ------------------------
   Ripple Effect
------------------------ */
button:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 8px;
}

button:active::after {
    background: rgba(255, 255, 255, 0.3);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}

/* ------------------------
   Section Styling
------------------------ */
.section {
    background: rgba(0,0,0,0.7);
    margin: 2rem auto;
    padding: 2rem;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* ------------------------
   Fabric Requirement Section
------------------------ */
.fabric-section a {
    color: #00bfff;
    font-weight: bold;
}

/* ------------------------
   Plugin List
------------------------ */
.plugin-list {
    list-style-type: none;
    padding: 0;
}

.plugin-list li {
    margin: 0.5rem 0;
}

.plugin-list li a {
    color: #FFD700;
}
