        html {
            scroll-behavior: smooth;
        }
          
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0a0a1a;
            color: #ffffff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .main-page {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            text-align: center;
        }

        .main-page::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1587831990711-23ca6441447b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -1;
        }

        .main-page::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to bottom, transparent, #0a0a1a);
            z-index: -1;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 10, 26, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff4081;
            text-shadow: 0 0 10px rgba(255, 64, 129, 0.7);
            user-select: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.6s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .nav-links a:hover {
            background-color: #ff4081;
            color: #0a0a1a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
        }

        .nav-auth {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .auth-btn {
            padding: 0.6rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.6s ease;
            text-decoration: none;
            text-align: center;
            white-space: nowrap;
        }

        .login-btn {
            background: transparent;
            color: #ffffff;
            border: 2px solid #00bcd4;
        }

        .login-btn:hover {
            background: rgba(0, 188, 212, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
        }

        .register-btn {
            background: linear-gradient(45deg, #ff4081, #e91e63);
            color: white;
            border: 2px solid transparent;
        }

        .register-btn:hover {
            background: linear-gradient(45deg, #e91e63, #ff4081);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
        }

        .hero-content {
            max-width: 800px;
            margin-top: 4rem;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ff4081, #00bcd4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 15px rgba(255, 64, 129, 0.5);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #e0e0e0;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            margin: 0.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.6s ease;
            text-decoration: none;
            text-align: center;
        }
             .btn-primary {
            background: linear-gradient(45deg, #ff4081, #e91e63);
            color: white;
            box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 64, 129, 0.6);
            background: linear-gradient(45deg, #e91e63, #ff4081);
        }

        .btn-secondary {
            background: linear-gradient(45deg, #00bcd4, #03a9f4);
            color: white;
            box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
        }

        .btn-secondary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 188, 212, 0.6);
            background: linear-gradient(45deg, #03a9f4, #00bcd4);
        }

        .registration-section {
            padding: 5rem 2rem;
            background-color: #12122a;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .registration-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            width: 100%;
            max-width: 500px;
        }

        .form-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #ff4081;
            font-size: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #e0e0e0;
        }

        .form-group input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: all 0.6s ease;
        }

        .form-group input:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 2px #ff4081;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(45deg, #ff4081, #e91e63);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.6s ease;
            box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
        }

        .submit-btn:hover {
            background: linear-gradient(45deg, #e91e63, #ff4081);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 64, 129, 0.6);
        }

        .figures-section {
            padding: 5rem 2rem;
            background-color: #0a0a1a;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: #00bcd4;
            text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
        }

        .figures-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .figure-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.6s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            text-align: center;
        }
        .figure-card:hover {
            /* transform: translateY(-10px); */
            box-shadow: 0 15px 30px rgba(255, 64, 129, 0.3);
        }

        .figure-img {
            /* width: 100%; */
            height: 330px;
            object-fit: cover;
            margin-top: 2rem;
        }

        .figure-info {
            padding: 1.5rem;
        }

        .figure-name {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #ff4081;
            user-select: none;
        }

        .figure-price {
            font-size: 1.1rem;
            color: #00bcd4;
            margin-bottom: 1rem;
            user-select: none;
        }

        footer {
            background-color: #0a0a1a;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: #e0e0e0;
            margin: 0 1rem;
            text-decoration: none;
            transition: color 0.6s ease;
        }

        .footer-links a:hover {
            color: #ff4081;
        }

        .copyright {
            color: #888;
            font-size: 0.9rem;
            user-select: none;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .figures-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }