/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 2rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

header .logo img {
    height: 32px;
    filter: brightness(1.1);
}

/* Canvas container */
#canvasContainer {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Overlay */
.overlay {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay.loaded {
    background: linear-gradient(rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
}

/* Main title section */
.name {
    text-align: center;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.name .content h1 {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.name .content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Info section */
.info-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 20;
}

.info-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    opacity: 0.9;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-text {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
}

.info-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: inherit;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    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.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn:active {
    transform: translateY(0);
}

.login-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.docs-btn {
    border-color: rgba(255, 255, 255, 0.1);
}

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

/* Loading message */
#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 100;
}

/* Responsive design */
@media (max-width: 768px) {
    header {
        height: 60px;
        padding: 0 1rem;
    }
    
    #canvasContainer {
        top: 60px;
    }
    
    .info-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .info-section {
        padding: 4rem 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .name {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 3rem 1rem;
    }
    
    .info-buttons {
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
/* body { */
/* 	margin: 0; */
/* 	padding: 0; */
/* 	overflow-x: hidden; */
/* 	background-color: black; */
/* 	font-family: 'Courier New', monospace; */
/* 	color: white; */
/* } */
/**/
/* /* Header */ */
/* header { */
/* 	position: fixed; */
/* 	top: 0; */
/* 	left: 0; */
/* 	width: 100%; */
/* 	height: 60px; */
/* 	background-color: black; */
/* 	display: flex; */
/* 	justify-content: space-between; */
/* 	align-items: center; */
/* 	padding: 0 20px; */
/* 	border-bottom: 1px solid white; */
/* 	z-index: 100; */
/* } */
/**/
/* header .logo img { */
/* 	height: 40px; */
/* } */
/**/
/* header .login-btn a { */
/* 	color: white; */
/* 	text-decoration: underline; */
/* 	cursor: pointer; */
/* } */
/**/
/* /* Canvas container */ */
/* #canvasContainer { */
/* 	position: fixed; */
/* 	top: 60px; */
/* 	left: 0; */
/* 	width: 100%; */
/* 	height: calc(100vh - 60px); */
/* 	z-index: 1; */
/* } */
/**/
/* canvas { */
/* 	display: block; */
/* 	width: 100%; */
/* 	height: 100%; */
/* } */
/**/
/* /* Loading Message */ */
/* #loading { */
/* 	position: absolute; */
/* 	top: 50%; */
/* 	left: 50%; */
/* 	transform: translate(-50%, -50%); */
/* 	font-family: 'Courier New', monospace; */
/* 	font-size: 18px; */
/* 	background-color: rgba(0, 0, 0, 0.8); */
/* 	color: white; */
/* 	padding: 20px; */
/* 	z-index: 10; */
/* } */
/**/
/* /* Title Section */ */
/* .name { */
/* 	position: relative; */
/* 	min-height: 100vh; */
/* 	width: 100%; */
/* 	display: flex; */
/* 	align-items: center; */
/* 	justify-content: center; */
/* 	text-align: center; */
/* 	z-index: 2; */
/* 	background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); */
/* } */
/**/
/* .overlay { */
/* 	position: relative; */
/* 	top: 0; */
/* 	left: 0; */
/* 	width: 100%; */
/* 	height: 100vh; */
/* 	z-index: 3; */
/* 	background: rgba(0, 0, 0, 1); */
/* 	transition: background 5s ease; */
/* 	display: flex; */
/* 	justify-content: center; */
/* 	align-items: center; */
/* } */
/**/
/* .overlay.loaded { */
/* 	background: rgba(0, 0, 0, 0); */
/* } */
/**/
/* .name .content { */
/* 	padding: 0 20px; */
/* 	width: 100%; */
/* 	box-sizing: border-box; */
/* } */
/**/
/* .name h1 { */
/* 	font-size: 8vw; */
/* 	margin: 0; */
/* } */
/**/
/* .name p { */
/* 	font-size: 2vw; */
/* 	margin: 0; */
/* } */
/**/
/* /* Info Section */ */
/* .info-section { */
/* 	position: relative; */
/* 	min-height: 100vh; */
/* 	width: 100%; */
/* 	padding: 100px 50px; */
/* 	z-index: 3; */
/* 	box-sizing: border-box; */
/* } */
/**/
/* .info-section h2 { */
/* 	font-size: 3vw; */
/* 	margin-bottom: 40px; */
/* 	text-align: center; */
/* } */
/**/
/* .info-container { */
/* 	display: flex; */
/* 	flex-direction: row; */
/* 	justify-content: space-between; */
/* 	align-items: center; */
/* 	gap: 50px; */
/* 	width: 70%; */
/* 	margin: 0 auto; */
/* } */
/**/
/* .info-text { */
/* 	flex: 1; */
/* 	font-size: 1.2rem; */
/* 	line-height: 1.6; */
/* } */
/**/
/* .info-buttons { */
/* 	display: flex; */
/* 	flex-direction: column; */
/* 	gap: 20px; */
/* } */
/**/
/* .btn { */
/* 	padding: 12px 24px; */
/* 	font-size: 1rem; */
/* 	font-family: 'Courier New', monospace; */
/* 	background-color: black; */
/* 	color: white; */
/* 	border: 1px solid white; */
/* 	cursor: pointer; */
/* } */
/**/
/* .btn:hover { */
/* 	background-color: #222; */
/* } */
/**/
/* /* Responsive adjustments */ */
/* @media (max-width: 768px) { */
/* 	.name h1 { */
/* 		font-size: 20vw; */
/* 	} */
/**/
/* 	.name p { */
/* 		font-size: 4vw; */
/* 	} */
/**/
/* 	.info-section h2 { */
/* 		font-size: 6vw; */
/* 	} */
/**/
/* 	.info-container { */
/* 		flex-direction: column; */
/* 	} */
/**/
/* 	.info-buttons { */
/* 		width: 100%; */
/* 	} */
/**/
/* 	.overlay { */
/* 		position: relative; */
/* 		top: 0; */
/* 		left: 0; */
/* 		width: 100vh; */
/* 		height: 100vh; */
/* 		display: flex; */
/* 		justify-content: center; */
/* 		align-items: center; */
/* 	} */
/**/
/* 	.name { */
/* 		width: 100%; */
/* 		padding: 0 10px; */
/* 		box-sizing: border-box; */
/* 	} */
/**/
/* 	.name .content { */
/* 		width: 100%; */
/* 		padding: 0 10px; */
/* 	} */
/* } */
