@font-face {
font-family: Estedad;
font-style: normal;
font-weight: normal;
src: url("../fonts/Estedad-Bold.woff2") format("woff2"), url("../fonts/Estedad-Bold.woff") format("woff"), url("../fonts/Estedad-Bold.ttf") format("truetype");
}

:root {
    --transition: all 0.4s ease;
    --fontfamily:Estedad;
}


body {
    background: linear-gradient(135deg, #1b3a32 0%, #2d5a4f 100%);
    min-height: 100vh;
    font-family: var(--fontfamily);
}
.download-card {
    background-color: #f3f3f3; /* surface */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}
.download-card:hover {
    transform: translateY(-10px);
}
.btn-download {
    background: linear-gradient(45deg, #eab265, #f4c585);
    border: none;
    padding: 15px 40px;
    font-size: 1.3rem;
    border-radius: 50px;
    color: #1b3a32 !important; /* onSurface برای متن دکمه */
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(234, 178, 101, 0.4);
}
.btn-download:hover {
    background: linear-gradient(45deg, #f4c585, #eab265);
    transform: scale(1.05);
    color: #1b3a32 !important;
}
.app-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 4px solid #eab265;
}
.warning-box {
    background: rgba(234, 178, 101, 0.15); /* secondary با opacity کم */
    border-right: 5px solid #eab265;
    color: #1b3a32;
}
.text-primary-custom {
    color: #eab265 !important;
}
.text-onsurface {
    color: #1b3a32 !important;
}
