﻿/* Main content styles */
.main-content-area {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Pricing table and other specific sections */
.pricing-table,
.features-section,
.statistics-section,
.reviews-section,
.how-it-works-section,
.faq-section {
    box-sizing: border-box;
}

.pricing-table {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
    align-items: flex-end;
    overflow-x: hidden;
    width: 100%;
}

.pricing-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 22px 10px 18px 10px;
    width: 200px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    overflow: hidden;
    color: #222;
}

.pricing-card.side-card {
    border: 2px solid #933aff;
    color: #222;
}

.pricing-card.side-card h3,
.pricing-card.side-card .price {
    color: #222 !important;
}

.pricing-card.featured-card {
    background: linear-gradient(135deg, #933aff 0%, #6e2bff 100%);
    color: #fff;
    z-index: 2;
    width: 240px;
    box-shadow: 0 8px 32px rgba(147,58,255,0.18);
    border: none;
}

.pricing-card.featured-card h3,
.pricing-card.featured-card .price {
    color: #fff !important;
}

.pricing-card.featured-card .purchase-btn {
    background: #fff;
    color: #933aff;
    border: 2px solid #fff;
}

.pricing-card.featured-card .purchase-btn:hover {
    background: #933aff;
    color: #fff;
    border: 2px solid #fff;
}

.pricing-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(147,58,255,0.18);
}

.pricing-card h3 {
    margin-bottom: 6px;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: inherit;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 0 0;
}

.price {
    font-size: 2.2em;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
    color: inherit;
    display: flex;
    align-items: center;
}

.price-divider {
    font-size: 1.8em;
    opacity: 0.7;
    color: inherit;
    margin: 0 2px;
}

.featured-card .price-container {
    color: #fff;
}

.featured-card .price-divider {
    color: rgba(255,255,255,0.8);
}

.per {
    font-size: 0.95em;
    margin-bottom: 10px;
    color: #888;
}

.pricing-card.featured-card .per {
    color: #e0cfff;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px 0;
}

.pricing-card ul li {
    margin: 7px 0;
    color: #444;
    font-weight: 500;
    font-size: 0.98em;
}

.pricing-card.featured-card ul li {
    color: #fff;
    opacity: 0.95;
}

.purchase-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 20px;
    background: #933aff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
    border: 2px solid #933aff;
}

.pricing-card.side-card .purchase-btn {
    background: #933aff;
    color: #fff;
    border: 2px solid #933aff;
}

.pricing-card.side-card .purchase-btn:hover {
    background: #fff;
    color: #933aff;
    border: 2px solid #933aff;
}

.card-bg-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2.5em;
    font-weight: 900;
    color: rgba(147,58,255,0.18);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.pricing-card.side-card .card-bg-number {
    color: rgba(147,58,255,0.22);
}

@media (max-width: 900px) {
    .pricing-table {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        width: 100vw;
        margin: 0;
        padding: 0 0 20px 0;
    }
    .pricing-card, .pricing-card.featured-card {
        width: 96vw;
        max-width: 320px;
        min-width: 0;
        margin: 0 auto;
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .card-bg-number {
        font-size: 2em;
        right: 8px;
        top: 8px;
    }
}

@media (max-width: 500px) {
    .pricing-card, .pricing-card.featured-card {
        width: 98vw;
        max-width: 98vw;
        padding-left: 2vw;
        padding-right: 2vw;
    }
    .card-bg-number {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .price {
        font-size: 1.8em;
    }
    
    .price-divider {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .price-container {
        flex-direction: column;
        gap: 4px;
    }
    
    .price {
        font-size: 1.6em;
    }
    
    .price-divider {
        display: none;
    }
} 

/* Features Section Styles */
.features-section {
    text-align: center;
    margin: 40px 0 30px 0;
    direction: rtl;
    padding: 0 15px;
}

.features-title {
    color: #933aff;
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 0.2em;
    text-shadow: 0 2px 4px rgba(147,58,255,0.1);
}

.features-divider {
    width: 80px;
    height: 4px;
    margin: 0 auto 24px auto;
    background: linear-gradient(90deg, #933aff 0%, #6e2bff 100%);
    border-radius: 2px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #23222b;
    color: #fff;
    border-radius: 24px;
    padding: 16px 28px;
    font-size: 1.15em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(147,58,255,0.08);
    transition: all 0.2s ease;
    border: 1px solid rgba(147,58,255,0.1);
}

.feature-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 4px 16px rgba(147,58,255,0.13);
    border-color: rgba(147,58,255,0.2);
}

.feature-icon {
    font-size: 1.4em;
    margin-left: 6px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Responsive Design */
@media (max-width: 900px) {
    .features-title {
        font-size: 2em;
    }
    
    .feature-card {
        font-size: 1.1em;
        padding: 14px 24px;
    }
}

@media (max-width: 700px) {
    .features-list {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }
    
    .feature-card {
        width: 90vw;
        max-width: 350px;
        justify-content: center;
        font-size: 1em;
    }
    
    .features-title {
        font-size: 1.8em;
    }
} 
/* Statistics Section Styles */
.statistics-section {
    padding: 40px 15px;
    background: linear-gradient(180deg, rgba(147,58,255,0.03) 0%, rgba(147,58,255,0) 100%);
    direction: rtl;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: #23222b;
    border-radius: 20px;
    padding: 25px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(147,58,255,0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(147,58,255,0.1);
    border-color: rgba(147,58,255,0.3);
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #fff 0%, #e0cfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #b8b8b8;
    font-size: 1.1em;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.stat-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 3em;
    opacity: 0.1;
    transform: rotate(-15deg);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.15;
}

/* Glowing effect on hover */
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(147,58,255,0.15) 0%, rgba(147,58,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-container {
        gap: 20px;
    }
    .stat-card {
        min-width: 180px;
        padding: 20px;
    }
    .stat-number {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .stats-container {
        gap: 15px;
    }
    .stat-card {
        width: calc(50% - 15px);
        min-width: 150px;
        padding: 15px;
    }
    .stat-number {
        font-size: 2em;
    }
    .stat-label {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    .stat-card {
        width: 100%;
        max-width: 280px;
    }
} 
/* Reviews Section Styles */
.reviews-section {
    padding: 20px 15px;
    direction: rtl;
    background: linear-gradient(180deg, rgba(147,58,255,0.03) 0%, rgba(147,58,255,0) 100%);
    width: 100%;
}

.reviews-title {
    text-align: center;
    color: #933aff;
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 700;
}

.reviews-container {
    display: flex;
    gap: 20px;
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.review-card {
    background: #23222b;
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    max-width: 350px;
    border: 1px solid rgba(147,58,255,0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(147,58,255,0.1);
    border-color: rgba(147,58,255,0.3);
}

.review-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(147,58,255,0.1);
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    color: #933aff;
    font-weight: bold;
    font-size: 1.8em;
    text-align: center;
}

.stars {
    font-size: 1.6em;
    margin-top: 5px;
    letter-spacing: 3px;
}

.service-tag {
    background: rgba(147,58,255,0.1);
    padding: 8px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tag-icon {
    font-size: 1.1em;
}

.review-content {
    color: #fff;
    text-align: center;
}

.review-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.review-card:hover .review-image {
    transform: scale(1.02);
}

.review-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.4;
}

.delivery-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #b8b8b8;
    font-size: 1.2em;
    margin-top: 12px;
}

.status-icon {
    color: #4CAF50;
    font-size: 1.4em;
}

.scroll-notice {
    text-align: center;
    color: #b8b8b8;
    margin-top: 20px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.notice-icon {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Image Zoom on Click */
.review-image-container.zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vh;
    max-width: none;
    z-index: 1000;
    background: rgba(0,0,0,0.9);
    cursor: zoom-out;
}

.review-image-container.zoomed .review-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
        padding: 10px 15px;
        gap: 20px;
    }
    
    .review-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .reviews-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    
    .rating-number {
        font-size: 1.6em;
    }

    .stars {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 15px 10px;
    }

    .reviews-container {
        padding: 5px;
        gap: 15px;
    }

    .review-card {
        padding: 15px;
    }
    
    .rating-number {
        font-size: 1.5em;
    }

    .stars {
        font-size: 1.3em;
    }

    .delivery-status {
        font-size: 1.1em;
    }
} 
/* How It Works Section Styles */
.how-it-works-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(147,58,255,0.03) 0%, rgba(147,58,255,0) 100%);
    direction: rtl;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    color: #933aff;
    font-size: 2.2em;
    margin-bottom: 40px;
    font-weight: 700;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step-card {
    background: #23222b;
    border-radius: 16px;
    padding: 25px;
    width: 300px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(147,58,255,0.1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(147,58,255,0.1);
    border-color: rgba(147,58,255,0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #933aff;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 4px 8px rgba(147,58,255,0.2);
}

.step-content {
    text-align: center;
}

.step-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.step-card h3 {
    color: #fff;
    font-size: 1.3em;
    margin: 10px 0;
    font-weight: 600;
}

.step-card p {
    color: #b8b8b8;
    font-size: 1em;
    line-height: 1.5;
    margin: 0;
}

/* Progress Line */
.progress-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-top: 30px;
    position: relative;
}

.progress-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, #933aff 0%, #6e2bff 100%);
    z-index: 1;
}

.progress-dot {
    width: 12px;
    height: 12px;
    background: #933aff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-container {
        gap: 20px;
    }

    .step-card {
        width: 280px;
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-card {
        width: 100%;
        max-width: 400px;
    }

    .progress-line {
        display: none;
    }

    .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 30px 15px;
    }

    .step-card {
        padding: 20px 15px;
    }

    .step-icon {
        font-size: 2.2em;
    }

    .step-card h3 {
        font-size: 1.2em;
    }

    .step-card p {
        font-size: 0.95em;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1.1em;
        top: -12px;
        right: -12px;
    }
} 
/* FAQ Section Styles */
.faq-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(147,58,255,0.03) 0%, rgba(147,58,255,0) 100%);
    direction: rtl;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #933aff;
    font-size: 2.2em;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #23222b;
    border-radius: 16px;
    border: 1px solid rgba(147,58,255,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(147,58,255,0.3);
    box-shadow: 0 4px 20px rgba(147,58,255,0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    color: #fff;
    font-size: 1.1em;
    margin: 0;
    font-weight: 500;
}

.faq-icon {
    color: #933aff;
    font-size: 1.5em;
    font-weight: 300;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(147,58,255,0.1);
    border-radius: 50%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(147,58,255,0.03);
    border-top: 0px solid rgba(147,58,255,0.1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 25px;
    border-top: 1px solid rgba(147,58,255,0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: rgba(147,58,255,0.2);
}

.faq-answer p {
    color: #b8b8b8;
    margin: 0;
    line-height: 1.6;
    font-size: 1em;
}

.faq-answer p + p {
    margin-top: 10px;
}

/* Payment Methods Styling */
.payment-methods {
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 40px;
    width: auto;
    filter: grayscale(1) brightness(1.8);
    transition: all 0.3s ease;
}

.payment-icons img:hover {
    filter: grayscale(0) brightness(1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1em;
        line-height: 1.4;
    }

    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }

    .faq-answer p {
        font-size: 0.95em;
    }

    .payment-icons img {
        height: 35px;
    }
}

/* Animation for accordion */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer {
    animation: slideDown 0.3s ease-out;
} 
/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 20px 0;
    display: flex;
    align-items: flex-start;
    direction: rtl;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(147, 58, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(147, 58, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 40px);
}

/* Text Styles */
.hero-text-container {
    flex: 1;
    max-width: 600px;
    padding-bottom: 60px;
    align-self: center;
}

.hero-title {
    font-size: 3.5em;
    line-height: 1.2;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gradient-text {
    background: linear-gradient(135deg, #933aff 0%, #ff61e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.game-text {
    color: #fff;
    font-weight: 700;
}

.highlight-text {
    color: #933aff;
    font-weight: 700;
}

/* Features Section */
.hero-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(147, 58, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(147, 58, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(-5px);
    background: rgba(147, 58, 255, 0.15);
    border-color: rgba(147, 58, 255, 0.3);
}

.feature-icon {
    font-size: 1.5em;
}

.feature-item p {
    color: #fff;
    font-size: 1.1em;
    margin: 0;
}

/* CTA Button */
.cta-container {
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #933aff 0%, #ff61e6 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff61e6 0%, #933aff 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

.button-text, .button-icon {
    position: relative;
    z-index: 1;
    color: white;
}

.button-icon {
    width: 24px;
    height: 24px;
}

/* Character Section */
.hero-character {
    flex: 1;
    max-width: 600px;
    position: relative;
    align-self: flex-end;
    margin-bottom: -1px;
}

.character-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(147, 58, 255, 0.3) 0%, transparent 70%);
    filter: blur(40px);
}

.character-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: block;
    vertical-align: bottom;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
    animation-delay: var(--delay);
    filter: brightness(1.2);
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; }
.floating-icon:nth-child(2) { top: 60%; left: 20%; }
.floating-icon:nth-child(3) { top: 30%; right: 15%; }
.floating-icon:nth-child(4) { top: 70%; right: 20%; }
.floating-icon:nth-child(5) { top: 40%; left: 50%; }

/* Animations */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(0, -20px) rotate(0deg); }
    75% { transform: translate(-10px, -10px) rotate(-5deg); }
}

/* Floating CTA Button */
.cta-button.floating {
    visibility: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transform: scale(0.8);
    transition: all 0.3s ease;
    padding: 12px 24px;
    box-shadow: 0 4px 20px rgba(147, 58, 255, 0.3);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.cta-button.floating .button-text {
    font-size: 0.95em;
}

.cta-button.floating.visible {
    visibility: visible;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3em;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        min-height: auto;
    }

    .hero-text-container {
        padding-bottom: 0;
    }

    .feature-item {
        justify-content: center;
    }

    .hero-character {
        margin-bottom: -1px;
        max-width: 400px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 15px 0;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .feature-item p {
        font-size: 1em;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .floating-icon {
        width: 35px;
        height: 35px;
    }

    .cta-button.floating {
        bottom: 20px;
        left: 50%;
        right: auto;
        transform: translate(-50%, 100px) scale(0.8);
        padding: 10px 20px;
        font-size: 1.1em;
        width: auto;
        min-width: 160px;
    }

    .cta-button.floating.visible {
        visibility: visible;
        transform: translate(-50%, 0) scale(1);
    }

    .hero-character {
        margin-bottom: -1px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }

    .hero-features {
        gap: 10px;
    }

    .feature-item {
        padding: 12px 15px;
    }

    .feature-icon {
        font-size: 1.3em;
    }

    .floating-icon {
        width: 30px;
        height: 30px;
    }

    .cta-button.floating {
        bottom: 15px;
        padding: 8px 16px;
        font-size: 1em;
        min-width: 140px;
    }
} 