/* Основні налаштування стилю */
body {
    background-color: #000000; /* Глибокий чорний */
    color: #ffffff; /* Чистий білий */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-transform: uppercase; /* Adult Swim обожнює капс */
    letter-spacing: 1px;
}

/* Хедер у стилі AS */
.as-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #333;
}

.as-logo {
    font-size: 2rem;
    font-weight: 900;
}

.as-header nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.as-header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.as-header nav ul li a:hover {
    opacity: 0.6;
}

/* Секція BUMP (Текстова заставка) */
.as-bump {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.bump-text p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0;
    font-weight: bold;
}

/* Сітка з шоу */
.as-title {
    padding-left: 40px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-left: 10px solid #fff;
    margin-left: 40px;
}

.as-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 40px 60px 40px;
}

.as-card {
    background-color: #111;
    border: 1px solid #222;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.as-card:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
}

.as-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%); /* Робимо картинки ч/б для стилю */
    transition: filter 0.3s;
}

.as-card:hover img {
    filter: grayscale(0%); /* При наведенні стають кольоровими */
}

.as-card-info {
    padding: 15px;
    text-align: center;
}

.as-card-info h3 {
    margin: 0;
    font-size: 1rem;
}

/* Футер */
footer {
    padding: 40px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}











/* Додаємо ефект шуму на фон для атмосфери */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/7/76/1k_Grains_of_Salt_Noise_Texture.png');
    opacity: 0.03; /* Ледь помітний шум */
    pointer-events: none;
    z-index: 100;
}

/* Банер додатка */
.as-app-banner {
    background-color: #ffffff;
    color: #000000;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0;
    margin-top: 50px;
}

.app-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 40px;
}

.app-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.app-text p {
    font-size: 1.2rem;
    max-width: 450px;
    margin-bottom: 30px;
}

.btn-as {
    display: inline-block;
    border: 3px solid #000;
    padding: 15px 30px;
    text-decoration: none;
    color: #000;
    font-weight: 900;
    margin-right: 15px;
    transition: 0.2s;
}

.btn-as:hover {
    background: #000;
    color: #fff;
}

/* Стилізований телефон */
.phone-mockup {
    width: 200px;
    height: 400px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    border: 8px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.1);
}

/* Футер */
footer {
    padding: 60px 40px;
    color: #666;
    font-size: 0.75rem;
    line-height: 1.6;
    text-align: left;
    border-top: 1px solid #222;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}







/* Стилізований телефон */
.phone-mockup {
    width: 250px; /* Трохи збільшив, щоб було солідніше */
    height: 500px;
    background: #000;
    color: #fff;
    border-radius: 35px;
    border: 8px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden; /* Щоб картинка не вилазила за рамки */
}

/* Обмежуємо картинку всередині телефону */
.phone-mockup img {
    max-width: 80%; /* Картинка не буде ширшою за телефон */
    height: auto;   /* Пропорції збережуться, її не розтягне */
    object-fit: contain;
}








/* Блок спільноти в стилі AS */
.as-community {
    padding: 100px 40px;
    text-align: center;
    border-top: 1px solid #222;
    background-color: #000;
}

.community-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.community-content p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 40px;
}

/* Кнопка Telegram */
.as-tg-btn {
    display: inline-block;
    padding: 20px 50px;
    border: 4px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.as-tg-btn:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.05);
}