/* General Body Styles */
body {
    font-family: 'Verdana', sans-serif; /* Friendly, sturdy font like the ship */
    background-color: #0099CC; /* Bright Sunny Sea Blue */
    color: #333;
    margin: 20px;
    background-image: radial-gradient(circle, #0099CC 10%, #0077BE 90%); /* Sun shining on water */
}

h1 {
    text-align: center;
    color: #FFD700; /* Sunny Lion Gold */
    font-size: 3em;
    font-weight: 900;
    /* The Lion's Mane (Orange/Red Shadow) */
    text-shadow: 3px 3px 0px #FF4500, 
                 -1px -1px 0 #8B0000; 
    border-bottom: 4px dashed #FFFFFF; /* White wake/waves */
    padding-bottom: 15px;
    letter-spacing: 2px;
}

/* Unstyled Section (The Dock) */
#unstyled-section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #005f99;
}

/* Part 2: Custom Thousand Sunny Styling */
.demo-container {
    margin-top: 40px;
    text-align: center;
}

/* The Card - Modeled after the Sunny's Hull & Soldier Dock System */
.card {
    background-color: #FFF8DC; /* Cornsilk/Light Wood (Deck/Sails) */
    /* The Sunny's distinct Red Siding/Hull */
    border: 8px solid #D92525; 
    border-radius: 25px; /* Curvier design than the Merry */
    width: 60%;
    margin: 0 auto;
    padding: 25px;
    /* Wood texture background */
    background-image: repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(0,0,0,0.03) 20px);
    box-shadow: 0px 10px 0px #8B0000; /* Deep red 3D shadow */
    position: relative;
}

/* Add a "Soldier Dock" number badge effect to the top corner */
.card::before {
    content: "1"; /* Soldier Dock Channel 1 */
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: #D92525;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 50px;
    border: 3px solid white;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

/* Heading - The "Lion Figurehead" Style */
.fancy-heading {
    font-family: 'Impact', sans-serif;
    font-size: 3em;
    color: #D92525; /* Red like the mouth/accents */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    /* Gold outline for the sun face */
    text-shadow: 
        2px 2px 0px #FFD700,
        -1px -1px 0px #FFD700;
}

/* Main Text - Dark Wood Color */
.styled-text {
    font-size: 1.2em;
    color: #5c3a21; /* Dark Wood */
    line-height: 1.6;
    font-weight: bold;
}

/* The Image - Porthole / Window Style */
.styled-image {
    width: 100%;
    max-width: 400px;
    /* Thick wood frame like the Galley door */
    border: 8px solid #8B4513; 
    border-radius: 15px; 
    margin: 20px 0;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.styled-image:hover {
    transform: scale(1.05); /* Coup de Burst pop! */
}

/* Promo Text - The "Grass Deck" Feature */
.promo-text {
    font-size: 1.4em;
    font-weight: 900;
    color: #006400; /* Dark Green Text */
    background-color: #7CFC00; /* Lawn Green (Sunny's unique deck) */
    padding: 15px;
    border-radius: 10px;
    border: 2px dashed #006400;
    margin-top: 20px;
}