* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    cursor: none !important;
}

body {
    scroll-behavior: smooth;
    background-color: #1C1D22;
    color: white;
    overflow-x: hidden;
}

.inter-400 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.inter-700 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.inter-900 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

p {
    font-size: 1rem;
    font-family: "Inter";
    font-weight: 400;
}

h1 {
    font-size: 16rem;
    font-family: "Inter";
    font-weight: 900;
}

h2 {
    font-size: 6rem;
    font-family: "Inter";
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    font-family: "Inter";
    font-weight: 700;
    text-align: center;
}

h4 {
    font-size: 1.2rem;
    font-family: "Inter";
    font-weight: 700;
}

h5 {
    font-size: 12rem;
    font-family: "Inter";
    font-weight: 700;
    line-height: 60%;
}

h6 {
    font-size: 2rem;
    font-family: "Inter";
    font-weight: 700;
    line-height: 1.6rem;
}

/* NAVIGATION */
#nav-section {
    margin: 40px 60px 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation {
    display: flex;
    gap: 40px;
}

.navigation a {
    color: #DADBDA;
    text-decoration: none;
    font-family: "Inter";
    font-weight: 400;
    white-space: nowrap;
}

/* HEADER */
#header-section {
    height: 92vh;
    margin-left: 60px;
    margin-right: 60px;
    position: relative;
}

.titles {
    margin: 0 auto;
    width: fit-content;
    padding-top: 10em;
    padding-bottom: 10em;
    color: #DADBDA;
}

.tit1 {
    width: fit-content;
    margin-left: 28%;
    margin-bottom: -2rem;
    letter-spacing: .5rem;
    font-family: "Inter";
    font-weight: 400;
}

.tit2 {
    width: fit-content;
    margin-left: 50%;
    margin-top: -2rem;
    letter-spacing: .5rem;
    font-family: "Inter";
    font-weight: 400;
}

.links {
    position: absolute;
    bottom: 60px;
    left: 60px;
}

.links a {
    display: inline-block;
    margin-bottom: 15px;
}

/* NUMBERS */
#our-numbers {
    background-color: #DEDEDE;
    color: #000;
    padding-top: 150px;
    padding-bottom: 150px;
}

.numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 90vw;
    margin: 0 auto;
    margin-top: 200px;
}

.number {
    flex: 1;
    min-width: 200px;
}

.number h4 {
    padding-top: 40px;
}

/* WTF */
#wtf {
    background-color: #DEDEDE;
    color: #000;
}

.wtftitle {
    max-width: 85vw;
    margin: 0 auto;
    padding-bottom: 150px;
}

/* CARDS */
#photos-section {
    color: white;
    padding-top: 150px;
    padding-bottom: 150px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 150px;
}

.photo-card {
    overflow: hidden;
}

.photo-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.photo-container h6 {
    position: absolute;
    bottom: -4px;
    font-size: 1.5rem;
    line-height: .8;
    z-index: 2;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.photo-container img {
    filter: grayscale(100%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.photo-card:hover .photo-container img {
    filter: grayscale(0%);
}

.photo-name {
    padding: 15px;
    text-align: right;
    font-weight: bold;
    font-family: "Inter";
}

.footer {
    background-color: #1C1D22;
    color: rgba(255, 255, 255, .2);
    text-align: center;
    padding-bottom: 40px;
}

.footer p {
    font-size: .8rem;
}


/* ADAPTATION */

@media (max-width: 1024px) {
    h1 {
        font-size: 12rem;
    }
    
    h2 {
        font-size: 4.5rem;
    }
    
    h5 {
        font-size: 9rem;
    }
    
    .photos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .titles {
        padding-top: 8em;
        padding-bottom: 8em;
    }
    
    .tit1, .tit2 {
        letter-spacing: 0.3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 8rem;
    }
    
    h2 {
        font-size: 3.5rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    h5 {
        font-size: 6rem;
    }
    
    h6 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    #nav-section {
        margin: 30px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .navigation {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
    }
    
    .navigation a {
        padding-left: 0;
        font-size: 0.9rem;
    }
    
    #header-section {
        margin-left: 30px;
        margin-right: 30px;
        height: auto;
        min-height: 80vh;
    }
    
    .titles {
        padding-top: 5em;
        padding-bottom: 5em;
        width: 100%;
        text-align: center;
    }
    
    .tit1 {
        margin-left: 0;
        margin-bottom: -1.5rem;
        width: 100%;
        letter-spacing: 0.2rem;
        font-size: 0.9rem;
    }
    
    .tit2 {
        margin-left: 0;
        margin-top: -1.5rem;
        width: 100%;
        letter-spacing: 0.2rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .links {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 50px;
        text-align: center;
    }
    
    .numbers {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 100px;
        gap: 40px 20px;
    }
    
    .number {
        min-width: 140px;
    }
    
    .number h4 {
        padding-top: 20px;
        font-size: 1rem;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-top: 80px;
        gap: 15px;
    }
    
    .photo-container {
        height: 180px;
    }

    #our-numbers,
    #photos-section,
    #wtf {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .wtftitle {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 5rem;
        line-height: 1;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    h5 {
        font-size: 3.5rem;
        line-height: 70%;
    }
    
    h6 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    #nav-section {
        margin: 20px;
    }
    
    .navigation {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    #header-section {
        margin-left: 20px;
        margin-right: 20px;
        min-height: 70vh;
    }
    
    .titles {
        padding-top: 3em;
        padding-bottom: 3em;
    }
    
    .tit1, .tit2 {
        letter-spacing: 0.1rem;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .tit1 {
        margin-bottom: 0;
    }
    
    .tit2 {
        margin-top: 0;
    }
    
    .numbers {
        grid-template-columns: 1fr;
        margin-top: 60px;
        gap: 30px;
    }
    
    .number {
        text-align: center;
        min-width: 100%;
    }
    
    .number h2 {
        font-size: 3rem;
    }
    
    .number h4 {
        padding-top: 15px;
        font-size: 0.9rem;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        padding-top: 50px;
        gap: 20px;
    }
    
    .photo-container {
        height: 250px;
    }
    
    .photo-container h6 {
        font-size: 1.3rem;
        bottom: 15px;
        left: 15px;
    }
    
    .photo-name {
        text-align: left;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .wtftitle p {
        padding-top: 50px;
        line-height: 1.5;
    }
    
    #our-numbers,
    #photos-section,
    #wtf {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .wtftitle {
        padding-bottom: 60px;
    }
    
    .footer p {
        font-size: 0.7rem;
        padding: 0 15px;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h5 {
        font-size: 2.8rem;
    }
    
    .photo-container {
        height: 200px;
    }
    
    .photos-grid {
        gap: 15px;
    }
}





/* Cursor via dipsik */
.cursor-outer {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border: 2px solid white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    
    /* Основной эффект инверсии */
    backdrop-filter: invert(1) hue-rotate(180deg);
    -webkit-backdrop-filter: invert(1) hue-rotate(180deg);
    
    /* Дополнительные эффекты для усиления */
    background-color: rgba(255, 255, 255, 0.1);
    mix-blend-mode: difference;
    
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1);
}

.cursor-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    backdrop-filter: invert(1);
    -webkit-backdrop-filter: invert(1);
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    opacity: 0;
    filter: drop-shadow(0 0 3px white);
}