body
{
    margin:0;

    background:
    linear-gradient(
        180deg,
        #1a120d,
        #0d0907
    );

    color:#f3d7a2;

    font-family:
    Georgia,
    serif;
}

/* HEADER */

.header
{
    padding:40px;

    text-align:center;

    border-bottom:
    2px solid
    #8f6b2f;

    background:
    linear-gradient(
        180deg,
        #2c1d14,
        #1a120d
    );
}

.logo
{
    font-size:58px;

    color:#ffd27a;

    letter-spacing:6px;

    text-shadow:
    0 0 20px
    rgba(255,190,90,0.4);
}

.sub
{
    margin-top:10px;

    color:#c8a66b;

    font-size:22px;
}

/* CATALOG */

.catalog
{
    width:1200px;

    margin:auto;

    padding:40px;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

/* CARD */

.card
{
    text-decoration:none;

    background:
    linear-gradient(
        180deg,
        #2a1b13,
        #1a120d
    );

    border:
    2px solid
    #7a5827;

    border-radius:18px;

    padding:30px;

    transition:0.2s;
}

.card:hover
{
    transform:translateY(-5px);

    border-color:#d8a84f;

    box-shadow:
    0 0 25px
    rgba(255,180,70,0.3);
}

.title
{
    font-size:34px;

    color:#ffd27a;

    margin-bottom:20px;
}

.desc
{
    font-size:18px;

    color:#ceb185;

    line-height:1.5;
}

/* APP PAGE */

.app-page
{
    width:1100px;

    margin:auto;

    padding:50px;
}

.big-title
{
    font-size:72px;

    color:#ffd27a;

    margin-bottom:20px;
}

.version
{
    font-size:22px;

    color:#d0a96b;

    margin-bottom:30px;
}

.description
{
    font-size:24px;

    line-height:1.7;

    color:#f0d2a1;
}

/* SCREENSHOTS */

.screens
{
    margin-top:40px;

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.screen
{
    width:480px;

    border:
    2px solid
    #8f6b2f;

    border-radius:12px;
}

/* DOWNLOAD BUTTON */

.download
{
    display:inline-block;

    margin-top:50px;

    padding:
    20px 40px;

    background:
    linear-gradient(
        180deg,
        #d7a142,
        #8f6320
    );

    color:#fff;

    text-decoration:none;

    font-size:28px;

    border-radius:14px;

    box-shadow:
    0 0 25px
    rgba(255,180,60,0.4);
}

.download:hover
{
    filter:brightness(1.1);
}