/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Cinzel', serif;
    background: url('assets/stone-texture.jpg') repeat;
    background-color: #0a0f1f;
    color: #f5f5f5;
}

/* Header */
header {
    text-align: center;
    background: url('assets/parchment-texture.jpg') no-repeat center center/cover;
    padding: 60px 20px;
    border-bottom: 2px solid #ffbc00;
    position: relative;
}

header .logo {
    width: 220px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px #3fa9f5);
}

header h1 {
    font-size: 3rem;
    font-family: 'Friz Quadrata', sans-serif;
    color: #a9d4ff;
    text-shadow: 0 0 20px #3fa9f5;
}

header h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #cbdfff;
}

/* Navigation Bar */
nav {
    background-color: #0b1633;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #1c2a44;
}

nav a {
    color: #6fbaff;
    font-family: 'Cinzel', serif;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 0 15px;
    padding: 10px;
    transition: background 0.3s ease;
}

nav a:hover {
    background-color: #1a2b44;
    border-radius: 5px;
}

/* Section - WoW Style */
.woe-section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 50px auto;
    text-align: center;
}

.woe-section h3 {
    font-size: 2.5rem;
    color: #ffbc00;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.content-box {
    background: rgba(18, 24, 37, 0.9);
    border: 3px solid #ffbc00;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}

.content-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #111;
    color: #777;
    border-top: 1px solid #1c2a44;
}

/* Floating Rune Circle */
.rune-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(100,180,255,0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 40s linear infinite;
}

/* Rotate Rune Circle Animation */
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Animation for WoW Effect */
@keyframes glowing {
    0% { color: #ffbc00; }
    50% { color: #ff6f00; }
    100% { color: #ffbc00; }
}
/* WoW Styled Button */
button {
    background-color: #3fa9f5;
    color: #fff;
    border: 2px solid #ffbc00;
    padding: 10px 25px;
    font-size: 1.2rem;
    font-family: 'Friz Quadrata', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #ffbc00;
    color: #0a0f1f;
    border: 2px solid #3fa9f5;
    transform: translateY(-3px);
}
/* WoW-style content box with border */
.woe-box {
    background: #111;
    border: 4px solid #3fa9f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.8);
    margin: 20px auto;
    max-width: 800px;
}

.woe-box h4 {
    font-family: 'Friz Quadrata', sans-serif;
    color: #ffbc00;
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.woe-box p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}
/* Prevent scrollbars */
html, body {
    height: 100%;
    overflow: hidden;  /* Hide scrollbars */
}

/* Make sure the canvas takes up the entire window and does not cause overflow */
canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Make sure the canvas stays in the background */
}

/* Prevent content overflow */
header, nav, section, footer {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Specific rules for elements that may cause scrollbars */
.woe-section, .content-box, .action-bar, .guild-info {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
