@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            height: 100%;
            background: #000;
            color: #fff;
            overflow: hidden;
            cursor: none;
        }

        .container {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
        }

        /* Particles Canvas */
        #particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* Main Content */
        .content {
            position: relative;
            z-index: 10;
            text-align: center;
            transform: translateY(-20px);
            opacity: 0;
            animation: fadeInUp 2s ease forwards;
            animation-delay: 1s;
        }

        .logo-content{
            display: flex;
            align-items: center;
            gap: 50px;
        }

        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Logo */
        .logo-content h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 100;
            letter-spacing: 8px;
            margin-bottom: 2rem;
            position: relative;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }

        .logo-content img {
            width: 70px;
            height: 100px;
            object-fit: contain;
       }

        .logo-icon::before,
        .logo-icon::after {
            content: '';
            position: absolute;
            background: #fff;
            border-radius: 2px;
        }

        .logo-icon::before {
            width: 20px;
            height: 2px;
            transform: translateY(-4px);
        }

        .logo-icon::after {
            width: 20px;
            height: 2px;
            transform: translateY(4px);
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: #fff;
            animation: expandLine 2s ease forwards;
            animation-delay: 2s;
        }

        @keyframes expandLine {
            to {
                width: 100px;
            }
        }

        /* Subtitle */
        .subtitle {
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            font-weight: 600;
            letter-spacing: 3px;
            opacity: 0.7;
            text-transform: uppercase;
            animation: fadeIn 1s ease forwards;
            animation-delay: 3s;
            opacity: 0;
        }

        @keyframes fadeIn {
            to {
                opacity: 0.7;
            }
        }

        /* Geometric shapes */
        .geo-shape {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .geo-shape.circle {
            border-radius: 50%;
        }

        .geo-shape:nth-child(1) {
            width: 150px;
            height: 150px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .geo-shape:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 70%;
            right: 15%;
            animation-delay: 2s;
        }

        .geo-shape:nth-child(3) {
            width: 120px;
            height: 120px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.1;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 0.3;
            }
        }

        /* Minimal loading indicator */
        .loading {
            position: absolute;
            bottom: 15%;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            opacity: 0;
            animation: fadeIn 1s ease forwards;
            animation-delay: 4s;
        }

        .loading-dot {
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

        .loading-dot:nth-child(2) {
            animation-delay: 0.3s;
        }

        .loading-dot:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.2);
            }
        }

        /* Corner elements */
        .corner-element {
            position: absolute;
            width: 2px;
            height: 40px;
            background: #fff;
            opacity: 0.3;
        }

        .corner-element::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: #fff;
            top: 0;
            left: 0;
        }

        .corner-element.top-left {
            top: 30px;
            left: 30px;
        }

        .corner-element.top-right {
            top: 30px;
            right: 30px;
            transform: rotate(90deg);
        }

        .corner-element.bottom-left {
            bottom: 30px;
            left: 30px;
            transform: rotate(-90deg);
        }

        .corner-element.bottom-right {
            bottom: 30px;
            right: 30px;
            transform: rotate(180deg);
        }

        /* Hover effects */
        .content:hover .logo {
            transform: scale(1.02);
            transition: transform 0.3s ease;
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .corner-element {
                display: none;
            }
            
            .geo-shape {
                display: none;
            }

            body {
                cursor: auto;
            }

            .logo-content{
                flex-direction: column;
            }

            .cursor {
                display: none;
            }
        }

        @media (hover: none) {
            body {
                cursor: auto;
            }

            .cursor {
                display: none;
            }
        }