body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fafafa; /* Sweetie Belle's Coat (White/Off-white) */
    /* Soft gradient from White to Pale Lavender */
    background-image: linear-gradient(135deg, #fafafa 25%, #f3e5f5 100%);
    padding: 20px;
    color: #4a2c4a; /* Dark Purple Text (kept for readability) */
    margin: 0;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    /* Mane Pink Border */
    border: 4px solid #f48fb1;
    /* Soft Pink Glow */
    box-shadow: 0 4px 15px rgba(244, 143, 177, 0.3);
    max-width: 900px;
    margin: 20px auto;
}

h1 {
    color: #ce93d8; /* Light Purple/Lavender Mane color */
    border-bottom: 3px dashed #f48fb1; /* Pink */
    padding-bottom: 15px;
    margin-top: 0;
    text-align: center;
}

h3 {
    color: #f06292; /* Darker Pink */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #f3e5f5; /* Very light purple */
    padding-bottom: 5px;
}

h3 a { display: inline; background: none; padding: 0; color: inherit; text-decoration: none; }
h3 a:hover { color: #ba68c8; /* Purple hover */ }

.flash-note {
    background-color: #fff0f5; /* Lavender Blush */
    border: 1px solid #ce93d8;
    color: #880e4f; /* Deep Pink text */
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9em;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.directory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 600px) {
    .directory-grid { grid-template-columns: 1fr; }
}

ul { list-style-type: none; padding: 0; margin: 0; }
li { margin: 12px 0; }
.spacer { margin-top: 30px; }

/* Main File Links */
a.file-link {
    text-decoration: none;
    color: #6a1b9a; /* Deep Purple */
    font-weight: 600;
    font-size: 16px;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: #fce4ec; /* Very light pink background */
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

a.file-link:hover {
    background-color: #f8bbd0; /* Slightly darker pink */
    color: #4a148c; /* Darker Purple */
    border-color: #f48fb1;
    transform: translateX(5px);
}

a.file-link::before {
    content: "🎶 "; /* Musical Note for Sweetie Belle */
    color: #f06292;
    margin-right: 8px;
}

a.file-link:hover::before { color: #ba68c8; }

/* Inline Examples */
.example-row {
    margin-left: 15px;
    margin-top: -5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid #f48fb1; /* Pink border */
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.example-label {
    font-size: 0.85em;
    color: #880e4f;
    font-weight: bold;
    text-transform: uppercase;
}

a.inline-link {
    text-decoration: none;
    color: #6a1b9a;
    font-weight: 600;
    display: inline-block;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #f48fb1; /* Pink border */
    transition: all 0.2s;
}

a.inline-link:hover {
    background-color: #fff0f5;
    color: #d81b60;
    border-color: #ce93d8;
}

/* Styles specifically for the game player pages */
.controls-box {
    background-color: #f3e5f5; /* Light Purple */
    border: 2px solid #ce93d8;
    color: #4a2c4a;
}
.controls-title { color: #8e44ad; }
#swfContainer { border: 2px solid #f48fb1; }
