@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* BASIC */
*{
    text-decoration: none;
}
.bold{
    font-weight: 600;
}
h1{
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
  font-family: Montserrat;
}
h3{
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: Montserrat;
    color: white;
    font-weight: 300;
}
body{
    cursor: crosshair;
    background:
    radial-gradient(circle at top, #481111, #140606 60%),
    repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.02) 2px,
        transparent 2px,
        transparent 40px
    );
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}
button a{
    color: white;
}
.button-primary, .button-secondary {
    margin-left: 0px;
    border-radius: 12px;
    padding: 16px 32px;
    min-width: 100px;
    font-family: Montserrat;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 130, 130, 0.25);
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}
.button-primary{
    background: linear-gradient(135deg, rgba(194, 54, 54, 0.5), rgba(200, 50, 50, 0.35));
}
.button-primary:hover{
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 18px rgba(255, 90, 90, 0.35);
    background: linear-gradient(135deg, rgba(226, 63, 63, 0.75), rgba(240, 80, 80, 0.55));
}
.button-secondary{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.button-secondary:hover{
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* NAVIGATION BAR */
.navbar{
    background: linear-gradient(135deg, rgba(180, 60, 60, 0.3), rgba(90, 20, 20, 0.3));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 4px 26px;
    margin: 14px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 25px rgba(255, 80, 80, 0.15);
    border: 1px solid rgba(255, 120, 120, 0.15);
}
.navdiv{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navlogo a{
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fc8484, #ed3a3a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 32px;
    text-decoration: none;
}
li{
    display: inline-block;
    list-style: none;
}
li a{
    color: rgba(255,255,255,0.9);
    margin-right: 26px;
    font-weight: 400;
    font-size: 17px;
    position: relative;
    transition: all 0.25s ease;
}
li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(135deg, #fc8484, #ed3a3a);
    transition: 0.25s;
}
li a:hover{
    color: #ffffff;
}
li a:hover::after{
    width: 100%;
}
.navbutton{
    margin-left: 12px;
    border-radius: 12px;
    padding: 10px 18px;
    min-width: 100px;
    background: linear-gradient(135deg, rgba(255, 80, 80, 0.5), rgba(200, 50, 50, 0.35));
    font-family: Montserrat;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 130, 130, 0.25);
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 0.25s ease;
}
.navbutton:hover{
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 18px rgba(255, 90, 90, 0.35);
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.75), rgba(240, 80, 80, 0.55));
}

/* HERO */
.hero{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px;
    background: transparent;
}
.hero-content{
    max-width: 600px;
    text-align: center;
}
.special-text{
    background: linear-gradient(135deg, #ff5252, #3b1313);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 0 6px rgba(255, 82, 82, 0.5),
        0 0 14px rgba(156, 49, 49, 0.5),
        0 0 28px rgba(156, 49, 49, 0.5);
}
.help-buttons{
    display: flex;
    gap: 18px;
    justify-content: center;
}
.hero-image{
    margin-left: 20px;
    position: relative;
}
.hero-image img{
    filter: drop-shadow(0 0 60px rgba(247, 85, 85, 0.35));
}

/* FOOTER */
.footer{
    margin-top: 160px;
    padding: 100px 20px 60px 20px;
    text-align: center;
    background: linear-gradient(
        180deg,
        rgb(20, 6, 6) 100%,
        rgb(20, 6, 6) 100%,
        rgba(20,6,6,0.85) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.footer-inner{
    max-width: 900px;
    margin: 0 auto;
    font-family: Montserrat;
}
.footer-logo{
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fc8484, #ed3a3a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-sub{
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin-bottom: 32px;
    font-weight: 300;
}
.footer-links{
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-links a{
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    position: relative;
    transition: 0.25s;
}
.footer-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(135deg, #fc8484, #ed3a3a);
    transition: 0.25s;
}
.footer-links a:hover{
    color: white;
}
.footer-links a:hover::after{
    width: 100%;
}
.footer-copy{
    color: rgba(255,255,255,0.35);
    font-size: 14px;
    font-weight: 300;
}

/* FEATURES */
.features{
    padding: 80px 60px;
    display: flex;
    justify-content: center;
    background: transparent;
}
.feature-cards{
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 2200px;
}
.feature-card{
    background: rgba(25, 7, 7, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 100, 100, 0.18);
    border-radius: 16px;
    padding: 40px 32px;
    width: 400px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}
.feature-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 80, 80, 0.25);
    border-color: rgba(255, 130, 130, 0.35);
}
.feature-icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(200, 50, 50, 0.4), rgba(150, 30, 30, 0.25));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #ff8080;
    border: 1px solid rgba(255, 130, 130, 0.3);
    box-shadow: 0 0 20px rgba(255, 90, 90, 0.25);
}
.feature-card h4{
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    background: linear-gradient(135deg, #ff8080, #e03a3a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feature-card p{
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    isolation: isolate;
    margin: 0;
}
@media (max-width: 900px){
    .feature-cards {
        flex-direction: column;
        align-items: center;
    }
    .feature-card {
        width: 90%;
        max-width: 380px;
    }
}