:root {
	--primary: #2c3e50;
	--secondary: #3498db;
	--accent: #e74c3c;
	--light: #ecf0f1;
	--dark: #1a2530;
	--success: #27ae60;
	--warning: #f39c12;
	--gold: #f1c40f;
	--parchment: #f5e6ca;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: #f8f9fa;
	color: #333;
}

.header {
	background: linear-gradient(135deg, var(--primary), var(--dark));
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
	font-family: 'MedievalSharp', cursive;
	font-size: 1.8rem;
	color: var(--light) !important;
}

.navbar-brand span {
	color: var(--gold);
}

.nav-link {
	font-weight: 500;
	margin: 0 8px;
	transition: all 0.3s;
}

.nav-link:hover {
	color: var(--gold) !important;
	transform: translateY(-2px);
}

.hero-section {
	background: linear-gradient(rgba(26, 42, 58, 0.9), rgba(26, 42, 58, 0.9)),
	url('https://images.unsplash.com/photo-1542204165-65bf26472b9b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
	color: white;
	padding: 120px 0;
	position: relative;
}

.hero-title {
	font-family: 'MedievalSharp', cursive;
	font-size: 3.5rem;
	background: linear-gradient(to right, var(--gold), var(--warning));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 20px;
}

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

.btn-hero {
	background: linear-gradient(45deg, var(--accent), var(--warning));
	border: none;
	padding: 12px 30px;
	font-weight: bold;
	font-size: 1.1rem;
	border-radius: 50px;
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.5);
	transition: all 0.3s;
}

.btn-hero:hover {
	background-color: #e6b800;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card {
	background: white;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(45deg, var(--secondary), var(--accent));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.section-title {
	position: relative;
	margin-bottom: 50px;
}

.section-title h2 {
	font-family: 'MedievalSharp', cursive;
	font-size: 2.5rem;
	color: var(--primary);
	position: relative;
	display: inline-block;
}

.section-title h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 4px;
	background: linear-gradient(to right, var(--secondary), var(--accent));
	border-radius: 2px;
}

.table-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
	margin-bottom: 25px;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.table-img {
	height: 180px;
	object-fit: cover;
}

.table-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--accent);
	color: white;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 0.8rem;
}

.table-master {
	display: flex;
	align-items: center;
	margin: 15px 0;
}

.master-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(45deg, var(--warning), var(--accent));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	margin-right: 10px;
}

.table-stats {
	display: flex;
	justify-content: space-between;
	margin: 15px 0;
}

.stat {
	text-align: center;
}

.stat-value {
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--secondary);
}

.stat-label {
	font-size: 0.8rem;
	color: #666;
}

.btn-table {
	background: var(--secondary);
	color: white;
	border: none;
	width: 100%;
	padding: 10px;
	font-weight: bold;
	border-radius: 6px;
	transition: all 0.3s;
}

.btn-table:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

.login-modal .modal-content {
	border-radius: 12px;
	overflow: hidden;
	border: none;
}

.login-tabs .nav-link {
	color: #333 !important;
	font-weight: bold;
	border: none;
	padding: 12px 20px;
}

.login-tabs .nav-link.active {
	background: transparent;
	color: var(--secondary) !important;
	border-bottom: 3px solid var(--secondary);
}

.social-login-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 6px;
	font-weight: 500;
	margin-bottom: 10px;
	transition: all 0.3s;
	border: 1px solid #ddd;
}

.social-login-btn.google {
	background: #fff;
	color: #333;
}

.social-login-btn.google:hover {
	background: #f1f1f1;
}

.social-login-btn.twitch {
	background: #9147ff;
	color: white;
	border-color: #9147ff;
}

.social-login-btn.twitch:hover {
	background: #7d3ae8;
}

.social-login-btn i {
	margin-right: 10px;
	font-size: 1.2rem;
}

.divider {
	display: flex;
	align-items: center;
	margin: 20px 0;
}

.divider::before, .divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #ddd;
}

.divider-text {
	padding: 0 15px;
	color: #666;
	font-size: 0.9rem;
}

.form-control {
	padding: 12px 15px;
	border-radius: 8px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
}

.form-control:focus {
	border-color: var(--secondary);
	box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.btn-login {
	background: var(--secondary);
	color: white;
	border: none;
	padding: 12px;
	font-weight: bold;
	border-radius: 8px;
	width: 100%;
	transition: all 0.3s;
}

.btn-login:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

footer {
	background: linear-gradient(135deg, var(--primary), var(--dark));
	color: white;
	padding: 60px 0 30px;
}

.footer-links h5 {
	font-family: 'MedievalSharp', cursive;
	margin-bottom: 20px;
	color: var(--gold);
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s;
}

.footer-links a:hover {
	color: var(--gold);
	padding-left: 5px;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	margin-right: 10px;
	transition: all 0.3s;
}

.social-icons a:hover {
	background: var(--gold);
	transform: translateY(-3px);
}

.password-toggle {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #666;
}

.profile-container {
	max-width: 1200px;
	margin: 30px auto;
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	overflow: hidden;
}

.profile-cover {
	height: 250px;
	background: linear-gradient(135deg, var(--primary), var(--dark));
	position: relative;
	overflow: hidden;
}

.cover-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
}

.cover-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.profile-cover:hover .cover-overlay {
	opacity: 1;
}

.cover-edit {
	background: rgba(255,255,255,0.8);
	color: var(--dark);
	padding: 10px 15px;
	border-radius: 20px;
	cursor: pointer;
	font-weight: 500;
}

.profile-header {
	position: relative;
	padding: 0 30px 30px;
	margin-top: -75px;
}

.profile-avatar-container {
	position: relative;
	width: fit-content;
	margin-bottom: 20px;
}

.profile-avatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 5px solid var(--gold);
	object-fit: cover;
	background-color: var(--light);
	display: block;
}

.avatar-edit {
	position: absolute;
	right: 10px;
	bottom: 10px;
	background: var(--gold);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--dark);
}

.profile-username {
	font-family: 'MedievalSharp', cursive;
	font-size: 2rem;
	margin-bottom: 5px;
	color: var(--gold);
}

.profile-level {
	font-size: 1.1rem;
	color: var(--light);
	margin-bottom: 20px;
	color: #5296a7;
}

.profile-body {
	padding: 0 30px 30px;
}

.section-title {
	font-family: 'MedievalSharp', cursive;
	color: var(--primary);
	border-bottom: 2px solid var(--gold);
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.form-label {
	font-weight: 500;
	color: var(--dark);
}

.form-control {
	border-radius: 8px;
	padding: 10px 15px;
	border: 1px solid #ddd;
}

.btn-rpg {
	background-color: var(--gold);
	color: var(--dark);
	border: none;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 8px;
	transition: all 0.3s;
}

.btn-rpg:hover {
	background-color: #e6b800;
	transform: translateY(-2px);
}



.default-cover {
	background: linear-gradient(135deg, var(--primary), var(--dark));
	width: 100%;
	height: 100%;
}

/* Estilo para links ativos no navbar */
.rpg-nav-link.active {
	color: var(--gold) !important;
	position: relative;
	transform: translateY(-2px);
}

.rpg-nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 3px;
	background: var(--gold);
	border-radius: 3px;
	animation: navLinkActive 0.3s ease-out;
}

@keyframes navLinkActive {
	from {
		width: 0;
		opacity: 0;
	}
	to {
		width: 80%;
		opacity: 1;
	}
}

.parsley-errors-list {
	display: none !important;
}

select.form-control.parsley-error:focus,
select.form-control.parsley-error {
	border-color: #f16d75;
	box-shadow: none;
}

.parsley-eye-icon--success {
	border-color: #19b159 !important ;
	background-repeat: no-repeat;
	background-position: center right calc(0.375em + 0.1875rem);
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.parsley-eye-icon--error {
	border-color: #f16d75 !important;
	background-repeat: no-repeat;
	background-position: center right calc(0.375em + 0.1875rem);
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);

}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	margin-top: 40px;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.section-title h2 {
		font-size: 2rem;
	}
}


.table-master {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.master-avatar {
	width: 40px;
	height: 40px;
	background-color: var(--primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	font-weight: bold;
}

.table-stats {
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
	padding: 15px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.stat {
	text-align: center;
}

.stat-value {
	font-weight: bold;
	font-size: 1.2rem;
	color: var(--primary);
}

.stat-label {
	font-size: 0.8rem;
	color: #777;
}


/* Seção de Sistemas */
.system-section {
	padding: 60px 0;
	background-color: #f0f2f5;
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title h2 {
	font-family: 'MedievalSharp', cursive;
	color: var(--primary);
	margin-bottom: 15px;
}

.system-card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s;
	margin-bottom: 20px;
	border: 1px solid rgba(0,0,0,0.05);
}

.system-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.system-icon {
	font-size: 3rem;
	margin-bottom: 15px;
}

/* Responsividade */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.2rem;
	}

	.filter-tabs .nav-link {
		padding: 8px 12px;
		font-size: 0.9rem;
	}
}


.hero-section {
	background: linear-gradient(135deg, var(--primary), var(--dark));
	color: white;
	padding: 80px 0;
	margin-bottom: 40px;
	text-align: center;
}

.hero-title {
	font-family: 'MedievalSharp', cursive;
	font-size: 3rem;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 800px;
	margin: 0 auto 30px;
}



/* Filtros */
.filter-container {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	margin-bottom: 40px;
}

.filter-title {
	font-family: 'MedievalSharp', cursive;
	color: var(--primary);
	margin-bottom: 20px;
	font-size: 1.5rem;
}

.filter-tabs .nav-link {
	color: var(--primary);
	font-weight: 500;
	border: none;
	padding: 10px 20px;
	margin-right: 5px;
	border-radius: 8px;
}

.filter-tabs .nav-link.active {
	background-color: var(--primary);
	color: white;
}

.search-box {
	position: relative;
}

.search-box i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #777;
}

.search-box input {
	padding-left: 40px;
	border-radius: 20px;
	border: 1px solid #ddd;
}

/* Cards de Mesa */
.table-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	overflow: hidden;
	margin-bottom: 30px;
	transition: transform 0.3s, box-shadow 0.3s;
	border: 1px solid rgba(0,0,0,0.05);
}

.table-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.table-img {
	height: 180px;
	width: 100%;
	object-fit: cover;
	border-bottom: 3px solid var(--primary);
}


/* Main Content */
.main-container {
	flex: 1;
	padding: 30px 0;
	background-color: #f8f9fa;
}

/* Players Panel */
.players-panel {
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.panel-title {
	padding: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	margin-bottom: 0;
	font-family: 'MedievalSharp', cursive;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: 10px;
}

.panel-title i {
	color: var(--secondary);
}

.players-list {
	padding: 20px;
	overflow-y: auto;
	max-height: calc(100vh - 250px);
}

.player-card {
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 15px;
	margin-bottom: 15px;
	background: rgba(0, 0, 0, 0.02);
	border-radius: 10px;
	transition: all 0.3s;
	border-left: 4px solid var(--secondary);
}

.player-card:hover {
	background: rgba(52, 152, 219, 0.05);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.player-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(45deg, var(--warning), var(--accent));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: white;
	margin-right: 15px;
	flex-shrink: 0;
}

.player-info {
	flex: 1;
}

.player-name {
	font-weight: bold;
	margin-bottom: 5px;
}

.player-class {
	font-size: 0.85rem;
	color: var(--secondary);
}

.player-hp {
	display: flex;
	align-items: center;
	margin-top: 5px;
	font-size: 0.8rem;
}

.hp-bar {
	flex: 1;
	height: 6px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 3px;
	margin: 0 8px;
	overflow: hidden;
}

.hp-fill {
	height: 100%;
	background: var(--success);
	border-radius: 3px;
	width: 85%;
}

.player-status {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--success);
	margin-left: 10px;
	flex-shrink: 0;
}

/* Character Sheet */
.character-sheet {
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.sheet-tabs .nav-link {
	color: #666 !important;
	font-weight: 500;
	border: none;
	padding: 12px 20px;
	border-radius: 0;
}

.sheet-tabs .nav-link.active {
	background: transparent;
	color: var(--secondary) !important;
	border-bottom: 3px solid var(--secondary);
}

.tab-content {
	padding: 20px;
	overflow-y: auto;
	max-height: calc(100vh - 250px);
}

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

.attribute {
	background: rgba(0, 0, 0, 0.02);
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.attribute:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.attribute-name {
	font-weight: bold;
	margin-bottom: 10px;
	color: var(--secondary);
}

.attribute-value {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 10px;
	font-family: 'Courier New', monospace;
	color: var(--primary);
}

.attribute-controls {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.control-btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--secondary);
	border: none;
	color: white;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.control-btn:hover {
	background: var(--accent);
	transform: scale(1.1);
}

.skills-section, .inventory-section {
	background: rgba(0, 0, 0, 0.02);
	border-radius: 10px;
	padding: 20px;
	margin-top: 20px;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section-header h4 {
	margin: 0;
	color: var(--primary);
}

.skills-grid {
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 10px;
}

.skill {
	background: white;
	padding: 10px;
	border-radius: 6px;
	text-align: center;
	font-size: 0.9rem;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.skill:hover {
	background: rgba(52, 152, 219, 0.1);
	transform: translateY(-2px);
}

.inventory-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	padding: 12px 15px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.item:hover {
	background: rgba(52, 152, 219, 0.1);
}

.item-info {
	display: flex;
	align-items: center;
	gap: 10px;
}

.item-icon {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	background: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark);
	font-size: 0.9rem;
}

.item-actions {
	display: flex;
	gap: 8px;
}

.action-btn {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.05);
	border: none;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.action-btn:hover {
	background: var(--secondary);
	color: white;
}

.btn-add {
	width: 100%;
	padding: 10px;
	background: var(--secondary);
	color: white;
	border: none;
	border-radius: 8px;
	margin-top: 15px;
	font-weight: bold;
	transition: all 0.3s;
}

.btn-add:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

/* Dice Panel */
.dice-panel {
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.dice-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	padding: 20px;
}

.dice {
	aspect-ratio: 1/1;
	background: white;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.dice:hover {
	background: rgba(52, 152, 219, 0.1);
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.dice i {
	font-size: 2.5rem;
	margin-bottom: 5px;
	color: var(--warning);
}

.dice span {
	font-weight: bold;
	font-size: 0.9rem;
}

.rolls-container {
	padding: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	max-height: 300px;
	overflow-y: auto;
}

.roll {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.roll:last-child {
	border-bottom: none;
}

.roll-player {
	display: flex;
	align-items: center;
	gap: 8px;
}

.roll-player-avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: bold;
	color: white;
}

.roll-info {
	display: flex;
	flex-direction: column;
}

.roll-dice {
	font-weight: bold;
	color: var(--warning);
	font-size: 0.9rem;
}

.roll-result {
	font-weight: bold;
	color: var(--accent);
	font-size: 1.2rem;
}

/* Dice Animation */
.dice-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--gold);
	animation: rollAnimation 0.8s ease-out;
	border-radius: 10px;
	z-index: 10;
}

@keyframes rollAnimation {
	0% {
		transform: rotate(0deg) scale(0.5);
		opacity: 0;
	}
	50% {
		transform: rotate(360deg) scale(1.2);
		opacity: 1;
	}
	100% {
		transform: rotate(720deg) scale(1);
		opacity: 1;
	}
}


/* Mobile Bottom Menu */
.mobile-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, var(--primary), var(--dark));
	display: none;
	z-index: 1000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu .nav-link {
	color: white !important;
	text-align: center;
	padding: 12px 5px;
	font-size: 0.8rem;
}

.mobile-menu .nav-link i {
	display: block;
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.mobile-menu .nav-link.active {
	color: var(--gold) !important;
}

/* Responsividade */
@media (max-width: 992px) {
	.attributes {
		grid-template-columns: 1fr;
	}

	.dice-container {
		grid-template-columns: repeat(6, 1fr);
	}
}

@media (max-width: 768px) {
	.players-panel, .dice-panel {
		margin-bottom: 30px;
	}

	.players-list, .tab-content, .rolls-container {
		max-height: none;
	}

	.mobile-menu {
		display: flex;
	}

	body {
		padding-bottom: 60px;
	}
}

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

::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: var(--secondary);
	border-radius: 10px;
}

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

.player-card.active{
	background: rgb(241 203 15 / 27%);
}

/* Estilos para a aba de habilidades */
.skills-section {
	padding: 15px;
}

.skills-list {
	margin-top: 15px;
}

.skill-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	border-bottom: 1px solid #eee;
	transition: background-color 0.2s;
}

.skill-item:hover {
	background-color: #f9f9f9;
}

.skill-info {
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.skill-icon {
	margin-right: 10px;
	font-size: 1.2rem;
	color: var(--gold);
}

.skill-name {
	font-weight: bold;
}

.skill-actions .action-btn {
	margin-left: 5px;
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
}

.skill-actions .action-btn:hover {
	color: var(--gold);
}

.empty-state {
	text-align: center;
	padding: 30px;
	color: #999;
}

.empty-state i {
	font-size: 2rem;
	margin-bottom: 10px;
}
