*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Arial';
}

body{
  background:#020202;
  color:#fff;
}

.container{
  width:90%;
  max-width:1100px;
  margin:auto;
  padding-top:120px;
}

nav{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  background:#0a0a0a;
  border-bottom:2px solid #FF0000;
  z-index:99;
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:90%;
  max-width:1100px;
  margin:auto;
  height:70px;
}

.logo{
  font-size:24px;
  font-weight:bold;
  color:#FF0000;
}

nav ul{
  list-style:none;
  display:flex;
  gap:25px;
}

nav ul li a{
  color:white;
  text-decoration:none;
  font-weight:bold;
  position:relative;
}

nav ul li a:hover,
nav ul li a.active{
  color:#FF0000;
}


.card{
  background:#0c0c0c;
  padding:25px;
  border-radius:6px;
  border:1px solid #FF0000;
  box-shadow:0 0 15px #FF0000;
}


.profile{
  width:120px;
  height:120px;
  border-radius:50%;
  border:3px solid #FF0000;
  object-fit:cover;
}


.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.gallery img{
  width:100%;
  border-radius:8px;
  border:2px solid #FF0000;
}


footer{
  text-align:center;
  color:#aaa;
  padding:20px 0;
  border-top:1px solid #FF0000;
  margin-top:50px;
}

.contact{
  margin-top:120px;
  text-align:center;
  color:white;
}

.contact h2{
  margin-bottom:20px;
  font-size:28px;
  text-shadow:0 0 10px red;
}

.contact form{
  width:60%;
  margin:auto;
  padding:25px;
  border-radius:20px;

  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.45);
  border:1px solid rgba(255,0,0,0.5);
  box-shadow:0 0 25px rgba(255,0,0,0.4);
}

.contact input,
.contact textarea{
  width:100%;
  padding:12px;
  margin:8px 0;
  border-radius:10px;
  border:1px solid rgba(255,0,0,0.6);
  background:rgba(0,0,0,0.4);
  color:white;
}

.contact textarea{
  height:120px;
  resize:none;
}


.contact button{
  margin-top:10px;
  padding:10px 25px;
  border-radius:30px;
  border:1px solid rgba(255,0,0,0.7);
  background:rgba(255,0,0,0.4);
  color:white;
  font-weight:700;
  cursor:pointer;

  box-shadow:0 0 18px rgba(255,0,0,.9),
             inset 0 0 8px rgba(255,0,0,.5);
  transition:0.3s;
}

.contact button:hover{
  background:red;
}

.neon-photo-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.neon-photo {
    padding: 10px;
    border-radius: 25px;   
    border: 2px solid red;
    box-shadow: 0 0 15px red, 0 0 30px red, 0 0 60px red;
    animation: glow 2s infinite alternate;
}

.neon-photo img {
    width: 300px;
    height: auto;
    border-radius: 20px;   
}

.neon-photo img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px red, 0 0 20px red;
    }
    to {
        box-shadow: 0 0 20px red, 0 0 40px red, 0 0 80px red;
    }
}
.main-box{
    display: flex;
    align-items: center; 
    gap: 30px;         
}

.profil-foto{
    width: 260px;
    border-radius: 20px;
}

.yazi-alani{
    text-align: left;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Arial';
}

body{
    background:#020202;
    color:#fff;
}


.container{
    width:90%;
    max-width:1100px;
    margin:auto;
    padding-top:120px;
}


nav{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    background:#0a0a0a;
    border-bottom:2px solid #ff0037;
    z-index:99;
}

.nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:90%;
    max-width:1100px;
    margin:auto;
}

.logo{
    font-size:24px;
    font-weight:bold;
    color:#ff0037;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    padding:7px 15px;
    border:2px solid #ff0037;
    border-radius:30px;
    transition:0.3s;
}

nav ul li a:hover{
    background:#ff0037;
    box-shadow:0 0 25px #ff0037;
}

.hero-box{
    
    max-width: 1000px;   
    margin: 100px auto;  

  
  margin-top:150px;
    background:#0d0d0d;
    border:3px solid #ff0037;
    border-radius:25px;
    padding:25px;
    box-shadow:0 0 25px #ff0037;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}


.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:32px;
    color:#ff0037;
    margin-bottom:10px;
}

.hero-text p{
    font-size:16px;
}


.hero-img img{
    width:180px;
    height:250px;
    object-fit:center;
    border-radius:50%;
    border:4px solid #ff0037;
    box-shadow:0 0 25px #ff0037;
}

.chat-container{
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}


.chat-open-btn{
    padding: 12px 18px;
    background: rgb(255,0,0);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px red, inset 0 0 10px red;
    transition: 0.3s;
}

.chat-open-btn:hover{
    transform: scale(1.1);
}

.chat-box{
    width: 320px;
    height: 420px;
    background: rgba(0,0,0,0.85);
    border-radius: 15px;
    border: 2px solid red;
    box-shadow: 0 0 25px red;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-header{
    background: rgba(255,0,0,0.3);
    padding: 10px;
    text-align: center;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3{
    margin: 0;
}

.close-btn{
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.chat-messages{
    flex: 1;
    padding: 10px;
    color: white;
    overflow-y: auto;
}

.bot-msg{
    background: rgba(255,0,0,0.4);
    padding: 8px;
    width: fit-content;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 0 10px red;
}

.user-msg{
    background: rgba(255,255,255,0.2);
    padding: 8px;
    width: fit-content;
    border-radius: 8px;
    margin-bottom: 8px;
    margin-left: auto;
}

.quick-buttons{
    padding: 8px;
    text-align: center;
}

.quick{
    background: transparent;
    border: 1px solid red;
    color: white;
    padding: 5px 10px;
    margin: 3px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px red;
}

.quick:hover{
    background: rgba(255,0,0,0.5);
}

.chat-input-area{
    display: flex;
    padding: 8px;
    gap: 5px;
}

#userInput{
    flex: 1;
    padding: 6px;
    border-radius: 10px;
    border: none;
}

.send-btn{
    background: red;
    border: none;
    padding: 6px 12px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 10px red;
}