:root {
    --color-primary: #FFA100;
    --color-secondary: #A859104D;
    --color-text: #FFFFFF;
    --color-text-muted: #CCCCCC;
    --color-bg: #050505;
    --color-card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
    --font-Inter: 'Inter', sans-serif;
    --font-main: 'Archivo', sans-serif;
    --font-accent: 'Noto Sans Inscriptional Pahlavi', sans-serif;
    --font-pinstripe: 'Alumni Sans Pinstripe', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 0;
}

.pahlavi-font {
    font-family: var(--font-accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    width: 100%;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--color-card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

/* Buttons */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-primary {
    text-decoration: none;
    background: #5c3109;
    color: #fff;
    box-shadow: 4px 4px 10px 0px #FFFFFF3D;
    width: 166;
    height: 43;
    border-radius: 16px;
    gap: 10px;
    padding: 10px 53px;
    border: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: #4A2503;
    box-shadow: 4px 4px 10px 0px #FFFFFF3D;
}

.btn-sq {
    color: #fff;
    background: #552E0833;
    border-radius: 10px;
    padding-top: 14px;
    padding-right: 16px;
    padding-bottom: 14px;
    padding-left: 16px;
    gap: 10px;
    border: 1px solid #765206;
}

.btn-sq:hover {
    background: #8B4513;
    color: #fff;
    box-shadow: 0 0 15px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
     background: var(--color-secondary);
     color: #fff;
     box-shadow: 0 0 15px rgba(168, 89, 16, 0.3);
}



.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--color-primary);
}

/* Footer */
footer {
    width: 100%;
    height: 290px;
    text-align: center;
    padding: 30px;
    background-color: #321b05;
    border-radius: 40px 40px 0 0;
    display: flex;
    flex-direction: column;
}

.footer-logo{
    width: 294px;
    height: 36px;
}

.footer-logo img{
    width: 100%;
    height: 100%;
}



.footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
}

.footer-links a{
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 19%;
    text-decoration: none;
    color: var(--color-text);
}
.footer-links a:hover{
    color: var(--color-primary);
}

.footer-btn{
    background-color: #552E0833;
    font-weight: 400;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 19%;
    text-align: center;
    padding: 14px 143px;
    border: 1px solid #765206;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-btn:hover{
    background-color: #281300;
    border-color: #321f01;
}

.footer_top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: top;
    margin-bottom: 100px;
}

.footer-bottom{
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.footer-bottom p{
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 19%;
    text-align: center;
    margin-left: 50px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }


.finishcard{
    background-color: #141414;
    padding: 20px;
    border-radius: 16px;
    font-size: 14px;
    max-width: 715px;
    margin: 0 auto;
}

.finish_top{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 64px 0;
    margin-bottom: 55px;
}


.finish_top_text h2{
    font-size: 64px;
    font-weight: 400;
    text-align: center;
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    margin-top: 22px;
    margin-bottom: 12px;
    font-size: 64px;
    line-height: 88px;
    letter-spacing: .2em !important;
    text-align: center;
}


.finish_top_text p{
    margin-top: 0;
    text-align: center;
}

.finish_grey{
    background-color: #272727;
    border-radius: 10px;
    display: flex;
    flex: 1;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 70px;
}

.stat{
    display: flex;
    justify-content: space-between;
    margin-bottom: 34px;
}

.stat:last-child{
    margin-bottom: 0;
}

.finish_orange{
    background-color: #402913;
    border-radius: 16px;
    display: flex;
    flex: 1;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 70px;
}

.finish_orange h3{
    font-size: 16px;
    font-weight: 400;
}

.finish_orange ul{
    padding-left: 14px;
}
.finish_orange_li{
    margin-bottom: 32px;
}
.finish_orange_li:last-child{
    margin-bottom: 0;
}


.finish_bottom p{
    text-align: center;
    font-size: 16px;
}

.finish_bottom_a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 16px;
    margin-bottom: 22px;
    background-color: #663b13;
    border-radius: 16px;
    box-shadow: 4px 4px 10px 0px #FFFFFF3D;

}

.finish_bottom_a img{
    width: 15px;
    height: 23px;
}