@import url('https://fonts.googleapis.com/css2?family=Mad+Honey&display=swap');

/* Discord Button Style */
.discord-btn {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.75rem 2rem;
    background: linear-gradient(90deg, #5865F2 60%, #00ffff 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    box-shadow: 0 0 10px #5865F2, 0 0 20px #00ffff;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.discord-btn:hover {
    background: linear-gradient(90deg, #00ffff 60%, #5865F2 100%);
    color: #ffff00;
    transform: scale(1.07);
}
body {
    font-family: 'Mad Honey', cursive;
    margin: 0;
    padding: 0;
    background: #000;
    color: white;
    text-align: center;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iMTAiIGZpbGw9IiMwMEZGMDAiIHN0cm9rZT0iIzgwODA4MCIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPg==') 12 12, auto;
}

@keyframes waveMove {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

@keyframes textSway {
    0% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(-10px);
    }
}

/* .bg-emo-img removed */

header {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 102, 0, 0.5);
}

header h1 {
    margin: 0;
    font-size: 2rem;
    text-shadow: 0 0 10px #ff6600, 0 0 20px #0066cc;
    flex-grow: 1;
    text-align: center;
}

.theme-btn {
    background: transparent;
    border: 2px solid lightblue;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.theme-btn:hover {
    background: lightblue;
    color: #181c23;
}

body.light-mode {
    background: linear-gradient(90deg, lightblue 0%, lightyellow 50%, lightblue 100%);
    background-size: 200% 100%;
    animation: waveMove 8s ease-in-out infinite;
    color: black;
}

body.light-mode .big-button {
    border-color: #181c23;
    color: black;
}

body.light-mode .big-button:hover {
    background: #181c23;
    color: white;
}

body.light-mode header {
    background: rgba(255, 255, 255, 0.8);
}

body.light-mode .theme-btn {
    border-color: #181c23;
    color: black;
}

body.light-mode .theme-btn:hover {
    background: #181c23;
    color: white;
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

body.light-mode .menu-toggle span {
    background: #181c23;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9;
    padding: 1rem 0;
    border-bottom: 2px solid #ff00ff;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu li {
    margin: 0.5rem 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #ff00ff;
}

.mobile-menu.active {
    display: flex;
    justify-content: center;
}

/* Central Button Style */
.center-button-container {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
    display: none;
}

.center-button {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    header {
        padding: 0.75rem;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        display: none;
    }
}

header h1 {
    margin: 0;
    font-size: 2rem;
    text-shadow: 0 0 10px #ff00ff;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff00ff;
}

main {
    margin-top: 100px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

section {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

h2 {
    color: #ffff00;
    text-shadow: 0 0 10px #ffff00;
}

a {
    color: #00ffff;
}

/* Big Button Styles */
.button-container {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 1rem;
    background: black;
    color: white;
    border: 3px solid lightblue;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.big-button:hover {
    background: lightblue;
    color: #0d2b52;
    transform: scale(1.05);
}

/* Artist embed (clickable red arrow) */
.artist-arrow {
    position: fixed;
    top: 12px;
    right: 12px;
    width: 100px;
    height: 100px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.artist-arrow a { display:flex; width:100%; height:100%; align-items:center; justify-content:center; text-decoration:none; }
.artist-arrow svg { width:70%; height:70%; fill: red; transition: transform 0.2s ease; }
.artist-arrow a:hover svg { transform: scale(1.05); }

.artist-embed { width: 400px; height: 400px; margin: 1.25rem auto; }
.artist-embed iframe { width: 100%; height: 100%; border-radius: 12px; border: 0; }

/* Q/A styles */
.submissions-section { max-width: 900px; margin: 1.5rem auto; background: rgba(255,255,255,0.02); padding: 1rem; border-radius: 10px; }
.submissions-list { max-height: 420px; overflow-y: auto; display: flex; flex-direction: column; gap: 0.5rem; padding: 0.5rem; }
.submission-item { background: rgba(255,255,255,0.03); padding: 0.75rem; border-radius: 8px; text-align: left; }
.submission-item .meta { font-weight: 700; margin-bottom: 0.25rem; color: #ff6666; }
.submission-item .question { color: #fff; }
.pagination-controls { display:flex; gap:1rem; align-items:center; justify-content:center; margin-top:0.75rem; }
.page-btn { background: transparent; border: 2px solid rgba(255,255,255,0.08); color: #fff; padding: 0.4rem 0.8rem; border-radius: 6px; cursor: pointer; }
.page-btn:disabled { opacity: 0.3; cursor: default; }
.page-indicator { color: #fff; }

/* Form inputs */
form#qa-form input[type="text"], form#qa-form textarea { width: 100%; max-width: 900px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); color: #fff; padding: 0.5rem; border-radius: 6px; }
form#qa-form input[type="submit"] { margin-top: 0.5rem; padding: 0.5rem 1rem; border-radius: 8px; background: #ff4444; border: none; color: #fff; cursor: pointer; font-weight:700; }

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    box-shadow: 0 6px 24px rgba(0,0,0,0.6);
}
.cookie-banner .cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 auto;
}
.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.2;
}
.cookie-actions {
    display: flex;
    gap: 0.5rem;
}
.cookie-actions .btn {
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: 700;
}
.cookie-actions .accept {
    background: linear-gradient(90deg,#00cc99,#00ffff);
    color: #08121a;
}
.cookie-actions .decline {
    background: transparent;
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.cookie-actions .manage {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

@media (max-width: 620px) {
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; flex-direction: column; align-items: flex-start; }
    .cookie-actions { width: 100%; justify-content: flex-end; }
}