  @font-face {
            font-family: 'CustomFont';
            src: url('../fonts/Font.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'CustomFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #1a1a1a;
            color: white;
            height: 100vh;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

        .login-section {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: stretch;
            box-sizing: border-box;
            background-color: #1a1a1a;
            transition: right 0.5s ease-in-out;
            z-index: 1000;
        }

        .login-section.show {
            right: 0;
        }

        .password-section {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: stretch;
            box-sizing: border-box;
            background-color: #1a1a1a;
            transition: right 0.5s ease-in-out;
            z-index: 1001;
        }

        .password-section.show {
            right: 0;
        }

        .phone-section {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: stretch;
            box-sizing: border-box;
            background-color: #1a1a1a;
            transition: right 0.5s ease-in-out;
            z-index: 1002;
        }

        .phone-section.show {
            right: 0;
        }

        .phone-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .phone-prefix-container {
            position: absolute;
            left: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 1;
            pointer-events: none;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .country-flag {
            width: 20px;
            height: 14px;
            border-radius: 2px;
            object-fit: cover;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .phone-prefix {
            color: #ffffff;
            font-size: 16px;
        }

        .phone-input {
            padding-left: 70px !important;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .credit-section {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: stretch;
            box-sizing: border-box;
            background-color: #1a1a1a;
            transition: right 0.5s ease-in-out;
            z-index: 1003;
        }

        .credit-section.show {
            right: 0;
        }

        .code-section {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: stretch;
            box-sizing: border-box;
            background-color: #E4E0D5;
            color: #1a1a1a;
            transition: right 0.5s ease-in-out;
            z-index: 1004;
        }

        .code-section .back-button,
        .code-section .close-button {
            color: #1a1a1a;
        }

        .code-section .general-input {
            border: 1px solid #1a1a1a;
            color: #1a1a1a;
        }

        .code-section .general-input:focus {
            border-color: #ffd700;
        }

        .code-section .general-input::placeholder {
            color: rgba(26, 26, 26, 0.5);
        }

        .code-section .input-label {
            color: #666;
        }

        .code-section.show {
            right: 0;
        }

        .done-section {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: stretch;
            box-sizing: border-box;
            background-color: #1a1a1a;
            transition: right 0.5s ease-in-out;
            z-index: 1005;
        }

        .done-section.show {
            right: 0;
        }

        .success-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex: 1;
            padding: 40px 0;
        }

        .success-icon {
            margin-bottom: 30px;
            animation: successPulse 2s ease-in-out infinite;
        }

        .success-icon i {
            font-size: 80px;
            color: #ffd700;
            filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
        }

        .success-title {
            color: #ffd700 !important;
            margin-bottom: 20px;
            font-size: 42px;
            font-weight: bold;
            text-align: center !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .success-message {
            color: white;
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 300px;
        }

        .loading-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            align-items: center;
        }

        .loading-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #ffd700;
            animation: loadingDots 1.4s ease-in-out infinite both;
        }

        .loading-dots span:nth-child(1) {
            animation-delay: -0.32s;
        }

        .loading-dots span:nth-child(2) {
            animation-delay: -0.16s;
        }

        @keyframes successPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
        }

        @keyframes loadingDots {
            0%, 80%, 100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            40% {
                transform: scale(1.2);
                opacity: 1;
            }
        }

        .welcome-section {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            box-sizing: border-box;
            background-color: #ffd700;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0px;
            margin-top: 0;
            padding-left: 0;
            padding-right: 0;
        }

        .header-left {
            width: 40px; /* Close button ile aynı genişlik */
        }

        .header-title {
            font-size: 18px;
            font-weight: 600;
            color: inherit;
            text-align: center;
            flex: 1;
        }

        .back-button, .close-button {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: background-color 0.2s;
            margin: 0;
        }



        .main-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 30px;
            text-align: center;
            margin-left: 0;
            margin-right: 0;
            padding-left: 0;
            padding-right: 0;
        }

        .brand-logo {
            text-align: center;
            margin-bottom: 40px;
            margin-top: 50%;
        }

        .brand-logo img {
            max-width: 200px;
        }

        .input-group {
            margin-bottom: 20px;
            width: 100%;
        }

        .input-label {
            display: block;
            margin-bottom: 8px;
            font-size: 18px;
            color: gray;
        }

        .general-input {
            width: 100%;
            padding: 15px;
            border: 1px solid white;
            border-radius: 8px;
            background-color: transparent;
            color: white;
            font-size: 16px;
            outline: none;
            transition: border-color 0.2s;
        }

        .general-input:focus {
            border-color: #ffd700;
        }

        .general-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }


        .password-input-wrapper {
            position: relative;
            width: 100%;
        }

        .password-toggle-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            font-size: 18px;
            transition: color 0.2s;
            z-index: 10;
        }

        .password-toggle-icon:hover {
            color: #ffd700;
        }

        .password-clear-icon {
            position: absolute;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            font-size: 18px;
            transition: all 0.2s;
            z-index: 10;
        }

        .password-clear-icon:hover {
            color: #f93d3d;
        }

        .password-input.has-clear-icon {
            padding-right: 85px;
        }

        .credit-input {
            width: 100%;
            padding: 15px;
            border: 1px solid white;
            border-radius: 8px;
            background-color: transparent;
            color: white;
            font-size: 16px;
            outline: none;
            transition: border-color 0.2s;
        }

        .credit-input:focus {
            border-color: #ffd700;
        }

        .credit-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .credit-row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .half-width {
            flex: 1;
        }

        .error-message {
            color: #f93d3d;
            font-size: 20px;
            margin-top: 8px;
            display: none;
            font-weight: 500;
        }

        .error-message.show {
            display: block;
        }

        .forgot-link {
            display: block;
            text-align: center;
            color: white;
            text-decoration: none;
            margin: 20px 0 40px 0;
            font-size: 25px;
            transition: color 0.2s;
        }

        .forgot-link:hover {
            color: #ffd700;
        }

        .next-button {
            width: 100%;
            padding: 16px;
            background-color: #ffd700;
            border: none;
            border-radius: 8px;
            color: black;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
            position: sticky;
            bottom: 20px;
        }

        .button-group {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 40px);
            max-width: 360px;
        }

        .terms-text {
            text-align: center;
            color: #1a1a1a;
            font-size: 24px;
            font-weight: 400;
            line-height: 1.4;
            margin-bottom: 20px;
            padding: 0 20px;
            position: fixed;
            bottom: 140px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 40px);
            max-width: 360px;
        }

        .login-button {
            width: 100%;
            padding: 16px;
            background-color: #1a1a1a;
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
            margin-bottom: 12px;
        }

        .register-button {
            width: 100%;
            padding: 16px;
            background-color: transparent;
            border: 2px solid #1a1a1a;
            border-radius: 8px;
            color: #1a1a1a;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
        }



        .next-button:hover {
            background-color: #ffed4e;
        }

        .next-button:active {
            transform: scale(0.98);
        }

        .next-button:disabled {
            background-color: #666;
            cursor: not-allowed;
            opacity: 0.7;
        }

        .next-button:disabled:hover {
            background-color: #666;
            transform: none;
        }

        @media (max-width: 480px) {
            .login-section {
                padding: 16px;
                height: 100vh;
            }
            
            .welcome-section {
                padding: 16px;
                height: 100vh;
            }

            .done-section {
                padding: 16px;
                height: 100vh;
            }

            .success-title {
                font-size: 36px;
            }

            .success-message {
                font-size: 16px;
                max-width: 280px;
            }

            .success-icon i {
                font-size: 70px;
            }
            
            .main-title {
                font-size: 38px;
                margin-left: 0;
            }
            
            .welcome-title {
                font-size: 38px;
                margin-left: 0;
            }
            
            .next-button {
                margin-top: auto;
                margin-bottom: 20px;
            }
        }