/* Reset and base styles */
:root {
    --wwe-red: #ff0000;
    --wwe-black: #000000;
    --wwe-white: #ffffff;
    --wwe-gray: #333333;
    --wwe-dark-gray: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--wwe-white);
    background-color: var(--wwe-black);
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Navigation */
header {
    background-color: var(--wwe-black);
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 35px;
    z-index: 1000;
    border-bottom: 3px solid var(--wwe-red);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0 2rem;
    margin: 0;
}

nav a {
    color: var(--wwe-white);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

nav a:hover {
    color: var(--wwe-red);
    text-shadow: 0 0 15px var(--wwe-red);
}

/* Main content */
main {
    margin-top: 90px;
}

section {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

h1, h2, h3 {
    color: var(--wwe-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--wwe-black) 0%, var(--wwe-dark-gray) 100%);
    text-align: center;
    padding: 3rem 2rem;
    color: var(--wwe-white);
    border-bottom: 3px solid var(--wwe-red);
    position: relative;
    overflow: hidden;
}

.entrance-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--wwe-red);
    border-radius: 8px;
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    max-width: 1200px;
    margin: 0 auto;
}

.entrance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.entrance-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 2rem;
}

.entrance-info {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.entrance-info h1 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 0;
    line-height: 1.2;
    color: var(--wwe-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.entrance-info .subtitle {
    text-align: center;
    font-size: 1.1em;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: var(--wwe-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.entrance-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--wwe-red);
    box-shadow: 0 0 30px var(--wwe-red);
    position: relative;
    z-index: 1;
    animation: glowPulse 2s infinite;
}

.title-suffix {
    color: var(--wwe-red);
    font-size: 0.9em;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    display: block;
    margin: 0;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
    padding-top: 0.3rem;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    width: 100%;
}

.cta-button {
    background-color: var(--wwe-red);
    color: var(--wwe-white);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--wwe-red);
    position: relative;
    overflow: hidden;
    width: auto;
    text-align: center;
    font-size: 0.9em;
    white-space: nowrap;
    display: inline-block;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--wwe-red);
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--wwe-red);
}

.visitor-counter {
    margin-top: 2rem;
    font-size: 1.1em;
    color: var(--wwe-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tale of the Champion section */
.about {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wwe-black) 0%, var(--wwe-dark-gray) 100%);
}

.champion-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--wwe-red);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.champion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.champion-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex-grow: 1;
    padding: 1rem;
}

.champion-intro {
    color: var(--wwe-white);
    font-size: 1.2em;
    line-height: 1.6;
    margin: 1rem 0 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.champion-card h2 {
    color: var(--wwe-red);
    margin-bottom: 1.5rem;
    font-size: 2em;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

.champion-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wwe-red), transparent);
}

/* Champion Skills and Languages */
.champion-skills,
.champion-languages {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--wwe-red);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    margin: 1rem 0;
    flex: 1;
}

.champion-skills:hover,
.champion-languages:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.champion-skills h3,
.champion-languages h3 {
    color: var(--wwe-red);
    font-size: 1.4em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    position: relative;
    padding-bottom: 0.75rem;
}

.champion-skills h3::after,
.champion-languages h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wwe-red), transparent);
}

.champion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.champion-list li {
    margin: 0.5rem 0;
    color: var(--wwe-white);
    font-size: 1.1em;
    transition: all 0.3s ease;
    line-height: 1.4;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
}

.champion-list li:hover {
    color: var(--wwe-red);
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    transform: translateX(5px);
    border-color: rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
}

/* Career section */
.career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.career-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--wwe-red);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.career-card h3 {
    color: var(--wwe-red);
    margin-bottom: 1.5rem;
    font-size: 1.5em;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.3;
}

.career-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wwe-red), transparent);
}

.career-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.career-card .company {
    color: var(--wwe-white);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.career-card .duration {
    color: var(--wwe-white);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.9em;
    opacity: 0.9;
}

.career-card .responsibilities {
    margin: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.career-card .responsibilities h4 {
    color: var(--wwe-red);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1em;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.career-card .responsibilities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-card .responsibilities li {
    color: var(--wwe-white);
    margin: 0.8rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1em;
    transition: all 0.3s ease;
}

.career-card .responsibilities li:hover {
    color: var(--wwe-red);
    transform: translateX(5px);
}

.career-card .highlight {
    margin-top: auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.career-card .highlight:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
}

.career-card .highlight-label {
    color: var(--wwe-red);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    font-size: 1.2em;
    display: block;
}

.career-card .highlight p {
    color: var(--wwe-white);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1em;
}

/* Championships section */
.championship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.championship-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--wwe-red);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.championship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.championship-card h3 {
    color: var(--wwe-red);
    margin-bottom: 1.5rem;
    font-size: 1.6em;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: 1.5px;
}

.championship-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wwe-red), transparent);
}

.championship-card .reign {
    color: var(--wwe-white);
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--wwe-red);
}

.championship-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.championship-card li {
    margin: 0.8rem 0;
    color: var(--wwe-white);
    font-size: 1.1em;
    transition: all 0.3s ease;
    line-height: 1.4;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
}

.championship-card li:hover {
    color: var(--wwe-red);
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    transform: translateX(5px);
    border-color: rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
}

/* Book a Match section */
.match-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--wwe-red);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.match-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.match-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid var(--wwe-red);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.contact-item p {
    font-size: 0.9em;
}

.contact-label {
    color: var(--wwe-red);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.form-group label {
    color: var(--wwe-white);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--wwe-white);
    transition: all 0.3s ease;
    text-align: center;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wwe-red);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--wwe-red);
    color: var(--wwe-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--wwe-red);
    margin: 2rem auto 0;
    width: 100%;
    max-width: 300px;
}

.submit-button:hover {
    background-color: transparent;
    color: var(--wwe-red);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Weather Ticker */
.weather-ticker {
    background-color: var(--wwe-black);
    color: var(--wwe-red);
    padding: 6px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--wwe-red);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.2);
}

.ticker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 1em;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weather-info span {
    display: inline-block;
    padding: 0 10px;
}

.weather-temp {
    color: var(--wwe-white);
    text-shadow: 0 0 10px var(--wwe-red);
    font-weight: bold;
    font-size: 1.2em;
}

.weather-condition {
    color: var(--wwe-red);
    font-weight: bold;
}

.weather-note {
    color: var(--wwe-red);
    opacity: 0.8;
    font-size: 0.8em;
    margin-top: 4px;
}

/* Prayer Times Box */
.prayer-times-box {
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--wwe-red);
    padding: 15px;
    position: fixed;
    top: 110px;
    right: 20px;
    width: 220px;
    z-index: 1000;
    border: 2px solid var(--wwe-red);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    animation: glowPulse 2s infinite;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prayer-times-title {
    color: var(--wwe-white);
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1em;
    text-shadow: 0 0 10px var(--wwe-red);
    font-weight: bold;
}

.prayer-times-location {
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: var(--wwe-white);
    text-shadow: 0 0 5px var(--wwe-red);
    letter-spacing: 1px;
}

.prayer-times-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.prayer-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.4);
    margin: 0;
    white-space: nowrap;
}

.prayer-time:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateX(5px);
}

.prayer-name {
    color: var(--wwe-white);
    font-weight: bold;
    font-size: 1em;
    letter-spacing: 0.5px;
}

.prayer-time-value {
    color: var(--wwe-red);
    font-weight: bold;
    font-size: 1em;
    letter-spacing: 0.5px;
    margin-left: 10px;
}

.prayer-time.current {
    background: rgba(255, 0, 0, 0.15);
    padding: 8px 12px;
    border: 1px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
    transform: scale(1.02);
    margin: 3px 0;
}

.prayer-time.current:hover {
    transform: scale(1.03) translateX(3px);
}

.prayer-time.current .prayer-name,
.prayer-time.current .prayer-time-value {
    color: var(--wwe-white);
    text-shadow: 0 0 8px var(--wwe-red);
    font-size: 1.05em;
}

.prayer-times-next {
    text-align: center;
    margin-top: 8px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    font-size: 0.9em;
    color:
