/* ===== SPIDER-MAN THEME ===== */

body {
    background-color: #1e3a8a; /* Spider-Man blue */
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #ffffff;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url("spiderweb.png");
    background-repeat: repeat;
    background-size: 180px 180px;
    background-position: top left;

    opacity: 0.18; /* 🔥 adjust this number */
    pointer-events: none;
    z-index: 0;
}

/* Header */
header {
    background: linear-gradient(to right, #b30000, #ff0000);
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

h1 {
    margin: 0;
    font-size: 32px;
    letter-spacing: 2px;
}

/* Main Container */
.container {
    padding: 30px;
    max-width: 900px;
    margin: auto;
}

/* Profile Image */
img.profile {
    display: block;
    margin: 25px auto;
    border-radius: 50%;
    border: 5px solid #ff0000;
    box-shadow: 0 0 20px #000;
}

/* Section Titles */
h2 {
    color: #ff4d4d;
    margin-top: 40px;
}

/* Divider */
hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right, red, blue);
    margin: 40px 0;
}

/* Table Styling */
table {
    margin: auto;
    border-collapse: collapse;
    width: 85%;
    background-color: #e6f0ff;
    color: #000;
    border-radius: 10px;
    overflow: hidden;
}

th {
    background-color: #99c2ff;
    color: black;
    padding: 12px;
}

td {
    padding: 10px;
    border: 1px solid #ccc;
}

tr:nth-child(even) {
    background-color: #cce0ff;
}

tr:hover {
    background-color: #99c2ff;
    transition: 0.3s;
}

/* Links */
a {
    color: #ff4d4d;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px red;
}

/* Videos */
.videos iframe {
    margin: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}