/* ==========================================================================
   CSS STYLING DEMONSTRATION
   ========================================================================== */

body {
    margin: 20px;
    padding: 0;
}

hr {
    margin: 50px 0;
    border: 0;
    border-top: 3px dashed #ccc;
}

/* --------------------------------------------------------------------------
   Container Styling (.class selector)
   -------------------------------------------------------------------------- */
.styled-section {
    background: linear-gradient(135deg, #1e1e2f 0%, #2a2a40 100%);
    color: #f5f5f7;
    padding: 40px;
    border-radius: 15px;
    border: 4px solid #ff4a5a;
}

/* --------------------------------------------------------------------------
   Heading & Text Adjustments
   -------------------------------------------------------------------------- */
.styled-main-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #ff4a5a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.styled-heading {
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    color: #00b0ff;
    border-bottom: 2px solid #00b0ff;
    padding-bottom: 5px;
}

/* --------------------------------------------------------------------------
   Paragraph Styling
   -------------------------------------------------------------------------- */
.styled-paragraph {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-left: 5px solid #ff4a5a;
}

/* --------------------------------------------------------------------------
   Advanced Font Properties
   -------------------------------------------------------------------------- */
.variant-text {
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    color: #ffd700;
    text-align: center;
    font-variant: small-caps; 
}

/* --------------------------------------------------------------------------
   Transform & Transition Properties
   -------------------------------------------------------------------------- */
.styled-image {
    display: block;
    margin: 20px auto;
    border: 4px solid #ffffff;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.styled-image:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

/* --------------------------------------------------------------------------
   Animation Property
   -------------------------------------------------------------------------- */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(0, 230, 118, 0.4);
    }
    5