<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            overflow-x: hidden;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-top: 70px;
            color: white;
        }

        
        /* Бегущая строка */
        .ticker-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 70px;
            background: rgba(0, 0, 0, 0.92);
            border-bottom: 3px solid rgba(147, 112, 219, 0.5);
            overflow: hidden;
            z-index: 1000;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ticker-message {
            position: absolute;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(100%);
            transition: all 0.6s ease;
        }
        
        .ticker-message.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ticker-message.exiting {
            opacity: 0;
            transform: translateY(-100%);
        }
        
        .ticker-line1 {
            font-weight: bold;
            font-size: 2.6rem;
            letter-spacing: 2px;
            margin-bottom: 5px;
            white-space: nowrap;
            text-align: center;
            animation: pulse-text 4s infinite alternate;
        }
        
        .ticker-line2 {
            font-size: 2.0rem;
            letter-spacing: 1px;
            color: #a0a0ff;
            white-space: nowrap;
            text-align: center;
        }
        
        .ticker-link {
            color: #00ffff;
            text-decoration: none;
            margin-left: 10px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
        }
        
        .ticker-link:hover {
            color: #ff69b4;
            text-shadow: 0 0 15px rgba(255, 105, 180, 0.9);
        }
        
        .ticker-icon {
            margin-right: 15px;
            font-size: 2.0rem;
            vertical-align: middle;
        }
        
        @keyframes pulse-text {
            0% { 
                color: #00ffaa; 
                text-shadow: 0 0 15px #00ffaa, 0 0 30px #00ffaa;
            }
            50% { 
                color: #c792ea; 
                text-shadow: 0 0 20px #c792ea, 0 0 40px #c792ea;
            }
            100% { 
                color: #00ffaa; 
                text-shadow: 0 0 15px #00ffaa, 0 0 30px #00ffaa;
            }
        }
        
        /* Шапка сайта */
        header {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: rgba(22, 33, 62, 0.95);
            z-index: 999;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(255, 105, 180, 0.2);
        }
        
        nav {
            display: flex;
            gap: 20px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.12);
        }
        
        nav a:hover {
            background: rgba(255, 105, 180, 0.2);
        }
        
        .nav-icon {
            margin-right: 8px;
            font-size: 1.1rem;
        }
        
        /* Блок пользователя */
        .user-info {
            display: flex;
            align-items: center;
        }
        
        .user-dropdown {
            position: relative;
        }
        
        .username {
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 8px 12px;
            border-radius: 5px;
            background: rgba(255, 105, 180, 0.2);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.12);
        }
        
        .user-role {
            margin-left: 5px;
            font-size: 0.9rem;
            color: #a0a0ff;
        }
        
        .dropdown-content {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(22, 33, 62, 0.95);
            min-width: 200px;
            border-radius: 5px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
            overflow: hidden;
            display: none;
            z-index: 1000;
            margin-top: 5px;
        }
        
        .dropdown-content a {
            color: white;
            padding: 12px 15px;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .dropdown-content a:hover {
            background: rgba(255, 105, 180, 0.3);
            padding-left: 20px;
        }
        
        .user-dropdown:hover .dropdown-content {
            display: block;
        }
        
        .auth-links {
            display: flex;
            gap: 15px;
        }
        
        .login-btn, .register-btn {
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .login-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .register-btn {
            background: linear-gradient(45deg, #ff69b4, #d74177);
            box-shadow: 0 4px 15px rgba(215, 65, 119, 0.3);
        }
        
        .login-btn:hover, .register-btn:hover {
            transform: translateY(-3px);
        }
        
        /* Мобильное меню */
        .mobile-menu-toggle {
            display: none;
            background: rgba(255, 105, 180, 0.2);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 5px;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }
        
        .mobile-menu-container {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: rgba(22, 33, 62, 0.98);
            z-index: 998;
            transform: translateY(-100%);
            transition: transform 0.4s ease;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            max-height: calc(100vh - 70px);
            overflow-y: auto;
        }
        
        .mobile-menu-container.active {
            transform: translateY(0);
        }
        
        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 15px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.12);
        }
        
        .mobile-nav a:hover {
            background: rgba(255, 105, 180, 0.3);
        }
        
        .mobile-user-section {
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            margin-top: 20px;
        }
        
        .mobile-user-info {
            color: white;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .mobile-auth-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .mobile-auth-links a {
            display: block;
            text-align: center;
            padding: 14px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
        }
        
        .mobile-login {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .mobile-register {
            background: linear-gradient(45deg, #ff69b4, #d74177);
            color: white;
        }
        
        /* Основной контент */
        .hero-container {
            position: relative;
            width: 95%;
            max-width: 1200px;
            min-height: 80vh;
            background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(147, 112, 219, 0.15));
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            text-align: center;
            border: 2px solid rgba(255, 255, 255, 0.15);
            margin-top: 20px;
            margin-bottom: 40px;
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
        }
        
        h1 {
            font-size: 5.0rem;
            color: #ffffff;
            margin-bottom: 25px;
            text-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: -1.5px;
        }
        
        .highlight {
            color: #ff69b4;
            position: relative;
            display: inline-block;
        }
        
        .highlight::after {
            content: "";
            position: absolute;
            bottom: 12px;
            left: 0;
            width: 100%;
            height: 15px;
            background: rgba(255, 105, 180, 0.35);
            z-index: -1;
            border-radius: 5px;
        }
        
        p {
            font-size: 1.8rem;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 45px;
            line-height: 1.7;
            max-width: 800px;
        }
        
        .cta-button {
            background: linear-gradient(45deg, #ff69b4, #d74177);
            color: white;
            border: none;
            padding: 22px 55px;
            font-size: 1.8rem;
            border-radius: 60px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 700;
            letter-spacing: 2px;
            box-shadow: 0 8px 25px rgba(215, 65, 119, 0.5);
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }
        
        .cta-button:hover {
            transform: translateY(-7px);
            box-shadow: 0 12px 30px rgba(215, 65, 119, 0.7);
        }
        
        .cta-button:active {
            transform: translateY(0);
        }
        
        .cta-button::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.6s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        /* Псевдографика */
        .pseudo-art {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.6;
        }
        
        .heart-container {
            position: absolute;
            font-size: 3.0rem;
            color: #ff69b4;
            animation: float 18s infinite ease-in-out;
            text-shadow: 0 0 20px rgba(255, 105, 180, 0.7);
        }
        
        .heart-container:nth-child(1) {
            top: 10%;
            left: 12%;
            animation-delay: 0s;
            font-size: 3.8rem;
        }
        
        .heart-container:nth-child(2) {
            top: 25%;
            left: 80%;
            animation-delay: -3s;
        }
        
        .heart-container:nth-child(3) {
            top: 65%;
            left: 8%;
            animation-delay: -6s;
            font-size: 2.5rem;
        }
        
        .heart-container:nth-child(4) {
            top: 45%;
            left: 88%;
            animation-delay: -9s;
            font-size: 3.5rem;
        }
        
        .heart-container:nth-child(5) {
            top: 80%;
            left: 75%;
            animation-delay: -12s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0) rotate(0deg);
            }
            25% {
                transform: translateY(-40px) translateX(25px) rotate(8deg);
            }
            50% {
                transform: translateY(25px) translateX(-35px) rotate(-8deg);
            }
            75% {
                transform: translateY(-25px) translateX(-25px) rotate(5deg);
            }
        }
        
        /* ASCII арт сердца */
        .ascii-heart {
            position: absolute;
            color: rgba(255, 105, 180, 0.7);
            font-family: monospace;
            font-size: 20px;
            line-height: 1;
            white-space: pre;
            opacity: 0.7;
            animation: pulse-heart 5s infinite alternate;
            text-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
        }
        
        .ascii-heart:nth-child(1) {
            top: 18%;
            right: 8%;
        }
        
        .ascii-heart:nth-child(2) {
            bottom: 22%;
            left: 6%;
        }
        
        @keyframes pulse-heart {
            0% {
                opacity: 0.4;
                transform: scale(0.95);
            }
            100% {
                opacity: 0.85;
                transform: scale(1.1);
            }
        }
        
        /* Анимация фона */
        .bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 105, 180, 0.2);
            animation: rise 20s infinite linear;
            box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
        }
        
        @keyframes rise {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            20% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-150px) scale(1.2);
                opacity: 0;
            }
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .ticker-line1 {
                font-size: 2.2rem;
            }
            
            .ticker-line2 {
                font-size: 1.7rem;
            }
            
            h1 {
                font-size: 4.0rem;
            }
            
            nav {
                gap: 15px;
            }
            
            nav a {
                font-size: 1rem;
                padding: 7px 10px;
            }
            
            .login-btn, .register-btn {
                padding: 7px 15px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 768px) {
            .ticker-container {
                height: 60px;
            }
            
            .ticker-line1 {
                font-size: 1.8rem;
            }
            
            .ticker-line2 {
                font-size: 1.4rem;
            }
            
            h1 {
                font-size: 3.0rem;
            }
            
            p {
                font-size: 1.4rem;
            }
            
            .cta-button {
                padding: 18px 45px;
                font-size: 1.5rem;
            }
            
            header {
                padding: 12px 4%;
                justify-content: flex-end;
            }
            
            nav, .user-info {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero-container {
                padding: 30px 15px;
            }
            
            .ascii-heart {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            body {
                padding-top: 60px;
            }
            
            .ticker-container {
                height: 60px;
            }
            
            header {
                top: 60px;
                padding: 10px 3%;
            }
            
            .mobile-menu-container {
                top: 60px;
                padding: 15px;
            }
            
            .hero-container {
                height: auto;
                min-height: 75vh;
                padding: 20px 10px;
                margin-top: 15px;
                margin-bottom: 20px;
            }
            
            h1 {
                font-size: 2.4rem;
            }
            
            .highlight::after {
                height: 10px;
                bottom: 6px;
            }
            
            p {
                font-size: 1.1rem;
                padding: 0 10px;
                margin-bottom: 30px;
            }
            
            .cta-button {
                padding: 15px 35px;
                font-size: 1.2rem;
            }
            
            .heart-container {
                font-size: 2.0rem;
            }
            
            .heart-container:nth-child(1) {
                font-size: 2.5rem;
            }
            
            .ticker-line1 {
                font-size: 1.5rem;
                margin-bottom: 2px;
            }
            
            .ticker-line2 {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 400px) {
            .ticker-line1 {
                font-size: 1.2rem;
            }
            
            .ticker-line2 {
                font-size: 1.0rem;
            }
            
            h1 {
                font-size: 2.0rem;
            }
            
            .mobile-nav a {
                padding: 12px;
                font-size: 0.95rem;
            }
            
            .mobile-user-section {
                padding: 15px;
            }
        }

        /* Стили для новых элементов */
        .auth-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .auth-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            font-size: 1.1em;
            position: relative;
            overflow: hidden;
        }
        
        .auth-btn a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            z-index: 2;
        }
        
        .login-btn {
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            border: 2px solid #6a11cb;
        }
        
        .register-btn {
            background: linear-gradient(45deg, #f857a6, #ff5858);
            border: 2px solid #f857a6;
        }
        
        .main-cta {
            background: linear-gradient(45deg, #ff2a71, #ff5e3a);
            padding: 18px 40px;
            font-size: 1.3em;
            border: 2px solid #ff2a71;
        }
        
        .auth-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        
        /* Анимация пульсации для кнопки Входа */
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(106, 17, 203, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(106, 17, 203, 0);
            }
        }
        
        /* Анимация сияния для кнопки Регистрации */
        .shine {
            position: relative;
            overflow: hidden;
        }
        
        .shine::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.2);
            transform: rotate(45deg);
            animation: shine 3s infinite;
            z-index: 1;
        }
        
        @keyframes shine {
            0% {
                left: -100%;
            }
            20% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }
        
        /* Анимация сердцебиения для главной кнопки */
        .heartbeat {
            animation: heartbeat 1.5s infinite;
        }
        
        @keyframes heartbeat {
            0% {
                transform: scale(1);
            }
            5% {
                transform: scale(1.1);
            }
            10% {
                transform: scale(1);
            }
            15% {
                transform: scale(1.1);
            }
            20% {
                transform: scale(1);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .categories-section {
            margin-top: 40px;
            text-align: center;
        }
        
        .categories-section h2 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .category-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .auth-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .auth-btn {
                width: 220px;
            }
            
            .category-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 250px;
            }
        }
</style>