	:root{
		--primary-color: #111;
		--secondary-color: #33f;
		--accent-color: #f093fb;
		--text-dark: #dddf;
		--text-light: #333f;
		--text-muted: #718096;
		--bg-primary: #fff;
		--bg-secondary: #f7fafc;
		--bg-card: rgba(255,255,255,0.9);
		--border-color: #e2e8f0;
		--shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
		--shadow-md: 0 4px 6px rgba(0,0,0,0.07);
		--shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
		--radius-sm: 0.375rem;
		--radius-md: 0.5rem;
		--radius-lg: 0.75rem;
		--gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
		--gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));
		--font-size-xs: 0.75rem;
		--font-size-sm: 0.875rem;
		--font-size-base: 1rem;
		--font-size-lg: 1.125rem;
		--font-size-xl: 1.25rem;
		--font-size-2xl: 1.5rem;
		--font-size-3xl: 1.875rem;
		--font-size-4xl: 2.25rem;
	}

	*{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	*, *:before, *:after{
		box-sizing: border-box;
	}
	
	body{
		text-size-adjust: 100%;
		font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
		line-height: 1.6;
		color: var(--text-light);
		background: white;
		min-height: 100vh;
		font-size: var(--font-size-base);
	}

	h1,h2,h3,h4,h5,h6{
		font-weight: 700;
		line-height: 1.2;
		margin-bottom: 0.75rem;
		color: var(--text-light);
	}

	h1{ font-size: var(--font-size-4xl); }
	h2{ font-size: var(--font-size-3xl); }
	h3{ font-size: var(--font-size-2xl); }
	h4{ font-size: var(--font-size-xl); }
	h5{ font-size: var(--font-size-lg); }
	h6{ font-size: var(--font-size-base); }

	.h1{ font-size: var(--font-size-4xl); }
	.h2{ font-size: var(--font-size-3xl); }
	.h3{ font-size: var(--font-size-2xl); }
	.h4{ font-size: var(--font-size-xl); }
	.h5{ font-size: var(--font-size-lg); }
	.h6{ font-size: var(--font-size-base); }

	p{
		margin-bottom: 1rem;
		color: var(--text-light);
	}

	a{
		color: var(--primary-color);
		text-decoration: none;
		transition: all 0.3s ease;
	}
	
	a:hover{
		color: var(--secondary-color);
		text-decoration: underline;
	}

	.h1,.h2,.h3,.h4,.h5,.h6,.h7,.h8{
		font-weight: normal;
	}

	input[type=text], input[type=datetime-local], input[type=password], input[type=email], input[type=number]{
		appearance: none;
		background-color: transparent;
		background-image: none;
		border: 0px solid white;
		border-bottom: 1px solid transparent;
		border-radius: 0;
		color: inherit;
		font-family: inherit;
		font-size: var(--font-size-base);
		padding: 0.75rem 1rem;
	}

	input[type=text]:focus, input[type=datetime-local]:focus, input[type=password]:focus, input[type=email]:focus, input[type=number]:focus{
		border: 0px solid transparent;
		border-bottom: 1px transparent;
		box-shadow: none;
		outline: none;
	}

	textarea{
		appearance: none;
		background-color: transparent;
		background-image: none;
		border: 1px solid transparent;
		border-radius: 0;
		color: inherit;
		font-family: inherit;
		font-size: var(--font-size-base);
		padding: 0.75rem 1rem;
	}

	textarea:focus{
		border: 1px solid transparent;
		box-shadow: none;
		outline: none;
	}
	
	input[type=radio]{
		display: none;
	}

	input[type=radio]+span{
		cursor: pointer;
		display: inline-block;
		margin: 0 0.2rem 0;
		padding: 0 0 0 1.2rem;
		position: relative;
	}

	input[type=radio]+span::before{
		transform: translateY(-50%);
		background: transparent;
		border: 1px solid transparent;
		border-radius: 50%;
		content: "";
		display: block;
		height: 16px;
		left: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 16px;
	}

	input[type=radio]+span::after{
		transform: translateY(-50%);
		background: transparent;
		border: 1px solid transparent;
		border-radius: 50%;
		content: "";
		height: 8px;
		opacity: 0;
		padding: 2px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		transition: all 0.3s ease 0s;
		width: 8px;
	}

	input[type=radio]:checked+span::after{
		opacity: 1;
	}

	input[type=checkbox]{
		display: none;
	}

	input[type=checkbox]+span{
		cursor: pointer;
		display: inline-block;
		margin: 0 0.2rem 0;
		padding: 0 0 0 1.2rem;
		position: relative;
	}

	input[type=checkbox]+span::before{
		transform: translateY(-50%);
		background: transparent;
		border: 1px solid transparent;
		border-radius: 2px;
		content: "";
		display: block;
		height: 1rem;
		left: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 1rem;
	}

	input[type=checkbox]+span::after{
		transform: translateY(-50%) rotate(-45deg);
		border-bottom: 3px solid transparent;
		border-left: 3px solid transparent;
		content: "";
		display: block;
		height: 0.6rem;
		left: 0;
		margin-top: -0.2rem;
		opacity: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%) rotate(-45deg);
		transition: all 0.3s ease 0s;
		width: 1rem;
	}

	input[type=checkbox]:checked+span::after{
		opacity: 1;
	}

	select{
		appearance: none;
		background: transparent url(./?p=arrow&c=icon) no-repeat center right 0.5rem/1rem 1rem;
		border: 1px solid transparent;
		border-radius: 5px;
		color: inherit;
		cursor: pointer;
		font-family: inherit;
		font-size: var(--font-size-base);
		padding: 0.75rem 1rem;
	}

	select::-ms-expand{
		display: none;
	}

	select:focus{
		border: 1px solid transparent;
		box-shadow: none;
		outline: none;
	}

	input[type=submit], input[type=reset], input[type=button], button{
		appearance: none;
		background-color: transparent;
		background-image: none;
		border: 1px solid transparent;
		color: var(--primary-color);
		cursor: pointer;
		display: inline-block;
		font-size: var(--font-size-base);
		margin: 0 0 1rem;
		padding: 0.75rem 1rem;
		text-decoration: none;
	}

	input[type=submit]:hover, input[type=reset]:hover, input[type=button]:hover, button:hover,
	input[type=submit]:focus, input[type=reset];focus, input[type=button]:focus, button:focus{
		background-color: transparent;
		color: var(--secondary-color);
		outline: none;
	}

	input[type=submit]::focus-inner, input[type=reset]::focus-inner, input[type=button]::focus-inner, button::focus-inner{
		border: none;
		padding: 0;
	}

	input[type=file]{
		display: none;
	}

	.eyeCatche{
		width: 100%;
		height: 100vh;
		display: table;
		text-align: center;
	}

	.eyeCatche > div{
		display: table-cell;
		vertical-align: middle;
	}

	.copyright{
		font-size: 0.8rem;
		text-align: center;
	}

	.container{
		max-width: 1200px;
		margin: 0 auto;
		padding: 2rem 1rem;
	}

	.clearfix::after{
		content: "";
		display: table;
		clear: both;
	}

	.grid{
		display: grid;
		gap: 2rem;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}

	.flex{
		display: flex;
		gap: 1rem;
	}

	.flex-center{
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.card{
		background: var(--bg-card);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255,255,255,0.2);
		border-radius: var(--radius-lg);
		padding: 2rem;
		box-shadow: var(--shadow-lg);
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
	}

	.card::before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 4px;
		background: var(--gradient-primary);
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.card:hover{
		transform: translateY(-5px);
		box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	}

	.card:hover::before{
		opacity: 1;
	}

	.card-header{
		margin-bottom: 1.5rem;
	}

	.card-title{
		color: var(--text-dark);
		margin-bottom: 0.5rem;
	}

	.card-subtitle{
		color: var(--text-muted);
		font-size: var(--font-size-sm);
		font-weight: 400;
	}

	.btn{
		display: inline-block;
		padding: 0.75rem 1.5rem;
		border: none;
		border-radius: var(--radius-md);
		font-weight: 600;
		text-align: center;
		cursor: pointer;
		transition: all 0.3s ease;
		font-size: var(--font-size-sm);
		text-decoration: none;
		position: relative;
		overflow: hidden;
	}

	.btn::before{
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
		transition: left 0.5s ease;
	}

	.btn:hover::before{
		left: 100%;
	}
	
	.btn-primary{
		background: var(--gradient-primary);
		color: white;
	}

	.btn-secondary{
		background: var(--bg-primary);
		color: var(--primary-color);
		border: 2px solid var(--primary-color);
	}

	.btn:hover{
		transform: translateY(-2px);
		box-shadow: var(--shadow-md);
	}

	.form-group{
		margin-bottom: 1.5rem;
	}
	
	.form-label{
		display: block;
		margin-bottom: 0.5rem;
		font-weight: 600;
		color: var(--text-light);
	}
	
	.form-input{
		width: 100%;
		padding: 0.75rem 1rem;
		border: 2px solid var(--border-color);
		border-radius: var(--radius-md);
		font-size: var(--font-size-base);
		transition: all 0.3s ease;
		background: var(--bg-primary);
	}

	.form-input:focus{
		outline: none;
		border-color: var(--primary-color);
		box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
	}

	.badge{
		display: inline-block;
		padding: 0.25rem 0.75rem;
		font-size: var(--font-size-xs);
		font-weight: 600;
		border-radius: 9999px;
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}

	.badge-primary{
		background: var(--gradient-primary);
		color: white;
	}

	.badge-secondary{
		background: var(--bg-secondary);
		color: var(--text-muted);
	}

	@keyframes fadeInUp{
		from{
			opacity: 0;
			transform: translateY(20px);
		}
		to{
			opacity: 1;
			transform: translateY(0);
		}
	}

	@keyframes pulse{
		0%, 100%{
			opacity: 1;
		}
		50%{
			opacity: 0.7;
		}
	}

	.fade-in-up{
		animation: fadeInUp 0.6s ease-out;
	}

	.animate-pulse{
		animation: pulse 2s infinite;
	}

	.text-center{ text-align: center; }
	.text-right{ text-align: right; }
	.text-left{ text-align: left; }
	
	.text-primary{ color: var(--primary-color); }
	.text-secondary{ color: var(--secondary-color); }
	.text-muted{ color: var(--text-muted); }

	.bg-primary{ background: var(--bg-primary); }
	.bg-gradient{ background: var(--gradient-primary); }

	.rounded{ border-radius: var(--radius-md); }
	.rounded-lg{ border-radius: var(--radius-lg); }
	.rounded-full{ border-radius: 9999px; }

	.shadow{ box-shadow: var(--shadow-md); }
	.shadow-lg{ box-shadow: var(--shadow-lg); }

	.mb-2{ margin-bottom: 0.5rem; }
	.mb-4{ margin-bottom: 1rem; }
	.mb-6{ margin-bottom: 1.5rem; }
	.mb-8{ margin-bottom: 2rem; }

	.mt-2{ margin-top: 0.5rem; }
	.mt-4{ margin-top: 1rem; }
	.mt-6{ margin-top: 1.5rem; }
	.mt-8{ margin-top: 2rem; }

	@media (max-width: 768px){
		.container{
			padding: 1rem 0.5rem;
		}

		.card{
			padding: 1.5rem;
		}

		h1{ font-size: var(--font-size-3xl); }
		h2{ font-size: var(--font-size-2xl); }

		.grid{
			grid-template-columns: 1fr;
			gap: 1rem;
		}
	}
