/* Підключення варіацій шрифту College */
@font-face {
    font-family: 'College Regular';
    src: url('college.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'College Regular';
    src: url('collegeb.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Скидання стилів */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Сучасний темно-синій фон */
body {
    font-family: 'College Regular', sans-serif;
    background-color: #070a13;
    background-image: 
        radial-gradient(at 50% 0%, #0d1b3e 0px, transparent 75%),
        radial-gradient(at 100% 100%, #050d24 0px, transparent 50%);
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    position: relative;
}

/* Розмиті неонові плями на фоні */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.blob-1 {
    width: 320px;
    height: 320px;
    background: #1a4998;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: #0077ff;
    bottom: 15%;
    right: 10%;
}

/* Напівпрозора технологічна сітка */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

/* Контейнер картки */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    min-height: 100vh;
    padding: 60px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Логотип без рамки */
.logo-wrapper {
    width: 100%;
    max-width: 360px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    width: 150%;
    height: auto;
    object-fit: contain;
    border: none;
    outline: none;
    box-shadow: none;
    filter: drop-shadow(0 0 15px rgba(0, 119, 255, 0.2));
}

/* Нікнейм */
.username {
    font-family: 'College Regular', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 0 12px rgba(0, 140, 255, 0.5);
    letter-spacing: 1.5px;
}

/* Соціальні мережі */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}

.social-icon {
    position: relative;
    color: #e2e8f0;
    font-size: 22px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    transition: all 0.6s ease;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-4px);
    color: #ffffff;
    background: rgba(30, 58, 138, 0.7);
    border-color: rgba(0, 140, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 119, 255, 0.4);
}

/* Кнопка "Button" */
.action-btn {
    position: relative;
    width: 100%;
    max-width: 280px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #0052d4, #4364f7, #6fb1fc);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 82, 212, 0.4);
    letter-spacing: 0.5px;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 119, 255, 0.6);
}

@media (min-width: 768px) {
    .container {
        padding: 80px 24px;
    }
    .logo-wrapper {
        max-width: 240px;
    }
}
.patreon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    /* Робить чорне зображення білим під колір інших іконок */
    filter: brightness(0) invert(1);
}