@font-face {
  font-family: 'ConsolasWeb';
  src: url('/fonts/Consolas.woff2') format('woff2'),
       url('/fonts/Consolas.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
	font-family: 'ConsolasWeb', Consolas, monospace;
	gap: 10%;
	
}

/* Base text hover effect */
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
li,
td,
th,
label,
input::placeholder,
textarea::placeholder {
    transition: color 0.3s ease, transform 0.2s ease, text-shadow 0.3s ease;
}

/* Text hover effect with enhanced shadow */
p:hover,
h1:hover,
h2:hover,
h3:hover,
h4:hover,
h5:hover,
h6:hover,
span:hover,
li:not(nav li):hover,
td:hover,
th:hover,
label:hover {
    color: #4CAF50 !important;
    text-shadow:
        0 0 10px #4caf5080,
        0 0 20px #4caf504d,
        0 0 30px #4caf501a;
    transform: translateX(2px);
}

/* Special hover for navigation items with enhanced shadow */
nav a:hover,
.ul1 li a:hover {
    color: #4CAF50 !important;
    text-shadow:
        0 0 15px #4caf50b3,
        0 0 25px #4caf5066,
        0 0 35px #4caf5033;
    transform: translateY(-2px);
}

/* Button hover effect */
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #00000033;
}

/* Card/container hover effect */
.card:hover,
.service-item:hover,
.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px #00000033;
}

/* Image hover effect */
img:not(.logo):hover {
    transform: scale(1.02);
    filter: brightness(1.05);
    box-shadow: 0 8px 16px #00000033;
}

/* Form elements hover */
input:not([type="submit"]):hover,
textarea:hover,
select:hover {
    border-color: #4CAF50 !important;
    box-shadow: 0 0 0 2px #4caf5033;
}

body {
    background-color: black;
    color: white;
	font-family: 'ConsolasWeb', Consolas, monospace;
}

html {
    scroll-behavior: smooth;
}

.basicDiv {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
	font-family: 'consolas';
}

.header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    gap: 100px;
    background: #0000001a;
    backdrop-filter: blur(20px);
    position: fixed;
    border-bottom: 1px solid #ffffff1a;
    box-shadow: 0 2px 8px #4444444d;
    box-sizing: border-box;
    padding: 5px 50px;
    margin: 0;
	font-family: 'ConsolasWeb', Consolas, monospace;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
	font-family: 'ConsolasWeb', Consolas, monospace;
}

.logo-container2 {
	width: 100%;
    display: flex;
	justify-content: center;
    align-items: center;
    gap: 1px;
	margin-right: 30%;
    margin-bottom: 50px;
	font-family: 'ConsolasWeb', Consolas, monospace;
}

.logo2 {
    font-size: 20px;
    color: white;
	font-family: 'ConsolasWeb', Consolas, monospace;
}

.logo3 {
    width: 70px;
    height: 43%;
    border-radius: 3px;
    margin-top: 3px;
    font-weight: 300;
    font-size: 18px;
	font-family: 'ConsolasWeb', Consolas, monospace;
}

.ul1 {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
    margin-right: 200px;
    color: white;
    font-size: 14px;
}


@media (max-width: 1113px) {
    .header {
        gap: 60px;
        padding: 5px 20px;
    }

    .ul1 {
        gap: 20px;
        font-size: 12px;
        margin-right: 7 0px;
    }

    .li1 {
        font-size: 12px;
    }

    .logo-container {
        gap: 5px;
		
    }

    .logo2 {
        font-size: 12px;
        color: white;
    }

    .logo3 {
        width: 50px;
        height: 32%;
        border-radius: 3px;
        margin-top: 3px;
        font-weight: 300;
        font-size: 18px;
    }
}

@media (max-width: 832px) {
    .header {
        height: 50px;
        gap: 10px;
        padding: 5px 15px;
    }

    .ul1 {
        gap: 15px;
        margin-right: 70px;
    }

    .li1 {
        font-size: 10px;
    }

    .logo2 {
        font-size: 9px;
        margin-top: 2px;
    }

    .logo3 {
        width: 35px;
        height: 35%;
        border-radius: 3px;
        margin-top: 3px;
        font-weight: 300;
        font-size: 18px;
    }
}

@media (max-width: 590px) {
    .header {
        height: 40px;
        gap: 6px;
        padding: 5px 10px;
    }

    .ul1 {
        gap: 10px;
        margin-right: 20px;
    }

    .li1 {
        font-size: 8px;
    }

    .logo2 {
        font-size: 7px;
        margin-top: 2px;
    }

    .logo3 {
        width: 28px;
        height: 30%;
        border-radius: 2px;
        margin-top: 3px;
        font-weight: 300;
        font-size: 18px;
    }
}

.hero {
    width: 100%;
    height: 750px;
    border: 3px solid black;
    background: linear-gradient(#00000080, #00000080), url('../hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 100px 100px 100px;
}

@media (max-width: 1113px) {
    .hero {
        height: 650px;
    }
}

@media (max-width: 887px) {
    .hero {
        height: 550px;
    }
}

@media (max-width: 590px) {
    .hero {
        height: 450px;
    }
	.ul1 {
        padding: 0;
    }
}

@media (max-width: 428px) {
    .hero {
        height: 350px;
		padding: 40px;
    }
	.d2 {
    position: relative;
	bottom: 40px;
}	
	.ul1{
	gap: 7px;
	position: relative;
		top: 2px;
	}
}

.d1 {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    gap: 10px;

}

.d2 {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: left;
	text-align: left;
    color: white;
    padding: 20px;
}

.video-container {
    width: 100%;
    height: 750px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    justify-content: start;
    padding: 20px 20px 20px 20px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
    box-shadow: 0 4px 16px #fdfcfc4d;
}

.p1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 5%;
    text-transform: lowercase;
}

.p2 {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
}

.text-div {
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    gap: 1%;
}

.logo11 {
    width: 25%;
	margin-left: 1%;
}

.logo22 {
    font-size: 40px;
}

.logo33 {
    width: 20%;
    position: relative;
	top: 2px;
	left: 4px;
    border-radius: 5px;
	margin: 5px;
}

.P11 {
    font-size: 24px;
    font-weight: 300;
    margin-right: 10%;
}

.P11 {
    font-size: 24px;
}

.h11 {
    margin-top: 80px;
    margin-right: 20%;
    font-size: 24px;
}


@media (max-width: 1113px) {
    .video-container {
        height: 650px;
    }

    .logo22 {
        font-size: 30px;
    }

    .p1 {
        font-size: 32px;
    }

    .p2 {
        font-size: 15px;
    }

}

@media (max-width: 832px) {
    .video-container {
        height: 550px;
    }

    .P11 {
        font-size: 20px;
    }

    .p1 {
        font-size: 24px;
    }

    .p2 {
        font-size: 12px;
    }

    .logo22 {
        font-size: 25px;
    }

    .logo33 {
        border-radius: 3px;
    }

    .h11 {
        font-size: 20px;
    }

    .p11 {
        font-size: 16px;
    }

}

@media (max-width: 590px) {
    .video-container {
        height: 450px;
    }

    .logo22 {
        font-size: 20px;
    }

    .P11 {
        font-size: 16px;
    }

    .p1 {
        font-size: 16px;
    }

    .p2 {
        font-size: 8px;
    }

    .logo33 {
        border-radius: 2px;
    }

}

@media (max-width: 480px) {
	.text-div {
    width: 60%;
	font-size:8px;
	}
	.logo33 {
	left: -2px;
	top: 0px;
    }
	 .h11 {
        font-size: 18px;
    }
    .video-container {
        height: 350px;
    }

    .logo22 {
        font-size: 15px;
    }
    .P11 {
        font-size: 12px;
    }

    .p1 {
        font-size: 12px;
    }

    .p2 {
        font-size: 6px;
    }
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    overflow-x: clip;
	font-family: 'ConsolasWeb', Consolas, monospace;
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, #FFA726, #FF9800);
    opacity: 0.08;
    border-radius: 20px;
    animation: float 12s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 220px;
    height: 220px;
    top: 8%;
    right: 3%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 160px;
    height: 160px;
    bottom: 15%;
    right: 8%;
    animation-delay: 4s;
}

.shape:nth-child(3) {
    width: 120px;
    height: 120px;
    top: 55%;
    right: 12%;
    animation-delay: 8s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-35px) rotate(12deg);
    }
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    min-height: 80vh;
}

.text-section {
    z-index: 2;
}

.logo {
    animation: slideInLeft 1s ease-out;
}

.main-content .logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.logo-icon {
    border-radius: 50%;
    margin-right: 20px;
}

.logo-text {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
}

.description {
    font-size: 30px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 50px;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.subtitle {
    font-size: 24px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffa7260d;
    border-radius: 25px;
    border: 1px solid #ffa7261a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFA726, #FF9800);
}

.step-item:hover {
    transform: translateY(-8px);
    background: #ffa7261a;
    border-color: #ffa7264d;
    box-shadow: 0 15px 40px #ffa72633;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFA726, #FF9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    animation: stepFloat 4s ease-in-out infinite;
}

.step-item:nth-child(2) .step-icon {
    animation-delay: 1.5s;
}

.step-item:nth-child(3) .step-icon {
    animation-delay: 3s;
}

@keyframes stepFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(3deg);
    }
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 15px;
    color: #999;
    line-height: 1.6;
}

.phone-mockup {
    position: relative;
    animation: slideInRight 1s ease-out 0.8s both;
}

.phone {
    width: 360px;
    height: 720px;
    background: #000;
    border-radius: 55px;
    padding: 35px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 60px 120px #000000cc;
    border: 6px solid #333;
}

.phone::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 40px;
    background: #000;
    border-radius: 30px;
    z-index: 3;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 45px;
    padding: 70px 30px 35px;
    position: relative;
    overflow: hidden;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.app-store-icons {
    display: flex;
    gap: 15px;
}

.store-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.app-store {
    background: #007AFF;
}

.google-play {
    background: linear-gradient(45deg, #34A853, #4285F4);
}

.lang-toggle {
    color: #FFA726;
    font-size: 14px;
    font-weight: 600;
}

.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.hero-illustration {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FFA726, #FF9800);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.02);
    }
}

.hero-illustration::before {
    content: '🏃‍♂️';
    font-size: 80px;
}

.hero-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 14px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.action-btn {
    flex: 1;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(135deg, #FFA726, #FF9800);
    color: white;
    box-shadow: 0 10px 25px #ffa7264d;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px #ffa72666;
}

.secondary-btn {
    background: transparent;
    color: #999;
    border: 2px solid #444;
}

.secondary-btn:hover {
    border-color: #FFA726;
    color: #FFA726;
    transform: translateY(-2px);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-section {
    text-align: center;
    margin-top: 80px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000cc;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 25px;
    padding: 0;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    border: 1px solid #ffa72633;
    box-shadow: 0 30px 60px #00000080;
    scrollbar-width: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    position: relative;
    padding: 20px 25px 0;
    text-align: right;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #FFA726;
    background: #ffa7261a;
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px 30px 35px;
    text-align: center;
}

.modal-icon {
    margin-bottom: 25px;
}

.floating-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFA726, #FF9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 36px;
    animation: modalIconFloat 3s ease-in-out infinite;
    box-shadow: 0 15px 30px #ffa7264d;
    position: relative;
}

.floating-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFA726, #FF9800, #FFA726);
    border-radius: 50%;
    z-index: -1;
    animation: shimmer 2s linear infinite;
}

@keyframes modalIconFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.modal-subtitle {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.progress-section {
    margin-bottom: 30px;
}

.progress-label {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFA726, #FF9800);
    border-radius: 10px;
    width: 0%;
    transition: width 2s ease-out;
    animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% {
        box-shadow: 0 0 5px #ffa72680;
    }

    100% {
        box-shadow: 0 0 15px #ffa726cc;
    }
}

.progress-text {
    font-size: 18px;
    font-weight: 600;
    color: #FFA726;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #ffa7260d;
    border-radius: 12px;
    border: 1px solid #ffa7261a;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #ffa7261a;
    border-color: #ffa7264d;
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 20px;
}

.feature-text {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.notify-btn,
.understand-btn {
    padding: 14px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 160px;
}

.notify-btn {
    background: linear-gradient(135deg, #FFA726, #FF9800);
    color: white;
    box-shadow: 0 8px 20px #ffa7264d;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px #ffa72666;
}

.notify-btn.subscribed {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    box-shadow: 0 8px 20px #27ae604d;
}

.understand-btn {
    background: transparent;
    color: #999;
    border: 2px solid #444;
}

.understand-btn:hover {
    border-color: #FFA726;
    color: #FFA726;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 46px;
    }

    .description {
        font-size: 26px;
    }

    .phone {
        width: 320px;
        height: 640px;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-title {
        font-size: 22px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 12px;
    }

    .notify-btn,
    .understand-btn {
        max-width: none;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, #ff4757, #ff3742);
    opacity: 0.1;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.description {
    font-size: 24px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 50px;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.feature-box {
    background: linear-gradient(135deg, #ff47571a, #ff37420d);
    border: 1px solid #ff475733;
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    animation: slideInLeft 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4757, transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.feature-text {
    font-size: 20px;
    line-height: 1.7;
    color: #ffffff;
    font-weight: 400;
}

.phone-mockup {
    position: relative;
    animation: slideInRight 1s ease-out 0.6s both;
}

.phone {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    padding: 20px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 30px 60px #00000080;
    border: 3px solid #333;
}

.phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-radius: 15px;
    z-index: 3;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 30px;
    padding: 40px 20px 20px;
    position: relative;
    overflow: hidden;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.app-header {
    text-align: center;
    margin-bottom: 30px;
}

.app-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.back-button {
    position: absolute;
    left: 20px;
    top: 45px;
    color: #007AFF;
    font-size: 16px;
}

.movies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.movie-card {
    aspect-ratio: 16/9;
    border-radius: 12px;
    background: linear-gradient(45deg, #333, #555);
    position: relative;
    overflow: hidden;
    animation: movieFloat 3s ease-in-out infinite;
}

.movie-card:nth-child(even) {
    animation-delay: 1.5s;
}

@keyframes movieFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

.movie-card::after {
    content: attr(data-title);
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-shadow: 0 1px 3px #000000cc;
}

.movie-1 {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.movie-2 {
    background: linear-gradient(45deg, #4834d4, #686de0);
}

.movie-3 {
    background: linear-gradient(45deg, #00d2d3, #01a3a4);
}

.movie-4 {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
}

.movie-5 {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
}

.movie-6 {
    background: linear-gradient(45deg, #48dbfb, #0abde3);
}

.movie-7 {
    background: linear-gradient(45deg, #ff6348, #e17055);
}

.movie-8 {
    background: linear-gradient(45deg, #2ed573, #7bed9f);
}

.bottom-nav {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #ffffff1a;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px;
}

.nav-item {
    text-align: center;
    color: #666;
    font-size: 10px;
}

.nav-item.active {
    color: #007AFF;
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 5px;
    display: block;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-section {
    text-align: center;
    margin-top: 80px;
    animation: fadeInUp 1s ease-out 1s both;
}

.cta-button {
    cursor: pointer;
    display: inline-block;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px #ff47574d;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px #ff475766;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000cc;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    text-align: center;
    border: 1px solid #ff47574d;
    box-shadow: 0 30px 80px #00000080;
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4757, #ff3742, #ff4757);
    background-size: 200% 100%;
    animation: modalShimmer 2s ease-in-out infinite;
}

@keyframes modalShimmer {

    0%,
    100% {
        background-position: 200% 0;
    }

    50% {
        background-position: -200% 0;
    }
}

.modal-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
    animation: modalIconFloat 3s ease-in-out infinite;
}

@keyframes modalIconFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.modal-features {
    text-align: left;
    margin: 20px 0;
    padding: 18px;
    background: #ff47570d;
    border-radius: 12px;
    border: 1px solid #ff47571a;
}

.modal-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 13px;
}

.modal-feature:last-child {
    margin-bottom: 0;
}

.modal-feature-icon {
    margin-right: 10px;
    font-size: 16px;
    width: 22px;
    text-align: center;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 25px;
}

.modal-button {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.modal-button-primary {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    box-shadow: 0 10px 30px #ff47574d;
}

.modal-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px #ff475766;
}

.modal-button-secondary {
    background: transparent;
    color: #b0b0b0;
    border: 2px solid #b0b0b04d;
}

.modal-button-secondary:hover {
    border-color: #ff475780;
    color: #ff4757;
    transform: translateY(-2px);
}

.close-button {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    color: #ff4757;
    background: #ff47571a;
    transform: rotate(90deg);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #ffffff1a;
    border-radius: 2px;
    margin: 15px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4757, #ff6b6b);
    border-radius: 3px;
    width: 35%;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-text {
        font-size: 36px;
    }

    .description {
        font-size: 20px;
    }

    .phone {
        width: 250px;
        height: 500px;
    }

    .modal {
        padding: 30px 25px;
        margin: 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-button {
        width: 100%;
    }
}

.image222 {
    width: 70%;
}

.perviylogo {
    width: 55%;
}

.perviytext {
    font-size: 14px;
}

.kvadratiki {
    width: 130%;
    height: 33%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 25%;
}

.perviy {
    width: 33%;
    height: 200px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
    gap: 3%;
    box-shadow: 0 0 10px #ff84001a;
}

.rr {
    top: 50%;
    left: 50%;
    transform: translate(-20%, -0%);
}

.rrr {
    font-size: 20px;
    margin-bottom: 5%;
}

.itSababSection {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: rgb(27, 27, 27);
    gap: 20px;
    background-color: black;
    box-shadow: 0 0 30px #ffffff1a;
}

.d111 {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    padding: 30px;


}

.d222 {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.logoitsabab {
    width: 20%;
}

@media (max-width: 1113px) {
    .rr {
        font-size: 16px;
    }

    .rrr {
        font-size: 14px;
    }

    .perviytext {
        font-size: 14px;
    }

    .perviy {
        height: 180px;
    }
}

@media (max-width: 887px) {
    .rr {
        font-size: 14px;
    }

    .rrr {
        font-size: 12px;
    }

    .perviytext {
        font-size: 12px;
    }

    .perviy {
        height: 150px;
    }
}

@media (max-width: 650px) {
    .rr {
        font-size: 12px;
    }

    .rrr {
        font-size: 10px;
    }

    .perviytext {
        font-size: 10px;
    }

    .perviy {
        height: 120px;
    }
}

@media (max-width: 450px) {
    .rr {
        font-size: 10px;
    }

    .rrr {
        font-size: 8px;
    }

    .perviytext {
        font-size: 8px;
    }

    .perviy {
        height: 100px;
    }
}

@media (max-width: 420px) {
    .rr {
        font-size: 8px;
    }

    .rrr {
        font-size: 6px;
    }

    .perviytext {
        font-size: 6px;
    }

    .perviy {
        height: 80px;
    }
	.logo-text{
	font-size: 25px;
		font-family: 'consolas';
	}
	.d2222 {
    width: 100%;
		height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
	
	
}

.zigzag {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: rgb(27, 27, 27);
}

.zigzag5 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: rgb(27, 27, 27);
}

.d11 {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

.d22 {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

.text {
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3%;
    background-color: rgb(32, 32, 32);
    border-radius: 10px;
    color: white;
    text-align: center;
    border: 1px solid grey;
    gap: 20px;
    font-size: 16px;
}

.image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 16px #fdfcfc4d;
    filter: brightness(0.6);
    box-shadow: 0 4px 16px #fdfcfc4d;
}

.image1 {
    width: 100%;
    height: 105%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 16px #fdfcfc4d;
    filter: brightness(0.6);
    box-shadow: 0 4px 16px #fdfcfc4d;

}

.image11 {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 16px #fdfcfc4d;
    filter: brightness(0.6);
    box-shadow: 0 4px 16px #fdfcfc4d;

}

.image1111 {
    width: 80%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 16px #fdfcfc4d;
    filter: brightness(0.6);
    box-shadow: 0 4px 16px #fdfcfc4d;

}

@media (max-width: 1113px) {
    .text {
        font-size: 8px;
        height: 40%;
    }

    .zigzag {
        height: 400px;
    }
}

@media (max-width: 803px) {
    .text {
        font-size: 6px;
        height: 35%;
    }

    .zigzag {
        height: 350px;
    }
}

@media (max-width: 630px) {
    .text {
        font-size: 4px;
        height: 30%;
    }

    .zigzag {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .text {
        width: 100%;
        font-size: 6px;
        height: 75%;
        gap: 5px;
    }

    .zigzag {
        height: 150px;
    }
}


.selections {
    width: 100%;
    height: auto;
    display: flex;
	
    align-items: center;
    padding: 4% 4% 4% 4%;
	margin-top: 45px;
}

.d1111 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    gap: 20px;
}

.d2222 {
    width: 30%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.dd1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    padding: 0% 5% 0% 0%;                  
    margin-top: 2%;

}

.dd2 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    padding: 0% 15% 0% 0%;
}

.di1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.di1_h1 {
    font-size: 30px;
}

.dd1_h2 {
    font-size: 50px;
}

.dd1_h3 {
    font-size: 30px;
}

.img-bly {
    width: 120%;
}

.dd1_h4 {
    font-size: 25px;
}

@media (max-width: 1113px) {
    .di1_h1 {
        font-size: 15px;
    }

    .dd1_h2 {
        font-size: 35px;
    }

    .dd1_h3 {
        font-size: 20px;
    }

    .dd1_h4 {
        font-size: 13px;
    }

    .selections {
        height: 650px;
    }

    .d1111 {
        gap: 17px;
    }
}

@media (max-width: 803px) {
    .dd1_h1 {
        font-size: 20px;
    }

    .dd1_h2 {
        font-size: 20px;
    }

    .dd1_h3 {
        font-size: 15px;
    }

    .dd1_h4 {
        font-size: 13px;
    }

    .di1_h1 {
        font-size: 13px;
    }

    .di1_h1 {
        font-size: 10px;
    }

    .selections {
        height: 550px;
    }

    .d1111 {
        gap: 14px;
    }

}

@media (max-width: 630px) {
    .dd1_h1 {
        font-size: 17px;
    }

    .dd1_h2 {
        font-size: 17px;
    }

    .dd1_h3 {
        font-size: 12px;
    }

    .dd1_h4 {
        font-size: 10px;
    }

    .selections {
        height: 450px;
    }

    .d1111 {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .dd1_h1 {
        font-size: 15px;
    }

    .dd1_h2 {
        font-size: 20px;
    }

    .dd1_h3 {
        font-size: 13px;
    }

    .dd1_h4 {
        font-size: 14px;
    }

    .di1_h1 {
        font-size: 8px;
    }

    .selections {
        height: 450px;
		  display: flex;
    flex-direction: column;
		
    }

    .d1111 {
        gap: 5px;
    }
}


.footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid #ffffff1a;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
    padding-bottom: 10px;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer__company {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer__links {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer a:hover {
    color: #4CAF50 !important;
}

.footer button:hover {
    background: #45a049 !important;
}

.footer .fab,
.footer .fas {
    transition: transform 0.3s;
}

.footer .fab:hover,
.footer .fas:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        text-align: center;
        padding: 40px 0 20px;
    }

    .footer>div>div {
        flex: 100%;
        margin-bottom: 30px;
    }

    .footer .logo-container {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer .social-links {
        justify-content: center;
    }
}

.text-block {
    max-width: 800px;
    margin: 20px 0;
    line-height: 1.5;
}

.text-block h2 {
    margin: 20px 0 10px;
}