/* === General Page Styles === */
body {
    font-family: 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #f4f4f4, #e0f7fa);
    color: #333;
}

/* === Header === */
header {
    background: linear-gradient(90deg, #ff512f, #dd2476);
    color: white;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

/* === Navigation === */
nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #ffeb3b;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #00e676;
}

/* === Sections === */
section {
    padding: 25px;
    margin: 20px auto;
    width: 85%;
    border-radius: 12px;
    background: white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

h2 {
    color: #222;
    margin-top: 0;
}

/* === Section Accent Borders (ID Selectors) === */
#Intro { border-left: 8px solid #ff5722; }
#History { border-left: 8px solid #3f51b5; }
#Tricks { border-left: 8px solid #009688; }
#Famous { border-left: 8px solid #e91e63; }
#Cool { border-left: 8px solid #4caf50; }

/* === Images === */
img {
    max-width: 80px;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* === Tables === */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table th {
    background: #ff9800;
    color: white;
    padding: 10px;
}

table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

tfoot td {
    background: #ffecb3;
    font-style: italic;
}

/* === Footer === */
footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(90deg, #2196f3, #00bcd4);
    color: white;
    margin-top: 30px;
}

/* === Class Selectors === */
.author {
    font-weight: bold;
    color: #ffeb3b;
}

.highlight {
    background: #ffff8d;
    padding: 2px 6px;
    border-radius: 4px;
}
