.homepage-body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.homepage-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo .logo-link {
    display: flex;
    align-items: center;
}

.site-logo-homepage {
    max-height: 45px;
    max-width: 220px;
    height: auto;
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: #667eea;
}

.nav-btn-secondary {
    padding: 8px 20px;
    border: 2px solid #667eea;
    border-radius: 20px;
    color: #667eea !important;
}

.nav-btn-primary {
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white !important;
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.mobile-nav {
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: #667eea;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    animation: slideDown 0.3s ease;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 15px 30px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.mobile-menu a:hover {
    background: #f5f7fa;
    border-left-color: #667eea;
    color: #667eea;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 14px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s;
}

.btn-hero-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: white;
    color: #667eea;
}


.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.hero-animation-box {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 420px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.animated-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.wallet-card-anim {
    top: 30px;
    left: 25px;
    width: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    animation: slideInLeft 1s ease 0.3s backwards, floatCard1 4s ease-in-out 1.3s infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatCard1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

.card-icon {
    margin-bottom: 10px;
}

.card-label {
    font-size: 11px;
    opacity: 0.9;
    margin-bottom: 4px;
    font-weight: 500;
}

.card-value {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.balance-counter {
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.task-card-anim {
    top: 180px;
    right: 25px;
    width: 180px;
    animation: slideInRight 1s ease 0.6s backwards, floatCard2 4.5s ease-in-out 1.6s infinite;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatCard2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #2c3e50;
    opacity: 0;
}

.task-1 {
    animation: taskAppear 0.5s ease 1.2s forwards;
}

.task-2 {
    animation: taskAppear 0.5s ease 1.5s forwards;
}

.task-3 {
    animation: taskAppear 0.5s ease 1.8s forwards;
}

@keyframes taskAppear {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.task-check {
    width: 20px;
    height: 20px;
    background: rgba(67, 233, 123, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-path {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: drawCheck 0.6s ease forwards;
}

.task-1 .check-path {
    animation-delay: 1.4s;
}

.task-2 .check-path {
    animation-delay: 1.7s;
}

.task-3 .check-path {
    animation-delay: 2s;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.product-card-anim {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    animation: slideInBottom 1s ease 0.9s backwards, floatCard3 5s ease-in-out 1.9s infinite;
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes floatCard3 {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}

.product-icon {
    margin-bottom: 8px;
    opacity: 0;
    animation: iconPop 0.6s ease 1.5s forwards;
}

@keyframes iconPop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.product-icon svg {
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
}

.product-icon path {
    stroke: #667eea;
}

.product-label {
    font-size: 11px;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-coin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    opacity: 0;
}

.floating-coin::before {
    content: '৳';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 800;
    color: #b8860b;
}

.coin-1 {
    top: 120px;
    left: 240px;
    animation: coinFloat1 3s ease-in-out 2s infinite;
}

.coin-2 {
    top: 280px;
    left: 60px;
    animation: coinFloat2 3.5s ease-in-out 2.3s infinite;
}

.coin-3 {
    top: 340px;
    right: 80px;
    animation: coinFloat3 3.2s ease-in-out 2.6s infinite;
}

@keyframes coinFloat1 {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(1);
    }
}

@keyframes coinFloat2 {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-70px) scale(1);
    }
}

@keyframes coinFloat3 {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-65px) scale(1);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.stats-highlight-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.3s;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.features-section {
    padding: 100px 0;
    background: white;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 25px;
}

.feature-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.8;
}

.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.step-icon {
    font-size: 48px;
    color: #667eea;
    margin: 30px 0 20px;
}

.step-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: #667eea;
}

.trust-section {
    padding: 100px 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 40px;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    display: flex;
    gap: 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.trust-text p {
    color: #7f8c8d;
    line-height: 1.6;
}

.trust-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-badge {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.trust-badge i {
    font-size: 80px;
    margin-bottom: 20px;
}

.badge-title {
    font-size: 28px;
    font-weight: 800;
}

.badge-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.preview-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.preview-mockup {
    margin-top: 60px;
}

.mockup-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.mockup-screen {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    text-align: center;
    transition: all 0.3s;
}

.mockup-screen:hover {
    transform: translateY(-10px);
}

.mockup-screen i {
    font-size: 80px;
    color: #667eea;
    margin-bottom: 20px;
}

.mockup-screen p {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.mockup-mobile {
    transform: scale(0.9);
}

.preview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.preview-feature i {
    font-size: 24px;
    color: #43e97b;
}

.preview-feature span {
    font-weight: 600;
    color: #2c3e50;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 20px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-cta-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-cta-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #667eea;
}

.cta-note {
    font-size: 16px;
    opacity: 0.9;
}

.cta-note i {
    margin-right: 8px;
}

.homepage-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

.homepage-telegram-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.telegram-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.telegram-float-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.telegram-float-btn i {
    position: relative;
    z-index: 1;
}

.telegram-float-btn:hover::before {
    width: 100px;
    height: 100px;
}

.telegram-float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.telegram-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.telegram-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0,0,0,0.9);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.telegram-float-btn:hover .telegram-tooltip {
    opacity: 1;
    right: 70px;
}

.telegram-channel-btn {
    background: linear-gradient(135deg, #0088cc 0%, #0066ff 100%);
    animation: gentlePulseChannel 3s ease-in-out infinite;
}

.telegram-support-btn {
    background: linear-gradient(135deg, #00d084 0%, #00b8a9 100%);
    animation: gentlePulseSupport 3s ease-in-out infinite 1.5s;
}

@keyframes gentlePulseChannel {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0,0,0,0.25), 0 0 0 0 rgba(0, 136, 204, 0.5);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0,0,0,0.25), 0 0 0 12px rgba(0, 136, 204, 0);
    }
}

@keyframes gentlePulseSupport {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0,0,0,0.25), 0 0 0 0 rgba(0, 208, 132, 0.5);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0,0,0,0.25), 0 0 0 12px rgba(0, 208, 132, 0);
    }
}

.public-page-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.public-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.public-page-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.public-page-header p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.login-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff3cd;
    color: #856404;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}

.login-notice i {
    font-size: 18px;
}

.login-notice a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.login-notice a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
        gap: 10px;
    }
    
    .homepage-telegram-float {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .telegram-float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .telegram-tooltip {
        font-size: 11px;
        padding: 6px 12px;
        right: 65px;
    }
    
    .telegram-float-btn:hover .telegram-tooltip {
        right: 60px;
    }
    
    .public-page-section {
        padding: 100px 0 60px;
    }
    
    .public-page-header h1 {
        font-size: 32px;
    }
    
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .stats-highlight-section {
        padding: 60px 0;
    }
    
    .hero-animation-box {
        max-width: 100%;
        height: 350px;
        margin: 40px auto 0;
        padding: 20px;
    }
    
    .wallet-card-anim {
        width: 160px;
        left: 20px;
        top: 25px;
    }
    
    .card-value {
        font-size: 20px;
    }
    
    .task-card-anim {
        width: 150px;
        right: 20px;
        top: 150px;
    }
    
    .task-item {
        font-size: 11px;
    }
    
    .product-card-anim {
        width: 120px;
        bottom: 25px;
    }
    
    .product-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .floating-coin {
        width: 20px;
        height: 20px;
    }
    
    .floating-coin::before {
        font-size: 12px;
    }
    
    .coin-1 {
        left: 180px;
    }
    
    .coin-2 {
        left: 50px;
    }
    
    .coin-3 {
        right: 60px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-content h2 {
        font-size: 32px;
    }
    
    .trust-badge {
        width: 250px;
        height: 250px;
    }
    
    .mockup-container {
        flex-direction: column;
        align-items: center;
    }
    
    .mockup-mobile {
        transform: scale(1);
    }
    
    .preview-features {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
}
