* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
}

header {
    position: fixed;
    width: 100%;
    padding: 20px 8%;
    background: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #111;
    z-index: 9999;
}

.logo {
    color: red;
    font-weight: bold;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    position: relative;
    z-index: 10000;
}

nav a:hover {
    color: #00ff66;
}

section {
    padding: 140px 8% 80px 8%;
}

.hero {
    text-align: center;
    padding-top: 160px;
    opacity: 1;
    transform: none;
}

.hero h1 {
    font-size: 64px;
    color: red;
}

h2 {
    margin-bottom: 30px;
    color: #00ff66;
}

.platform-grid {
    display: flex;
    gap: 40px;
}

.platform {
    display: flex;
    flex-direction: column; /*Текст вниз*/
    align-items: center; /*по центру*/
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.platform img {
    width: 40px;
    margin-bottom: 10px;
}

.platform:hover {
    transform: scale(1.1);
    color: red;
}

.release img {
    max-width: 100%;
    border-radius: 12px;
}

.main-release img {
    width: 300px;
    max-width: 100%;
    border-radius: 12px
}

.main-release {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

footer {
    text-align: center;
    padding: 40px;
    background: #111;
    margin-top: 80px;
}
.socials a {
    display: inline-block;
    margin-right: 20px;
    color: red;
    text-decoration: none;
    transition: 0.3s;
}

.socials a:hover {
    color: #00ff66;
}
