@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}

html{
    font-size: 62.5%;
}

body{
    width: 100%;
    overflow-x: hidden;
    background-color: black;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

header{
    margin-top: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    background-color: transparent;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 2.4rem;
    color: #b74b4b;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
}

.logo:hover{
    transform: scale(1.1);
}

nav a{
    font-size: 2.2rem;
    color: white;
    margin-left: 4rem;
    font-weight: 600;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
    font-family: 'Inter', sans-serif;
}

nav a:hover,
nav a.active{
    color: #b74b4b;
    border-bottom: 3px solid #b74b4b;
}

@media(max-width:995px){
    nav{
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        width: 40%;
        border-left: 3px solid #b74b4b;
        border-bottom: 3px solid #b74b4b;
        border-bottom-left-radius: 2rem;
        padding: 1rem solid;
        background-color: #161616;
        border-top: 0.1rem solid rgba(0,0,0,0.1);
    }

    nav.active{
        display: block;
    }

    nav a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    nav a:hover,
    nav a.active{
        padding: 1rem;
        border-radius: 0.5rem;
        border-bottom: 0.5rem solid #b74b4b;
    }
}

section{
    min-height: auto;
    padding: 6rem 9%;
    background-color: black;
}

.home{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background-color: black;
}

.home .home-content h1{
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

span{
    color: #b74b4b;
}

.home-content h3{
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.home-content p{
    font-size: 1.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #ccc;
}

.home-img{
    border-radius: 50%;
}

.home-img img{
    position: relative;
    width: 32vw;
    border-radius: 50%;
    box-shadow: 0 0 25px solid #b74b4b;
    cursor: pointer;
    transition: 0.2s linear;
}

.home-img img:hover{
    font-size: 1.8rem;
    font-weight: 500;
}

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #b74b4b;
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: #b74b4b;
}

.social-icons a:hover{
    color: black;
    transform: scale(1.3) translateY(-5px);
    background-color: #b74b4b;
    box-shadow: 0  0 25px #b74b4b;
}

.btn{
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 1.4rem;
    color: #b74b4b;
    letter-spacing: 0.05em;
    font-weight: 700;
    border: 2px solid #b74b4b;
    transition: 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn:hover{
    transform: scale3d(1.03);
    background-color: #b74b4b;
    color: black;
    box-shadow: 0 0 25px #b74b4b;
}

.typing-text{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}

.typing-text span{
    position: relative;
}

.typing-text span::before{
    content: "software Developer";
    color: #b74b4b;
    animation: words 20s infinite;
}

.typing-text span::after{
    content: "";
    background-color: black;
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 3px solid black;
    right: -8;
    animation: cursor 0.6s infinite;
}

@keyframes cursor{
    to{
        border-left: 3px solid #b74b4b;
    }
}

@keyframes words{
    0%, 20%{
        content: "Web3 Content Creator";
    }
    21%, 40%{
        content: "Moderator";
    }
    41%, 60%{
        content: "Web3 Ambassador";
    }
    61%, 80%{
        content: "Gamer";
    }
    81%, 100%{
        content: "Developer";
    }
}

@media (max-width: 1000px){
    .home{
        gap: 4rem;
    }
}

@media(max-width:995px){
    .home{
        flex-direction: column;
        margin: 5rem 4rem;
    }

    .home .home-content h3{
        font-size: 2.5rem;
    }

    .home-content h1{
        font-size: 5rem;
    }

    .home-img img{
        width: 70vw;
        margin-top: 4rem;
    }
}





.section-title{
    font-size: 5.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.section-title span{
    color: #b74b4b;
}

.skills-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-card{
    background: #1a1a1a;
    border: 2px solid #b74b4b;
    border-radius: 0.8rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.skill-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(183, 75, 75, 0.3);
    border-color: #ff6b6b;
}

.skill-icon{
    font-size: 3.5rem;
    color: #b74b4b;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon{
    transform: scale(1.2) rotate(5deg);
    color: #ff6b6b;
}

.skill-header{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    width: 100%;
}

.skill-header h3{
    font-size: 2rem;
    color: white;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.skill-desc{
    font-size: 1.2rem;
    color: #aaa;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
    margin: 0;
}

.skill-list{
    list-style: none;
}

.skill-list li{
    font-size: 1.4rem;
    color: #bbb;
    margin-bottom: 1.1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.skill-list li:before{
    content: "•";
    position: absolute;
    left: 0;
    color: #b74b4b;
    font-weight: bold;
    font-size: 1.5rem;
}

.skill-list li:hover{
    color: #b74b4b;
    padding-left: 2.2rem;
}

@media(max-width: 995px){
    .section-title{
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }

    .skills-grid{
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skill-card{
        padding: 1.8rem;
    }

    .skill-header h3{
        font-size: 1.6rem;
    }

    .skill-list li{
        font-size: 1.2rem;
    }
}

/* Skills Section */
.skills{
    background-color: black;
    padding: 6rem 9%;
}

.skills h2{
    font-size: 5rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    letter-spacing: -0.02em;
}

.skills h2 span{
    color: #b74b4b;
}

/* Experience Section */
.experience{
    background-color: black;
    padding: 6rem 9%;
}

.experience h2{
    font-size: 5rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    letter-spacing: -0.02em;
}

.experience h2 span{
    color: #b74b4b;
}

.experience-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem 1.5rem;
    max-width: 100%;
    margin: 0 auto 3.5rem;
}

.exp-card{
    background: transparent;
    border: none;
    border-radius: 0.8rem;
    padding: 1rem 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
}

.exp-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(183, 75, 75, 0.25);
    background: rgba(26, 26, 26, 0.8);
    border-radius: 1rem;
}

.exp-header{
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.exp-logo-link{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.exp-logo-link:hover{
    transform: scale(1.1);
}

.exp-logo{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #b74b4b;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exp-logo:hover{
    border-color: #ff6b6b;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(183, 75, 75, 0.4);
}

.exp-header h3{
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    margin-bottom: 0.2rem;
}

.exp-list{
    list-style: none;
}

.exp-list li{
    font-size: 1.4rem;
    color: #bbb;
    margin-bottom: 1.1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.exp-list li:before{
    content: "•";
    position: absolute;
    left: 0;
    color: #b74b4b;
    font-weight: bold;
    font-size: 1.5rem;
}

.exp-list li:hover{
    color: #b74b4b;
    padding-left: 2.2rem;
}

.exp-category{
    font-size: 2.3rem;
    font-weight: 700;
    color: #b74b4b;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    padding-bottom: 1rem;
    border-bottom: 2px solid #b74b4b;
}

.exp-category:first-of-type{
    margin-top: 0;
}

.exp-role{
    font-size: 0.95rem;
    color: #999;
    font-weight: 500;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

@media(max-width: 995px){
    .experience-grid{
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .exp-card{
        padding: 1.8rem;
    }

    .exp-header h3{
        font-size: 1.6rem;
    }

    .exp-list li{
        font-size: 1.2rem;
    }
}

/* NEW DESIGN - Hero & Landing Page */
.hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
    min-height: 90vh;
    padding: 10rem 9% 5rem;
}

.hero-content{
    flex: 1;
    font-size: 2.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content h1{
    font-size: 7rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.03em;
}

.hero-content h1 span{
    color: #b74b4b;
}

.hero-content > p{
    font-size: 10px;
    color: #aaa;
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.tagline{
    color: #999 !important;
}

.role-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.pill{
    display: inline-block;
    padding: 0.55rem 1.2rem;
    background: rgba(183, 75, 75, 0.1);
    border: 1px solid #b74b4b;
    color: #e9a6a6;
    border-radius: 999px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}

.pill:hover{
    background: rgba(183, 75, 75, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.cta-btn{
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #b74b4b;
    color: white;
    border-radius: 0.6rem;
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    text-decoration: none;
    line-height: 1.5;
}

.cta-btn:hover{
    background: #d65959;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 75, 75, 0.4);
}

.hero-image{
    flex: 1;
    text-align: center;
}

.hero-image img{
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(183, 75, 75, 0.3);
}

/* About Section */
.about{
    background-color: black;
    padding: 6rem 9%;
}

.about h2{
    font-size: 5rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.about p{
    font-size: 1.6rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 1.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Background Section */
.background{
    background-color: black;
    padding: 6rem 9%;
}

.background h2{
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.background-container{
    display: flex;
    gap: 4rem;
    align-items: center;
}

.background-image{
    flex: 1;
}

.background-image img{
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.background-list{
    flex: 1;
}

.background-list ul{
    list-style: none;
}

.background-list li{
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.background-list li:before{
    content: "✓";
    position: absolute;
    left: 0;
    color: #b74b4b;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Quick Navigation */
.quick-nav{
    background-color: black;
    padding: 6rem 9%;
    text-align: center;
}

.quick-nav h2{
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.quick-nav-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-card{
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 0.8rem;
    border: 2px solid #b74b4b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(183, 75, 75, 0.3);
    background: #232323;
}

.nav-card h3{
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.nav-card p{
    font-size: 1.1rem;
    color: #ccc;
    font-family: 'Inter', sans-serif;
}\n\n/* Contact Section */
.contact{
    background-color: black;
    padding: 3rem 9%;
    text-align: center;
}

.contact h2{
    font-size: 5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.02em;
    text-align: center;
}

.contact > p{
    font-size: 2rem;
    color: #e5e5e5;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}

.contact-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.contact-card{
    background: #121212;
    border: 1px solid #7f2f2f;
    border-radius: 0.6rem;
    padding: 1.2rem 1rem;
    text-decoration: none;
    color: #e5e5e5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    cursor: pointer;
    min-height: 120px;
}

.contact-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(183, 75, 75, 0.2);
    border-color: #a34f4f;
    background: rgba(183, 75, 75, 0.08);
}

.contact-icon-large{
    font-size: 2rem;
    color: #d07f7f;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-large{
    transform: scale(1.2);
    color: #ff6b6b;
}

.contact-card h3{
    font-size: 1.2rem;
    color: #f5f5f5;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.contact-card p{
    font-size: 1rem;
    color: #b8b8b8;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.contact-methods h3{
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.contact-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #ccc;
    transition: all 0.3s ease;
}

.contact-item:hover{
    color: #b74b4b;
    transform: translateY(-5px);
}

.contact-icon{
    font-size: 2.2rem;
    color: #b74b4b;
}

.contact-type{
    font-size: 1.3rem;
    color: #999;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.contact-value{
    font-size: 1.6rem;
    color: #bbb;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.social-icons{
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(183, 75, 75, 0.1);
    border: 2px solid #b74b4b;
    font-size: 1.8rem;
    border-radius: 50%;
    transition: 0.3s ease;
    color: #b74b4b;
    text-decoration: none;
}

.social-icons a:hover{
    color: white;
    transform: scale(1.2) translateY(-5px);
    background-color: #b74b4b;
    box-shadow: 0 8px 20px rgba(183, 75, 75, 0.4);
}

/* Partnerships Section */
.partnerships{
    background-color: black;
    padding: 6rem 9%;
}

.partnerships h2{
    font-size: 5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.partnerships > p{
    font-size: 1.8rem;
    text-align: center;
    color: #ccc;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.partnerships-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partnership-card{
    background: #1a1a1a;
    border: 2px solid #b74b4b;
    border-radius: 0.8rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.partnership-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(183, 75, 75, 0.3);
}

.partnership-card h3{
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.partnership-card .role{
    font-size: 0.95rem;
    color: #b74b4b;
    margin-bottom: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.partner-code{
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.code-label{
    font-size: 0.9rem;
    color: #999;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.code-value{
    font-size: 1.1rem;
    color: #b74b4b;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
}

/* Projects Section */
.projects{
    background-color: black;
    padding: 6rem 9%;
}

.projects h2{
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.projects-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.project-card{
    background: #1a1a1a;
    border: 2px solid #b74b4b;
    border-radius: 0.8rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.project-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(183, 75, 75, 0.3);
}

.project-image{
    font-size: 3rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card h3{
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.project-card .role{
    font-size: 0.95rem;
    color: #b74b4b;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* Community Section */
.community{
    background-color: black;
    padding: 6rem 9%;
}

.community h2{
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.community-content{
    max-width: 700px;
    margin: 0 auto;
    background: #1a1a1a;
    border: 2px solid #b74b4b;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
}

.community-info h3{
    font-size: 1.8rem;
    color: #b74b4b;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.community-info p{
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.community-link{
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    background: #b74b4b;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.community-link:hover{
    background: #d65959;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(183, 75, 75, 0.4);
}

/* Disclaimer Section */
.disclaimer{
    background-color: black;
    padding: 4rem 9%;
    text-align: center;
    border-top: 1px solid #b74b4b;
}

.disclaimer h3{
    font-size: 1.4rem;
    color: #b74b4b;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.disclaimer p{
    font-size: 1rem;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer{
    background-color: #0a0a0a;
    padding: 5rem 9%;
    text-align: center;
    border-top: 1px solid #333;
    color: #999;
    font-size: 1.3rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

footer p{
    margin-bottom: 1.2rem;
    font-weight: 400;
}

footer a{
    color: #b74b4b;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
    font-size: 1.4rem;
}

footer a:hover{
    color: #d65959;
}

/* Responsive */
@media(max-width: 995px){
    .hero{
        flex-direction: column;
        gap: 3rem;
        padding: 8rem 4rem 5rem;
    }

    .hero-content h1{
        font-size: 3.5rem;
    }

    .hero-image img{
        max-width: 300px;
    }

    .role-pills{
        justify-content: center;
    }

    .about{
        padding: 4rem 4rem;
    }

    .quick-nav{
        padding: 4rem 4rem;
    }

    .contact{
        padding: 4rem 4rem;
    }
}


