/* Style CSS pour Inkarnia - Thème Dofus Vert & Doré */

:root {
    /* Couleurs principales - Modifier ici pour changer la palette */
    --primary-green: #2d5016;
    --secondary-green: #4a7c23;
    --light-green: #6b9d2f;
    --accent-green: #8bc34a;
    
    --primary-gold: #d4af37;
    --secondary-gold: #f4d03f;
    --light-gold: #ffd700;
    --dark-gold: #b8860b;
    
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-white: #ffffff;
    
    /* Gradients */
    --gradient-green: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    --gradient-gold: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    --gradient-hero: linear-gradient(135deg, rgba(45, 80, 22, 0.9), rgba(74, 124, 35, 0.8));
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--primary-green);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(45, 80, 22, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

.site-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    text-shadow: 1px 1px 2px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
    background-color: rgba(139, 195, 74, 0.1);
}

.nav-link.login-btn {
    background: var(--gradient-green);
    color: var(--text-white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-link.login-btn:hover {
    background: var(--gradient-gold);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Modifier ici : image de background par défaut */
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%232d5016;stop-opacity:1" /><stop offset="100%" style="stop-color:%234a7c23;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23bg)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: var(--light-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--light-gold);
}

.btn-secondary:hover {
    background: var(--light-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-discord {
    background: #5865f2;
    color: var(--text-white);
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-gold);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--light-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* News Section */
.news {
    padding: 6rem 0;
    background: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.news-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
}

.news-card.featured {
    grid-row: span 2;
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    display: inline-block;
    background: var(--gradient-green);
    color: var(--text-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date {
    float: right;
    color: var(--text-light);
    font-size: 0.9rem;
}

.news-card h3 {
    margin: 1rem 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.news-card.featured h3 {
    font-size: 1.5rem;
}

.news-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-gold);
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: var(--gradient-green);
    color: var(--text-white);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.community-text h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.community-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.community-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.community-stats .stat {
    text-align: center;
}

.community-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-gold);
}

.community-stats .label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--light-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--light-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--light-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .community-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .community-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.feature-card:hover .feature-icon {
    animation: pulse 1s ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-gold);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--light-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Styles (pour les pages de connexion/inscription) */
.form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

.form-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-success {
    color: var(--secondary-green);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
/* SLIDER NEWS */

.carousel-inner {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.news-card-dofus {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    min-height: 300px;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-img {
    width: 40%;
    object-fit: cover;
    height: auto;
}

.news-overlay {
    width: 60%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .news-card-dofus {
        flex-direction: column;
    }

    .news-img {
        width: 100%;
        height: 200px;
    }

    .news-overlay {
        width: 100%;
    }
}
.news-card-dofus {
    display: flex;
    flex-direction: row;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 20px;
}

.news-img {
    width: 40%;
    height: auto;
    object-fit: cover;
}

.news-overlay {
    width: 60%;
    background-color: white;
}

.custom-slider {
  position: relative;
  max-width: 1100px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: #fff;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 30px;
  box-sizing: border-box;
}

.slide img {
  width: 45%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.slide-content {
  flex: 1;
}

.slide-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #2e4b0d;
  margin-bottom: 10px;
}

.slide-content .meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 15px;
}

.btn-slide {
  background-color: transparent;
  border: 2px solid #d4af37;
  color: #2e4b0d;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-slide:hover {
  background-color: #d4af37;
  color: white;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255,255,255,0.8);
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  z-index: 10;
  border-radius: 50%;
  color: #2e4b0d;
}

.nav.prev {
  left: 15px;
}

.nav.next {
  right: 15px;
}

.hero-banner {
  min-height: 70vh;
  background: url('assets/images/background-hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  padding: 80px 0;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.hero-text .highlight {
  color: #FFD700;
}

.hero-text p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  margin-bottom: 30px;
}

.hero-buttons a {
  display: inline-block;
  margin-right: 15px;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-download {
  background: #FFD700;
  color: #222;
}

.btn-download:hover {
  background: #e6c200;
}

.btn-account {
  border: 2px solid #FFD700;
  color: #fff;
}

.btn-account:hover {
  background: #FFD700;
  color: #222;
}

.hero-images {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center; /* centrer horizontalement dans la colonne */
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero-img {
  max-height: 500px;
  width: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  z-index: 1;
}

.hero-img.active {
  opacity: 1;
  position: relative; /* remettre en relative pour ne pas flotter */
  z-index: 2;
}


/* Animation texte */
.animate-left {
  animation: slideInLeft 1s ease forwards;
}

.animate-right {
  animation: slideInRight 1s ease forwards;
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.community {
  background-color: #2c5e1a;
  color: white;
}

.community-text h2 {
  font-family: 'Cinzel', serif;
  color: #FFD700;
}

.community-img {
  max-width: 400px;
  height: auto;
  margin-top: 20px;
}

.btn-discord {
  background-color: #5865F2;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  display: inline-block;
  text-decoration: none;
}

.btn-discord:hover {
  background-color: #4752c4;
  color: white;
}
/* Taille réduite + animation */
.community-img {
  max-width: 280px;
  height: auto;
  animation: floatY 4s ease-in-out infinite;
}

/* Animation de flottement */
@keyframes floatY {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* === PAGE DE VOTE === */
.vote-container {
    background-color: #2a2a3e;
    border-radius: 12px;
    border: 1px solid #3a3a5c;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vote-header {
    text-align: center;
    margin-bottom: 2rem;
}

.vote-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vote-subtitle {
    color: #a0a0a0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: #1e1e2e;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #3a3a5c;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a0a0a0;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
}

.vote-status {
    background-color: #1e1e2e;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid #3a3a5c;
}

.vote-status.cooldown {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.vote-ready-title {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.vote-button {
    background-color: #ffd700;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

.vote-button:hover {
    background-color: #e6c200;
    color: #000;
    text-decoration: none;
    transform: translateY(-2px);
}

.manual-vote-btn {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.manual-vote-btn:hover {
    background-color: #ffd700;
    color: #000;
}

.cooldown-text {
    color: #dc3545;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cooldown-description {
    color: #a0a0a0;
}

.vote-mascot {
    max-height: 120px;
    opacity: 0.8;
}

.rewards-section {
    background-color: #1e1e2e;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #3a3a5c;
}

.rewards-title {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.reward-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: #2a2a3e;
    border-radius: 6px;
    border-left: 4px solid transparent;
}

.reward-item.current {
    border-left-color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

.reward-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.reward-text {
    flex: 1;
    color: #ffffff;
}

.reward-points {
    color: #ffd700;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .vote-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .vote-title {
        font-size: 1.5rem;
    }
}