* 



{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
          
}
        


        .navbar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 12px 30px;
            border: 1px solid #333;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #ffffff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: #ffffff;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }


        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }


        .section {
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .section h1 {
            font-size: 6rem;
            font-weight: 900;
            text-align: center;
            letter-spacing: -2px;
            opacity: 0.9;
            margin-bottom: 20px;
        }


.main-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

        .section-info {
            font-size: 1.1rem;
            color: #999;
            font-style: italic;
            text-align: justify;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-info_ {
			font-size: 1.1rem;
            color: #999;
            font-style: italic;
            max-width: 600px;
            text-align: center;
            margin: 0 auto;
            padding: 0 20px;
        }

.center {
  display: table;
  width: 100%;
  height: 25vh;
}

#social-test {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 30px;
  .social {
    padding-left: 0px;
  }
}

 
        .footer {
            background: transparent;
            padding: 60px 20px 30px;
            display: flex;
            justify-content: center;
        }

        .footer-container {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 20px;
            padding: 40px;
            max-width: 800px;
            width: 100%;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .footer-section p,
        .footer-section a {
            color: #999;
            text-decoration: none;
            margin-bottom: 8px;
            display: block;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-section a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #666;
            font-size: 0.85rem;
        }

        @media (max-width : 1576px ){
            .navbar {
                top: 15px;
                padding: 10px 20px;
                width: calc(100% - 30px);
                max-width: 500px;
            }

            .nav-container {
                justify-content: space-between;
                gap: 0;
            }

            .nav-center {
                gap: 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(26, 26, 26, 0.95);
                flex-direction: column;
                padding: 20px;
                border-radius: 15px;
                margin-top: 10px;
                gap: 15px;
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

            .section h1 {
                font-size: 3.5rem;
                padding: 0 20px;
            }
			
			.text-container {
                font-size: 3.5rem;
                padding: 0 0px;
            }
			
            .footer-container {
                margin: 0 10px;
                padding: 30px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 20px;
            }
          .button_ {
                grid-template-columns: 1fr;
                text-align: center;
    
            }
        }

        @media (max-width : 348px ){
            .section h1 {
                font-size: 2.5rem;
            }
			
			.text-container {
                font-size: 2.5rem;
            }
			
            .navbar {
                padding: 8px 15px;
            }

            .logo {
                font-size: 1.3rem;
            }
        }

        @media (prefers-reduced-motion: no-preference) {
            html {
                scroll-behavior: smooth;
            }
        }


.social-icons{
	padding:30px;
  text-align: center;
}
.social-icons a{
	color:#fff;
  line-height:30px;
  font-size:30px;
  margin: 0 5px;
  text-decoration:none;
  
}
.social-icons a i{
	line-height:30px;
  font-size:30px;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1); 
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1); 
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.social-icons a:hover i{
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.5);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.5);   
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.5);
  transition: all 200ms ease-in;
  transform: scale(1.5);
}


span {
  color: white;
}

p0 {
  animation: glow 9s infinite alternate linear;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 10px rgba(255,255,255,.8),
                 0 0 20px rgba(255,255,255,.8),
                 0 0 30px rgba(255,255,255,.8),
                 0 0 40px rgba(0, 100, 151,.8),
                 0 0 50px rgba(0, 100, 151,.8),
                 0 0 60px rgba(0, 100, 151,.5),
                 0 0 70px rgba(0, 100, 151,.5),
                 0 0 90px rgba(0, 100, 151,.5),
                 0 0 100px rgba(0, 100, 151,.5);
  }
  100% {
    text-shadow: 0 0 2px rgba(255,255,255,.8),
                 0 0 8px rgba(255,255,255,.8),
                 0 0 10px rgba(55,255,255,.8),
                 0 0 20px rgba(50, 100, 151,.5),
                 0 0 30px rgba(50, 100, 151,.5),
                 0 0 40px rgba(50, 100, 151,.5),
                 0 0 50px rgba(50, 100, 151,.5),
                 0 0 100px rgba(50, 100, 151,.5);
  }
}


@layer demo {
  .chaos-button {
    position: relative;
    --r:17px;    
  aspect-ratio: cos(30deg);
  --_g:calc(tan(60deg)*var(--r)) left var(--r),#000 98%,#0000 101%;
  -webkit-mask:
    conic-gradient(from 60deg at calc(3*var(--r)/2 - 100%),#000 60deg,#0000 0)
     0 0/calc(100% - 3*var(--r)/2) 100% no-repeat,
    radial-gradient(var(--r) at calc(100% - 2*var(--r)) 50%,#000 98%,#0000 101%),
    radial-gradient(var(--r) at top    var(--_g)),
    radial-gradient(var(--r) at bottom var(--_g));
  clip-path: polygon(100% 50%,0 100%,0 0);
    
  }

  .chaos-canvas {
    position: absolute;
    inset: 0px;
    height: calc(100% - 4px);
    width: calc(100% - 4px);     
   --r:17px; 
  aspect-ratio: cos(30deg);
  --_g:calc(tan(60deg)*var(--r)) left var(--r),#000 98%,#0000 101%;
  -webkit-mask:
    conic-gradient(from 60deg at calc(3*var(--r)/2 - 100%),#000 60deg,#0000 0)
     0 0/calc(100% - 3*var(--r)/2) 100% no-repeat,
    radial-gradient(var(--r) at calc(100% - 2*var(--r)) 50%,#000 98%,#0000 101%),
    radial-gradient(var(--r) at top    var(--_g)),
    radial-gradient(var(--r) at bottom var(--_g));
  clip-path: polygon(100% 50%,0 100%,0 0);
  }

  .button_ {
    position: relative;
    color: #e0e0e0;
    padding: 0.5em 1.5em;
    margin: 0.5em;
    cursor: pointer;
     --r:17px;
}

.glass2 {
height: 129px;
 --r:17px; 
  aspect-ratio: cos(30deg);
  --_g:calc(tan(60deg)*var(--r)) left var(--r),#000 98%,#0000 101%;
  -webkit-mask:
    conic-gradient(from 60deg at calc(3*var(--r)/2 - 100%),#000 60deg,#0000 0)
     0 0/calc(100% - 3*var(--r)/2) 100% no-repeat,
    radial-gradient(var(--r) at calc(100% - 2*var(--r)) 50%,#000 98%,#0000 101%),
    radial-gradient(var(--r) at top    var(--_g)),
    radial-gradient(var(--r) at bottom var(--_g));
  clip-path: polygon(100% 50%,0 100%,0 0);
    background: linear-gradient(
      170deg,
      rgba(255,255,255,0.8) 0%,
      rgba(255,255,255,0.6) 20%,
      rgba(255,255,255,0.1) 50%,
      rgba(0,0,0,0.0) 50%,
      rgba(0,0,0,0.0) 100%
    ); /* W3C */
    border-color: #e0e0e0;
    border-image: none;
    border-style: inset;
    border-width: 1px;
}

.glass2:before {
  position: absolute;
  content: "";
  top: -2px;
  left: 2%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.75) 15%,
    rgba(0,0,0,0.9) 50%,
    rgba(0,0,0,0.75) 85%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

.glass2:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 2%;
  width: 96%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.5) 5%,
    rgba(0,0,0,0.9) 50%,
    rgba(0,0,0,0.5) 95%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}
