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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #333;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    z-index: -1;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    z-index: 1000;
    color: white;
}

.sidebar.open {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 5px;
}

.sidebar-header h2 {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #ccc;
}

.close-btn:hover {
    color: white;
}

.sidebar-menu {
    list-style: none;
    padding: 20px 0;
}

.sidebar-menu li {
    margin: 5px 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border-right: 3px solid #ff6b6b;
}

.sidebar-menu i {
    margin-right: 10px;
    width: 20px;
}

.sidebar-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Auth Buttons Layout */
#authButtons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* User Profile in Sidebar */
.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

#userProfile {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.user-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.user-name {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.user-vip {
    color: #4ecdc4;
    font-size: 12px;
}

/* Main Content */
.main-content {
    margin-left: 0;
    transition: margin-left 0.3s ease;
    min-height: 100vh;
}

.main-content.sidebar-open {
    margin-left: 250px;
}

.top-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.top-header h1 {
    color: white;
    font-size: 1.5rem;
}

/* Page Content */
.page-content {
    padding: 30px;
}

.page {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-section {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.server-info {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: white;
}

.info-card .number {
    font-size: 2rem;
    font-weight: bold;
    color: #4ecdc4;
}

.players-online {
    min-width: 250px;
    background: rgba(78, 205, 196, 0.15) !important;
    border: 2px solid rgba(78, 205, 196, 0.3) !important;
}

.players-online:hover {
    background: rgba(78, 205, 196, 0.25) !important;
    border-color: rgba(78, 205, 196, 0.5) !important;
}

/* Community Links */
.community-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.community-link {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.community-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.community-link.discord {
    border-color: #7289da;
}

.community-link.discord:hover {
    background: rgba(114, 137, 218, 0.2);
}

.community-link i {
    font-size: 2rem;
    margin-right: 15px;
}

.community-link.discord i {
    color: #7289da;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.modal .close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.modal .close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Profile Modal */
.profile-modal {
    max-width: 600px;
    width: 95%;
}

.profile-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #ff6b6b;
    border-bottom: 2px solid #ff6b6b;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.profile-info {
    padding: 20px 0;
}

.info-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item label {
    font-weight: 600;
    color: #666;
    margin: 0;
}

.info-item span {
    color: #333;
    font-weight: 500;
}

/* Characters Section */
.characters-section {
    padding: 20px 0;
}

.characters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.characters-header h3 {
    color: #333;
    margin: 0;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.character-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.character-card:hover {
    border-color: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.character-card.new-character {
    border-style: dashed;
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

.character-card.new-character:hover {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.2);
}

.character-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.character-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.character-level {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.character-vocation {
    color: #4ecdc4;
    font-size: 0.8rem;
    font-weight: 500;
}

.new-character-icon {
    color: #4ecdc4;
    font-size: 30px;
    margin-bottom: 10px;
}

.new-character-text {
    color: #4ecdc4;
    font-weight: 600;
}

/* Profile Page Styles */
.profile-header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.profile-header h1 {
    color: white;
    font-size: 2rem;
    margin: 0;
}

.user-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.user-details-header h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.user-details-header p {
    color: #4ecdc4;
    margin: 5px 0 0 0;
    font-size: 1rem;
}

.profile-main {
    padding: 40px 0;
}

.profile-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.info-content label {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-content span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.no-characters {
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.no-characters i {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.no-characters h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-characters p {
    opacity: 0.8;
}

.character-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.character-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.3);
}

.character-card.create-card {
    border-style: dashed;
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
    text-align: center;
}

.character-card.create-card:hover {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.2);
}

.character-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.character-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.character-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.character-stats .level {
    background: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.character-stats .vocation {
    background: #4ecdc4;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.character-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
}

.character-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ccc;
}

.status.online {
    color: #4ecdc4 !important;
}

.status.offline {
    color: #999 !important;
}

.create-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.create-text h4 {
    color: #4ecdc4;
    margin-bottom: 5px;
}

.create-text p {
    color: #ccc;
    margin: 0;
}

/* Donation Page Styles */
.donation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.amount-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.amount-card.selected {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

.amount-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.amount-points {
    font-size: 1rem;
    color: white;
    margin-bottom: 5px;
}

.amount-bonus {
    font-size: 0.9rem;
    color: #ff6b6b;
    font-weight: 600;
}

.custom-amount {
    margin-bottom: 30px;
}

.custom-amount label {
    display: block;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    max-width: 300px;
}

.input-prefix {
    background: #4ecdc4;
    color: white;
    padding: 15px;
    font-weight: 600;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 15px;
    font-size: 1.1rem;
}

.input-group input:focus {
    outline: none;
}

.input-group input::placeholder {
    color: #ccc;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
}

.btn-large:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.no-donations {
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.no-donations i {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.no-donations h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-donations p {
    opacity: 0.8;
}

/* PIX Modal Styles */
.pix-modal {
    max-width: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pix-header {
    text-align: center;
    margin-bottom: 30px;
}

.pix-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
}

.pix-content {
    color: white;
}

.pix-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.pix-info > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pix-info > div:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pix-info label {
    font-weight: 600;
    color: #ccc;
}

.pix-info span {
    font-weight: 700;
    color: white;
}

.pix-total span {
    color: #4ecdc4;
    font-size: 1.2rem;
}

.pix-qr {
    text-align: center;
    margin-bottom: 30px;
}

.pix-qr canvas {
    background: white;
    border-radius: 15px;
    padding: 20px;
}

.pix-qr p {
    margin-top: 15px;
    color: #ccc;
}

.pix-copy {
    margin-bottom: 30px;
}

.pix-copy label {
    display: block;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

.copy-input {
    display: flex;
    gap: 10px;
}

.copy-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    padding: 12px;
    font-family: monospace;
}

.copy-input input:focus {
    outline: none;
    border-color: #4ecdc4;
}

.copy-input button.copied {
    background: #4ecdc4;
    color: white;
}

.pix-status {
    text-align: center;
    margin-bottom: 30px;
}

.status-waiting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.5);
    border-radius: 10px;
    padding: 15px;
    color: #ffc107;
}

.status-waiting.paid {
    background: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.5);
    color: #28a745;
}

.pix-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.pix-actions .btn {
    flex: 1;
    max-width: 150px;
}

/* Result Pages */
.login-result,
.register-result,
.character-result {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.result-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-message i {
    color: #4ecdc4;
    font-size: 3rem;
    margin-bottom: 20px;
}

.error-message i {
    color: #ff6b6b;
    font-size: 3rem;
    margin-bottom: 20px;
}

.success-message h2,
.error-message h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.success-message p,
.error-message p {
    color: white;
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .players-online {
        min-width: 200px;
    }
    
    .community-links {
        grid-template-columns: 1fr;
    }
    
    .main-content.sidebar-open {
        margin-left: 0;
    }
    
    .page-content {
        padding: 20px;
    }
    
    .sidebar-logo {
        width: 35px;
        height: 35px;
    }
    
    .sidebar-header h2 {
        font-size: 1.3rem;
    }
    
    .result-content {
        padding: 30px 20px;
    }
    
    .success-message i,
    .error-message i {
        font-size: 2.5rem;
    }
    
    .success-message h2,
    .error-message h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) {
    .sidebar {
        left: 0;
    }
    
    .main-content {
        margin-left: 250px;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .close-btn {
        display: none;
    }
}

/* Modal de Classe Premium */
.class-modal {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 1000px;
    width: 95%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-header h2 i {
    color: #ffd700;
    font-size: 1.2rem;
}

.modal-body {
    padding: 20px 25px;
}

.class-description {
    color: #ccc;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Seleção de Classes Premium */
.class-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
}

.class-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.class-option:hover {
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Imagem da Classe */
.class-image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.class-image img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.class-option:hover .class-image img {
    transform: scale(1.05);
}

.class-fallback {
    font-size: 2.5rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Informações da Classe */
.class-info {
    padding: 15px;
    text-align: center;
}

.class-info h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.class-info p {
    color: #bbb;
    font-size: 0.9rem;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.class-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.class-stats .stat {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.class-option:hover .class-stats .stat {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

/* Classes específicas */
.damage-class:hover {
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 10px rgba(220, 38, 38, 0.3);
}

.tank-class:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 10px rgba(59, 130, 246, 0.3);
}

.support-class:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 10px rgba(34, 197, 94, 0.3);
}

/* Estilos para classe pendente */
.character-stats .class.pending {
    background: #ffc107;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.character-stats .class {
    background: #28a745;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Botão de seleção de classe */
.btn-warning {
    background: #ffc107;
    color: #000;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: #e0a800;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 4px 8px;
    font-size: 0.75rem;
}

/* Responsividade para seleção de classe */
@media (max-width: 768px) {
    .class-modal {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 15px 20px 10px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 15px 20px;
    }
    
    .class-selection {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .class-option {
        min-height: 160px;
    }
    
    .class-image {
        height: 80px;
    }
    
    .class-image img {
        max-width: 50px;
        max-height: 50px;
    }
    
    .class-info {
        padding: 12px;
    }
    
    .class-info h3 {
        font-size: 1.1rem;
    }
    
    .class-stats {
        gap: 4px;
    }
    
    .class-stats .stat {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .class-modal {
        width: 100%;
        margin: 5px;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 12px 15px 8px;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 12px 15px;
    }
    
    .class-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .class-selection {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .class-option {
        min-height: 140px;
    }
    
    .class-image {
        height: 70px;
    }
    
    .class-image img {
        max-width: 45px;
        max-height: 45px;
    }
    
    .class-info {
        padding: 10px;
    }
    
    .class-info h3 {
        font-size: 1rem;
    }
}

/* Modal de Criação de Personagem Premium */
.create-modal {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 1000px;
    width: 95%;
    max-height: 80vh;
    overflow-y: auto;
}

.character-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.form-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
}

.form-section h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: center;
    justify-content: center;
}

.form-section h3 i {
    color: #ffd700;
    font-size: 0.9rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.form-group label {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    text-align: center;
}

.form-group label i {
    color: #ffd700;
    font-size: 0.8rem;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    padding: 10px 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
    text-align: center;
}

.form-group input:focus,
.form-group select:focus {
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.form-group small {
    color: #bbb;
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsividade para modal de criação */
@media (max-width: 768px) {
    .create-modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .form-section {
        padding: 12px;
        min-height: 160px;
    }
    
    .form-section h3 {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .create-modal {
        width: 100%;
        margin: 5px;
        border-radius: 12px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-section {
        padding: 10px;
        min-height: 140px;
    }
    
    .form-section h3 {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

/* Modal de Seleção de Vocação */
.vocation-modal {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 1200px;
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
}

.vocation-description {
    color: #ccc;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.vocation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 0;
}

.vocation-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
}

.vocation-option:hover {
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.vocation-image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.vocation-image img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.vocation-option:hover .vocation-image img {
    transform: scale(1.05);
}

.vocation-fallback {
    font-size: 2rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.vocation-info {
    padding: 12px;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vocation-info h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.vocation-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    padding: 10px 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.vocation-selector:hover {
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.vocation-selector i {
    color: #ffd700;
    font-size: 0.8rem;
}

/* Responsividade para modal de vocação */
@media (max-width: 768px) {
    .vocation-modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .vocation-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .vocation-option {
        min-height: 140px;
    }
    
    .vocation-image {
        height: 80px;
    }
    
    .vocation-image img {
        max-width: 50px;
        max-height: 50px;
    }
    
    .vocation-info {
        padding: 10px;
    }
    
    .vocation-info h4 {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .vocation-modal {
        width: 100%;
        margin: 5px;
        border-radius: 12px;
    }
    
    .vocation-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .vocation-option {
        min-height: 120px;
    }
    
    .vocation-image {
        height: 70px;
    }
    
    .vocation-image img {
        max-width: 40px;
        max-height: 40px;
    }
    
    .vocation-info {
        padding: 8px;
    }
    
    .vocation-info h4 {
        font-size: 0.75rem;
    }
}

/* Modal de Login Premium */
.login-modal {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 95%;
    max-height: 80vh;
    overflow-y: auto;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Modal de Registro Premium */
.register-modal {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Responsividade para modais de login/registro */
@media (max-width: 768px) {
    .login-modal,
    .register-modal {
        width: 95%;
        max-height: 90vh;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .login-modal,
    .register-modal {
        width: 100%;
        margin: 5px;
        border-radius: 12px;
    }
    
    .form-section {
        padding: 12px;
    }
    
    .form-section h3 {
        font-size: 1rem;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Badges Premium dos Personagens */
.character-main-info {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.info-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-badge:hover::before {
    left: 100%;
}

.info-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-badge i {
    font-size: 0.9rem;
    color: #ffd700;
    min-width: 16px;
}

.badge-label {
    font-size: 0.75rem;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-value {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
    margin-left: auto;
}

/* Badges específicas */
.level-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
}

.level-badge i {
    color: #ffd700;
}

.vocation-badge {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(78, 205, 196, 0.3);
}

.vocation-badge i {
    color: #4ecdc4;
}

.class-badge {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(138, 43, 226, 0.3);
}

.class-badge i {
    color: #8a2be2;
}

.class-badge.pending {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 193, 7, 0.5);
    animation: pulse 2s infinite;
}

.class-badge.pending i {
    color: #ffc107;
}

.status-badge.online {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(40, 167, 69, 0.3);
}

.status-badge.online i {
    color: #28a745;
}

.status-badge.offline {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(108, 117, 125, 0.3);
}

.status-badge.offline i {
    color: #6c757d;
}

/* Informações Secundárias */
.character-secondary-info {
    margin: 12px 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: #bbb;
}

.secondary-info-item:last-child {
    margin-bottom: 0;
}

.secondary-info-item i {
    color: #ffd700;
    font-size: 0.75rem;
    min-width: 12px;
}

/* Ações do Personagem */
.character-actions {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animação de pulse para classe pendente */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Responsividade para badges */
@media (max-width: 768px) {
    .info-badge {
        padding: 8px 10px;
    }
    
    .badge-label {
        font-size: 0.7rem;
    }
    
    .badge-value {
        font-size: 0.8rem;
    }
    
    .secondary-info-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .character-main-info {
        margin: 10px 0;
        gap: 6px;
    }
    
    .info-badge {
        padding: 6px 8px;
    }
    
    .info-badge i {
        font-size: 0.8rem;
    }
    
    .badge-label {
        font-size: 0.65rem;
    }
    
    .badge-value {
        font-size: 0.75rem;
    }
}

/* Landing Page Styles */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease;
}

.hero-logo {
    max-width: 200px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.hero-section h1 {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.hero-section p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(78, 205, 196, 0.1);
    border-color: #4ecdc4;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.3);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
    background: #4ecdc4;
    color: #000;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .hero-section h1 { font-size: 2rem; }
    .hero-logo { max-width: 150px; }
}

/* --- Estilos Globais (Scripts) --- */

/* Players Online Indicator */
.players-online-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(78, 205, 196, 0.9);
    border: 1px solid #4ecdc4;
    border-radius: 10px;
    padding: 8px 12px;
    backdrop-filter: blur(5px);
    z-index: 1000;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.indicator-content {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: bold;
}

.indicator-content i {
    font-size: 1rem;
    color: #fff;
}

.players-count {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

.players-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Welcome Post */
.welcome-post {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    backdrop-filter: blur(5px);
}

.post-header {
    margin-bottom: 20px;
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #4ecdc4;
    object-fit: cover;
}

.admin-details {
    display: flex;
    flex-direction: column;
}

.admin-name {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.1rem;
}

.post-time {
    color: #ccc;
    font-size: 0.9rem;
}

.post-content h3 {
    color: #4ecdc4;
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}

.post-content p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.features-list {
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #fff;
}

.feature-item i {
    color: #4ecdc4;
    font-size: 1rem;
}

.post-image {
    text-align: center;
    margin: 20px 0;
}

.pack-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 10px;
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.post-footer {
    color: #4ecdc4;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.post-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.post-actions .btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.post-actions .btn:hover {
    transform: translateY(-2px);
}

/* Loading and Error States */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px 20px;
}

.loading-spinner {
    text-align: center;
    color: #4ecdc4;
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: spin 1s linear infinite;
}

.loading-spinner p {
    font-size: 1.1rem;
    color: #ccc;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px 20px;
}

.error-content {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.error-content i {
    font-size: 4rem;
    color: #f44336;
    margin-bottom: 20px;
}

.error-content h3 {
    color: #f44336;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.error-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.error-content .btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.error-content .btn:hover {
    transform: translateY(-2px);
}

/* --- Vocações Dashboard (pages/vocations.php) --- */
.vocations-dashboard {
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.vocations-header {
    text-align: center;
    margin-bottom: 30px;
}

.vocations-header h2 {
    color: #4ecdc4;
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.vocations-header p {
    color: #ccc;
    font-size: 1.1rem;
}

.vocations-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.vocations-sidebar {
    max-height: 75vh;
    overflow-y: auto;
    padding-right: 10px;
    max-width: 720px;
}

.vocations-sidebar::-webkit-scrollbar,
.spells-list::-webkit-scrollbar {
    width: 8px;
}

.vocations-sidebar::-webkit-scrollbar-track,
.spells-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.vocations-sidebar::-webkit-scrollbar-thumb,
.spells-list::-webkit-scrollbar-thumb {
    background: rgba(78, 205, 196, 0.5);
    border-radius: 4px;
}

.vocations-sidebar::-webkit-scrollbar-thumb:hover,
.spells-list::-webkit-scrollbar-thumb:hover {
    background: rgba(78, 205, 196, 0.7);
}

.section-header {
    color: #4ecdc4;
    font-size: 0.95rem;
    margin: 0 0 10px 0;
    padding: 8px 12px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 8px;
    border-left: 3px solid #4ecdc4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header:not(:first-child) {
    margin-top: 20px;
}

.section-header.vip-section {
    color: #f39c12;
    border-left-color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.vocation-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.vocation-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 12px;
    padding: 15px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 90px;
}

.vocation-card:hover {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
}

.vocation-card.selected {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.15);
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
}

.vocation-card.vip-vocation {
    border-color: rgba(243, 156, 18, 0.5);
    background: rgba(243, 156, 18, 0.05);
}

.vocation-card.vip-vocation:hover {
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.15);
}

.vocation-card.vip-vocation.selected {
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.2);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}

.vip-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: #fff;
    padding: 2px 5px;
    border-radius: 6px;
    font-size: 0.6rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.5);
}

.vip-badge i {
    font-size: 0.6rem;
}

.vocation-image {
    margin-bottom: 8px;
}

.vocation-image img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #4ecdc4;
}

.vocation-card.vip-vocation .vocation-image img {
    border-color: #f39c12;
}

.vocation-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vocation-info h4 {
    color: #4ecdc4;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.vocation-card.vip-vocation .vocation-info h4 {
    color: #f39c12;
}

.vocation-details {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(5px);
    min-height: 500px;
    position: sticky;
    top: 20px;
}

.no-selection {
    text-align: center;
    color: #999;
    padding: 80px 20px;
}

.no-selection i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #4ecdc4;
    opacity: 0.5;
}

.no-selection p {
    font-size: 1.1rem;
}

.loading {
    text-align: center;
    color: #4ecdc4;
    padding: 50px 20px;
}

.loading i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.error {
    text-align: center;
    color: #f44336;
    padding: 50px 20px;
}

.error i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vocation-selected {
    display: none;
}

.vocation-selected.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.vocation-header-detail {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(78, 205, 196, 0.3);
}

.vocation-header-detail img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #4ecdc4;
    margin-bottom: 12px;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.vocation-header-detail h3 {
    color: #4ecdc4;
    font-size: 1.7rem;
    margin: 0;
    font-weight: bold;
}

.passive-section,
.spells-section {
    margin-bottom: 25px;
}

.section-title {
    color: #4ecdc4;
    font-size: 1.25rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.passive-info {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    padding: 15px;
}

.passive-type {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.passive-type.defensive {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.passive-type.damage {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

.passive-description {
    color: #fff;
    line-height: 1.7;
    font-size: 1rem;
}

.spells-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.spell-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
}

.spell-item:hover {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.05);
    transform: translateX(3px);
}

.spell-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.spell-name {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.05rem;
}

.spell-level {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
}

.spell-description {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Vocações Grid (vocations/index.php) --- */
.vocations-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.vocations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.vocation-details-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vocation-details-btn:hover {
    transform: translateY(-2px);
}

.vocation-passive,
.vocation-spells {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(5px);
    margin-bottom: 20px;
}

.vocation-passive h3,
.vocation-spells h3 {
    color: #4ecdc4;
    margin-bottom: 15px;
}

.vocation-passive p {
    color: #ccc;
    line-height: 1.6;
}

/* --- Guilds --- */
.guilds-container {
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.guilds-header {
    text-align: center;
    margin-bottom: 40px;
}

.guilds-header h2 {
    color: #4ecdc4;
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.guilds-header p {
    color: #ccc;
    font-size: 1.1rem;
}

.guilds-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.podium-section {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.podium-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.podium-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.podium-card.first {
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
    animation: aura-glow 2s ease-in-out infinite alternate;
}

.podium-card:hover {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

.crown-effect {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    color: #f39c12;
    animation: crown-float 3s ease-in-out infinite;
}

.podium-content {
    position: relative;
    z-index: 1;
}

.podium-rank {
    color: #4ecdc4;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.guild-name {
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.guild-leader {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.guild-leader i {
    color: #4ecdc4;
}

.guild-motd {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
    font-style: italic;
}

.guild-motd p {
    margin: 0;
}

@keyframes aura-glow {
    0% { box-shadow: 0 0 20px rgba(243, 156, 18, 0.3); }
    100% { box-shadow: 0 0 40px rgba(243, 156, 18, 0.6); }
}

@keyframes crown-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.guilds-list-section {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.search-filter {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 25px;
    padding: 10px 15px 10px 40px;
    color: #fff;
    font-size: 0.9rem;
    width: 250px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #4ecdc4;
    background: rgba(0, 0, 0, 0.8);
}

.search-input::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    left: 15px;
    color: #4ecdc4;
    font-size: 0.9rem;
}

.guilds-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.guild-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.guild-item:hover {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
    transform: translateX(5px);
}

.guild-item.hidden {
    display: none;
}

.guild-rank {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rank-number {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.guild-info {
    flex: 1;
}

.no-guilds {
    text-align: center;
    padding: 80px 20px;
}

.no-guilds-content {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.no-guilds-content i {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.no-guilds-content h3 {
    color: #4ecdc4;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.no-guilds-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.shop-header {
    text-align: center;
    margin-bottom: 30px;
}

.shop-header h2 {
    color: #4ecdc4;
    font-size: 2rem;
    margin-bottom: 10px;
}

.shop-header p {
    color: #ccc;
    font-size: 1.1rem;
}

.shop-categories {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #4ecdc4;
    border-radius: 5px;
    color: #4ecdc4;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: #4ecdc4;
    color: #000;
}

.shop-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.shop-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.shop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.2);
}

.item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.item-image i {
    font-size: 2rem;
    color: white;
}

.item-info h3 {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.item-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.item-price {
    color: #4ecdc4;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.shop-item .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-item .btn:hover {
    transform: translateY(-2px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .vocations-content,
    .guilds-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vocations-sidebar {
        max-height: 400px;
        max-width: none;
    }
    
    .vocation-details {
        position: static;
        min-height: 400px;
    }
    
    .list-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .players-online-indicator {
        bottom: 15px;
        right: 15px;
        padding: 6px 10px;
        min-width: 80px;
    }
    
    .players-count {
        font-size: 1rem;
    }
    
    .players-label {
        font-size: 0.7rem;
    }
    
    .welcome-post {
        padding: 20px;
        margin: 20px 0;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
    }
    
    .admin-avatar {
        width: 40px;
        height: 40px;
    }
    
    .pack-image {
        max-height: 200px;
    }
    
    .post-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .post-actions .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .loading-container,
    .error-container {
        min-height: 300px;
        padding: 20px;
    }
    
    .error-content {
        padding: 30px 20px;
    }
    
    .error-content i {
        font-size: 3rem;
    }
    
    .error-content h3 {
        font-size: 1.3rem;
    }
    
    .vocations-dashboard,
    .guilds-container {
        padding: 15px;
    }
    
    .vocations-header h2,
    .guilds-header h2 {
        font-size: 2rem;
    }
    
    .vocation-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .vocation-card {
        padding: 8px;
        min-height: 70px;
    }
    
    .vocation-image img {
        width: 30px;
        height: 30px;
    }
    
    .vocation-info h4 {
        font-size: 0.7rem;
    }
    
    .vocation-details {
        padding: 20px;
    }
    
    .vocation-header-detail img {
        width: 100px;
        height: 100px;
    }
    
    .vocation-header-detail h3 {
        font-size: 1.6rem;
    }
    
    .vocations-grid,
    .shop-items {
        grid-template-columns: 1fr;
    }
    
    .vocation-modal {
        max-width: 95%;
        margin: 20px;
    }
    
    .podium-section,
    .guilds-list-section {
        padding: 20px;
    }
    
    .guild-item {
        padding: 12px;
    }
    
    .guild-name {
        font-size: 1rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .shop-header h2 {
        font-size: 1.5rem;
    }
}

/* --- Map Page Styles --- */
.map-wrapper {
    display: flex;
    height: calc(100vh - 100px); /* Altura total menos header */
    width: 100%;
    background: #000;
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.map-sidebar {
    width: 300px;
    background: rgba(20, 20, 20, 0.95);
    border-right: 1px solid rgba(78, 205, 196, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 500;
}

.map-sidebar-image {
    height: 150px;
    background: url("../images/pack_inventory.jpg") center/cover;
    border-bottom: 1px solid rgba(78, 205, 196, 0.3);
}

.map-sidebar-content { padding: 20px; color: #fff; }
.map-sidebar-location-title { color: #4ecdc4; font-size: 0.8rem; text-transform: uppercase; }
.map-sidebar-location-name { font-size: 1.5rem; font-weight: bold; margin: 5px 0 10px; }
.map-sidebar-text { color: #ccc; font-size: 0.9rem; line-height: 1.5; }

.close-sidebar {
    position: absolute;
    top: 10px;
    left: 260px; /* Ajustado para dentro da sidebar */
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 501;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-sidebar::after { content: "\f00d"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #fff; }

.map-content { flex: 1; position: relative; background: #111; }
#map { width: 100%; height: 100%; background: #0d0d0d; }

.map-stages {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 400;
    list-style: none;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 8px;
    padding: 5px;
}
.map-stages li { padding: 8px 15px; color: #ccc; cursor: pointer; text-align: right; }
.map-stages li:hover, .map-stages li.active { color: #4ecdc4; font-weight: bold; }
