.btn-primary {
	border: none;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
	transform: translateY(0);
}


/* 遮罩层样式 */
.overlay {
	display:none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	animation: fadeIn2 0.3s ease-out;
}

@keyframes fadeIn2 {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* 弹窗样式 */
.modal {
	position: relative;
	width:100%;
	max-width: 998px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	animation: scaleIn 0.3s ease-out;
	overflow:auto;
}

.modalTopBorder{
	position: relative;
	width:100%;
	height:1px;
	background: linear-gradient(to right, #44bee7, #68e0cf);
}
.modalBottomBorder{
	position: relative;
	width:100%;
	height:1px;
	background: linear-gradient(to right, #209cff, #45bfe7);
}
.modalLeftBorder{
	position:absolute;
	height:1000px;
	width:1px;
	left:0;
	top:0;
	background: linear-gradient(to bottom, #44bee7, #209cff);
	z-index:1000;
}
.modalRightBorder{
	position:absolute;
	height:1000px;
	width:1px;
	right:0;
	top:0;
	background: linear-gradient(to bottom, #68e0cf, #45bfe7);
	z-index:999;
}

.modalWrap {
	position: relative;
	background: rgba(17, 19, 22, 0.85);
	width: 100%;
	overflow:hidden;
}
@keyframes scaleIn {
	from { transform: scale(0.9); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.modal-header {
	width:100%;
	color: white;
	padding: 20px;
}

.modal-title {
	font-size: 3.5rem;
	font-weight: 600;
	text-align:center;
}

.close-btn {
	position:absolute;
	width:42px;
	height:42x;
	line-height:42px;
	background: none;
	border: none;
	color: white;
	font-size: 3.8rem;
	cursor: pointer;
	transition: transform 0.2s;
	padding:0;
	margin:0;
	right:10px;
	margin-top:8px;
  transform-origin: center center;
}

.close-btn:hover {
  transform-origin: center center;

}

.modal-body {
	padding: 25px 0;
}

/* 表单样式 */
.formWrap{
	width:90%;
	min-width:900px;
	margin:0 auto;
}
.form-section {
	color:#fff;
	height:auto;

}
.form-left{
	position:relative;
	width:62%;
	height:auto;
	float:left;
	margin-right:8%;
}
.form-right{
	position:relative;
	width:250px;
	height:auto;
	float:left;
}
.form-title {
	color: #01ffae;
	margin-bottom: 20px;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
	padding-left:40%;
}

.form-right .form-title {
	color: #fff;
	margin-bottom: 5px;
	font-size: 1.0rem;
	display: flex;
	align-items: left;
	padding-left:0%;
} 
.form-title i {
	margin-right: 10px;
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	width:40%;
	height:40px;
	line-height:40px;
	float:left;
	font-size: 1.6rem;
	text-align:right;
	padding-right:30px;
	paddgin-top:20px;
	color:#fff;
}

.form-right label{
	float:none;	
	width:100%;
	height:40px;
	line-height:40px;
	font-size: 0.95rem;
} 
.form-group-r{
	width: 55%;
	float:left;
	margin:0;
	padding:0;
}
input[type="text"],
input[type="file"] {
	width: 300px;
	padding: 10px 5px;
	font-size: 16px;
	transition: border-color 0.3s;
	background:#0f1013;
	border:1px solid #262f3c;
	color:#fff;
	cursor:pointer;
}
input::placeholder {
    color: #3c485a;
}
input[type="text"]:focus {
	border-color: #71899c;
	outline: none;
	color:#fff;
}

.teamname input[type="text"]{
	width:220px;
	
}
.teamname button{
	width:74px;
	height:40px;
	line-height:40px;
	background:#606676;
	border:1px solid #19f1ff;
	font-size:16px;
	color:#fff;
	margin:0;
	padding:0;
	cursor:pointer;
}
.teammate {
	width:55%;
	float:left;
	margin-bottom: 10px;
}

.teammate input {
	flex: 1;
	margin-right:2px;
	margin-bottom:2px;
	width:20%;
}
.btn-submit{
	width: 328px;
	height: 104px;
	margin:0 auto;
	margin-top:330px;
	background: url(../images/gameStartBtn_off.png) no-repeat center;
	transition: all 0.2s ease;
}
.btn-submit {
	background:url(../images/gameStartBtn_on.png) no-repeat center;
}
    
	
.btn {
	width:20px;
	height:20px;
	color: white;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
	display: inline-flex;
	align-items: center;
	text-align:center;
	background:none;
}

.btn i {
	width:100%;
	font-size: 12px;
}

.btn:hover {
}

.btn-add {
	width:40px;
	height:40px;
	color:#19ffe7;
	margin-left:10px;
	
}
.btn.btn-add i{
	font-size: 18px;
}
.btn-add:hover {
	color:#19ffe7;
	
}

.btn-remove {
	color:#ccc;
}

.btn-remove:hover {
}

.logo-preview {
	position:relative;
	width:250px;
	height: 250px;
	border: 2px dashed #1a2a6c;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background:#0f1013;
	text-align:center;
	
}
.logo-preview span{
	width:230px;
	height:230px;
	position:absolute;
	line-height:230px;
	font-size:30px;
	text-align:center;
	color:#3c485a;
	z-index:101;
}
.logo-preview i{
	font-size:3rem;
	color:#3c485a;
	text-align:center;
}
.logo-preview .logo-preview-mask{
	position:absolute;
	width:250px;
	height: 250px;
	background:rgba(28,32,37,0.3);
	mask-image: radial-gradient(circle, transparent 65%, black 65%); /* 标准 */
	z-index:103;
}
.mask1{
	width:230px;
	height:230px;
	margin:10px auto;
	border-radius:50%;
	/*border:1px solid #262b31;*/
	background:none;	
}
.logo-preview img {
	margin:0 auto;
	z-index:102;
}
input[type="file"]{
	width:250px;
	height:40px;
	padding:5px;
	/*opacity: 0;  
    filter: alpha(opacity=0);*/	
	margin-top:20px;
}
input[type="file"] button{
	background:none;	
}
button.btn-confirm{
	width:250px;	
	height:50px;
	background:#606676;
	border:2px solid #19ffe7;
	color:#fff;
	font-size:24px;
	margin-top:20px;
}
.agreement{
	position:relative;
	width:100%;
	background:#000;
} 
.agreementWrap{
	position:relative;
	width:100%;
	padding:20px 0 10px 0;
} 
.agreementGroup{
	margin:5px 0;	
}
.agreement-left{
	position:relative;
	width:22%;
	height:40px;
	line-height:40px;
	float:left;
	font-size: 1.6rem;
	text-align:right;
	color:#fff;

}
.agreement-right{
	position:relative;
	float:left;
	margin-left:50px;
	}
.agreement .agree-button{
	width:37px;
	height:40px;
	background:url(../images/agreebtn.png) no-repeat center top;	
}
.agreement .agree-button-on{
	width:37px;
	height:40px;
	background:url(../images/agreebtn02.png) no-repeat center top;	
}
.agreementInfo{
	margin-bottom:5px;	
}
.agreementInfo a{
	font-size:18px;
	color:#5af6f0;
	border-bottom:1px solid #5af6f0;
}
.agreement-right p{
	font-size:18px;
	color:#fff;
}
.submit-container {
	text-align: center;
	margin-top: 20px;
}

.btn-submit {
	background:url(../images/submitBtn_off.png);
	width:328px;
	height:104px;
	margin:0;
}
.btn-submit:hover {
	background:url(../images/submitBtn_on.png);
	width:328px;
	height:104px;
}