:root{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;line-height:1.5;font-weight:400;font-synthesis:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}html{scroll-behavior:smooth}body{margin:0;min-height:100vh;background-color:#000;color:#fff}#root{width:100%;min-height:100vh}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:#111}::-webkit-scrollbar-thumb{background:gold;border-radius:4px}::-webkit-scrollbar-thumb:hover{background:#ffc107}::selection{background:gold;color:#000}::-moz-selection{background:gold;color:#000}*{margin:0;padding:0;box-sizing:border-box}:root{--primary-color: #FFD700;--primary-dark: #FFC107;--secondary-color: #000000;--text-primary: #FFFFFF;--text-secondary: #F5F5F5;--text-muted: #CCCCCC;--background-dark: #111111;--background-darker: #000000;--accent-yellow: #FFEB3B;--gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%)}.app{background-color:var(--secondary-color);color:var(--text-primary);min-height:100vh}.container{max-width:1200px;margin:0 auto;padding:0 2rem}.navbar{position:fixed;top:0;width:100%;background:#000000f2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);z-index:1000;padding:1rem 0;transition:all .3s ease}.nav-container{max-width:1200px;margin:0 auto;padding:0 2rem;display:flex;justify-content:space-between;align-items:center}.nav-logo{font-size:1.5rem;font-weight:700;color:var(--primary-color);text-decoration:none}.nav-menu{display:flex;list-style:none;gap:2rem}.nav-menu a{color:var(--text-primary);text-decoration:none;font-weight:500;transition:color .3s ease;position:relative}.nav-menu a:hover{color:var(--primary-color)}.nav-menu a:after{content:"";position:absolute;bottom:-5px;left:0;width:0;height:2px;background:var(--primary-color);transition:width .3s ease}.nav-menu a:hover:after{width:100%}.hero{min-height:100vh;display:flex;align-items:center;padding:0 2rem;background:var(--secondary-color);position:relative;overflow:hidden}.hero-content{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;width:100%}.hero-title{font-size:3.5rem;font-weight:700;line-height:1.2;margin-bottom:1rem}.highlight{background:var(--gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.hero-subtitle{font-size:1.5rem;color:var(--primary-color);margin-bottom:1rem;font-weight:600}.hero-description{font-size:1.1rem;color:var(--text-muted);margin-bottom:2rem;line-height:1.6}.hero-buttons{display:flex;gap:1rem}.hero-visual{display:flex;justify-content:center;align-items:center}.hero-shape{width:300px;height:300px;background:var(--gradient);border-radius:50%;position:relative;animation:float 3s ease-in-out infinite}.hero-shape:before{content:"";position:absolute;inset:-20px;background:linear-gradient(45deg,var(--primary-color),transparent,var(--primary-color));border-radius:50%;z-index:-1;animation:rotate 4s linear infinite}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-20px)}}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.btn{padding:.75rem 2rem;border:none;border-radius:50px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease;text-decoration:none;display:inline-block;text-align:center}.btn-primary{background:var(--gradient);color:var(--secondary-color)}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 25px #ffd7004d}.btn-secondary{background:transparent;color:var(--primary-color);border:2px solid var(--primary-color)}.btn-secondary:hover{background:var(--primary-color);color:var(--secondary-color);transform:translateY(-2px)}section{padding:5rem 0}.section-title{font-size:2.5rem;text-align:center;margin-bottom:3rem;color:var(--text-primary);position:relative}.section-title:after{content:"";position:absolute;bottom:-10px;left:50%;transform:translate(-50%);width:60px;height:3px;background:var(--gradient)}.about{background:var(--background-dark)}.about-content{display:grid;grid-template-columns:2fr 1fr;gap:4rem;align-items:center}.about-text p{font-size:1.1rem;line-height:1.8;color:var(--text-muted);margin-bottom:1.5rem}.about-stats{display:flex;flex-direction:column;gap:2rem}.stat{text-align:center;padding:1.5rem;background:#ffd7001a;border-radius:10px;border:1px solid rgba(255,215,0,.2)}.stat h3{font-size:2rem;color:var(--primary-color);margin-bottom:.5rem}.stat p{color:var(--text-muted);font-size:.9rem}.skills{background:var(--secondary-color)}.skills-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}.skill-card{background:var(--background-dark);padding:2rem;border-radius:15px;border:1px solid rgba(255,215,0,.1);transition:all .3s ease}.skill-card:hover{transform:translateY(-5px);border-color:var(--primary-color);box-shadow:0 10px 30px #ffd7001a}.skill-card h3{color:var(--primary-color);margin-bottom:1rem;font-size:1.3rem}.skill-card ul{list-style:none}.skill-card li{color:var(--text-muted);position:relative;padding:.5rem 0 .5rem 1.5rem}.skill-card li:before{content:"▶";position:absolute;left:0;color:var(--primary-color);font-size:.8rem}.contact{background:var(--background-dark)}.contact-subtitle{text-align:center;font-size:1.2rem;color:var(--text-muted);margin-bottom:3rem}.contact-content{display:grid;grid-template-columns:1fr 1fr;gap:4rem}.contact-info{display:flex;flex-direction:column;gap:2rem}.contact-item{padding:1.5rem;background:#ffd7000d;border-radius:10px;border-left:4px solid var(--primary-color)}.contact-item h3{color:var(--primary-color);margin-bottom:.5rem}.contact-item p{color:var(--text-muted)}.contact-form{background:var(--secondary-color);padding:2rem;border-radius:15px;border:1px solid rgba(255,215,0,.1)}.form-group{margin-bottom:1.5rem}.form-group input,.form-group textarea{width:100%;padding:1rem;background:var(--background-dark);border:1px solid rgba(255,215,0,.2);border-radius:8px;color:var(--text-primary);font-size:1rem;transition:border-color .3s ease}.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--primary-color)}.form-group input::placeholder,.form-group textarea::placeholder{color:var(--text-muted)}.footer{background:var(--background-darker);padding:2rem 0;border-top:1px solid rgba(255,215,0,.1)}.footer-content{display:flex;justify-content:space-between;align-items:center}.footer-left p{color:var(--text-muted)}.social-links{display:flex;gap:1.5rem}.social-links a{color:var(--text-muted);text-decoration:none;transition:color .3s ease}.social-links a:hover{color:var(--primary-color)}@media (max-width: 768px){.nav-menu{display:none}.hero-content{grid-template-columns:1fr;text-align:center}.hero-title{font-size:2.5rem}.about-content{grid-template-columns:1fr}.about-stats{flex-direction:row;justify-content:space-around}.contact-content{grid-template-columns:1fr}.footer-content{flex-direction:column;gap:1rem;text-align:center}.hero-buttons{flex-direction:column;align-items:center}.container{padding:0 1rem}}@media (max-width: 480px){.hero-title,.section-title{font-size:2rem}.hero-shape{width:200px;height:200px}}
