html{
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: black;
    background-image: 
        radial-gradient(circle at center, rgba(139, 0, 0, 0.25) 0%, transparent 80%), /* Got the idea of this exact line by AI */
        linear-gradient(rgba(255, 0, 0, 0.2) 2px, transparent  2px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.2) 2px, transparent 2px);
    background-size: 100% 100%, 57px 57px, 57px 57px;
    background-attachment: fixed;
}

.site-header {
    position: fixed;    
    top: 0;                    
    width: 65%;    
    min-width: 820px;
    z-index: 1000;
    padding: 20px 240px;
    display: flex;
    align-items: center;
    justify-content: space-between; /*Got the idea of this exact line by AI*/
    backdrop-filter: blur(10px);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px; 
}

.logo-img {
    width: 80px;
    height: 80px;
    border: 2px solid #ff0000;
    border-radius: 50%;  
    box-shadow: 0 0 10px #ff0000;
}

.brand-text{
    display:flex;
    flex-direction: column;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Got the idea of this exact line by AI*/
    font-weight: 900;
    line-height: 1;   
    letter-spacing: 1px
}

.brand-text span {
    color: #ff4d4d;  
    font-size: 20px;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.8), 
                 0 0 15px rgba(255, 0, 0, 0.4);
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffffd4;
    font-family: 'JetBrains Mono', 'Fira Code', monospace; /* Got the idea of this exact line by AI*/
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #ff4d4d;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7), 
                 0 0 20px rgba(255, 0, 0, 0.4);
}

.about-container {
    padding: 60px 240px;
    min-height: 80vh;
    justify-content: center;
    align-items: center;
}

.about-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.4);
    border: 2px solid #ff4d4d;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 
        inset 0 0 15px rgba(255, 0, 0, 0.5);
    max-width: 1100px;
    min-width: 820px;
    margin: 0 auto;
}

.about-title{
    color: white;
    font-size: 50px;
    font-weight: 750;
    text-transform: uppercase;
    line-height: 1.1;
    margin:0;
}

.about-title span {
    color: #ff4d4d;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.about-text{
    flex: 1;
    text-align: left;
    min-width: 450px;
}

.about-image{
    flex:1;
    display: flex;
    justify-content: flex-end;
}

.reaper-img{
    height: 450px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.8))
            drop-shadow(0 0 30px rgba(255, 0, 0, 0.3));
    transform: translateY(-20px);
    transition: transform 0.5s ease;
} 

.reaper-img:hover {
    transform: rotate(0deg) scale(1.05);
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.9));
}

.about-description {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 20px;
    margin-top: 15px;
    max-width: 500px; 
}

.stats-container {
    padding: 40px 240px;
    min-height: 80vh;
    justify-content: center;
    align-items: center;
}

.stats-title{
    color: #ff4d4d;  
    font-size: 37px;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.8), 
                 0 0 15px rgba(255, 0, 0, 0.4);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 4px;
    font-family: 'Courier New', Courier, monospace;
}

.stats-card{
    display: flex;
    justify-content: space-between;
    color: rgb(255, 255, 255);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: rgba(10, 10, 10, 0.4);
    max-width: 1100px;
    min-width: 820px;
    margin: 0 auto;
}

.stats-description{
    flex: 0.8;
    text-align: left;
    font-size: 22px;
    padding: 20px;
}

.html-stats{
    text-align: center;
    border: 1.5px solid #ff4d4d;
    border-radius: 10px;
    background: rgb(67, 55, 55, 0.7);
    background-image: linear-gradient(0deg, rgba(255, 0, 0, 0.8) 0px, rgba(255, 0, 0, 0.5) 120px, rgba(255, 0, 0, 0.2) 130px, transparent 132px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    height:500px;
    width:80px;
    transition: transform 0.5s ease;
}

.html-stats:hover {
    transform: translateY(-10px) scale(1.05);
}

.html{
    margin-top: 510px;
}

.css-stats{
    text-align: center;
    border: 1.5px solid #ff4d4d;
    border-radius: 10px;
    background: rgb(67, 55, 55, 0.7);
    background-image: linear-gradient(0deg, rgba(255, 0, 0, 0.8) 0px, rgba(255, 0, 0, 0.5) 170px, rgba(255, 0, 0, 0.2) 180px, transparent 182px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    height:500px;
    width:80px;
    transition: transform 0.5s ease;
}

.css-stats:hover {
    transform: translateY(-10px) scale(1.05);
}

.css{
    margin-top: 510px;
}

.java-stats{
    text-align: center;
    border: 1.5px solid #ff4d4d;
    border-radius: 10px;
    background: rgb(67, 55, 55, 0.7);
    background-image: linear-gradient(0deg, rgba(255, 0, 0, 0.8) 0px, rgba(255, 0, 0, 0.5) 70px, rgba(255, 0, 0, 0.2) 80px, transparent 82px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    height:500px;
    width:80px;
    transition: transform 0.5s ease;
}

.java-stats:hover {
    transform: translateY(-10px) scale(1.05);
}

.java{
    margin-top: 510px;
}

.python-stats{
    text-align: center;
    border: 1.5px solid #ff4d4d;
    border-radius: 10px;
    background: rgb(67, 55, 55, 0.7);
    background-image: linear-gradient(0deg, rgba(255, 0, 0, 0.8) 0px, rgba(255, 0, 0, 0.5) 140px, rgba(255, 0, 0, 0.2) 150px, transparent 152px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    height:500px;
    width:80px;
    transition: transform 0.5s ease;
}

.python-stats:hover {
    transform: translateY(-10px) scale(1.05);
}

.python{
    margin-top: 510px;
}

.projects-container {
    padding: 100px 10%;
    text-align: center;
}

.projects-title{
    color: #ff4d4d;  
    font-size: 37px;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.8), 
                 0 0 15px rgba(255, 0, 0, 0.4);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 4px;
    font-family: 'Courier New', Courier, monospace; /* Got the idea of this exact line by AI*/
}

.project-grid { /* Got the concept that how to make a grid layout by AI */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px; 
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: radial-gradient(circle at center, rgba(60, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(157, 151, 151, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: left;
    transition: 0.4s
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff4d4d;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.proj-title {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 20px;
}

.tech-stack {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.tag {
    font-size: 11px;
    font-weight: bold;
    color: #ff4d4d;
    border: 1px solid #ff4d4d;
    padding: 5px 12px;
    border-radius: 5px;
    background: rgba(255, 0, 0, 0.05);
}

.examine-btn {
    color: #ff4d4d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: 0.3s;
}

.examine-btn:hover {
    color: white;
    text-shadow: 0 0 10px #ff4d4d;
}

.contact-container{
    padding: 60px 240px;
    justify-content: center;
    align-items: center;
}

.contact-title{
    color: #ff4d4d;  
    font-size: 37px;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.8), 
                 0 0 15px rgba(255, 0, 0, 0.4);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 4px;
    font-family: 'Courier New', Courier, monospace;
}

.contact-card{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.contact1-icon, .contact2-icon, .contact3-icon{
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.8));
    transition: 0.3s
}

.contact1-icon:hover, .contact2-icon:hover, .contact3-icon:hover {
    filter: drop-shadow(0 0 40px rgba(255, 0, 0, 0.9));
    transform: scale(1.1);
    cursor: pointer;
}