/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Header */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-button.large {
    padding: 18px 50px;
    font-size: 1.3rem;
}

.free-trial-banner {
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 2px solid rgba(255,255,255,0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.banner-text {
    flex: 1;
}

.free-trial-banner p {
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.banner-image {
    flex: 1;
    max-width: 300px;
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.ticket-link {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.ticket-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background-color: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #ddd;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.pricing-card.popular {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, rgba(102,126,234,0.05) 0%, rgba(118,75,162,0.05) 100%);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

.connection-badge {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.plan-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-options {
    margin-bottom: 2rem;
    text-align: left;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
}

.price-item:hover {
    background-color: #667eea;
    color: white;
}

.price-item:hover .duration,
.price-item:hover .price {
    color: white;
}

.price-item.selected {
    background-color: #667eea;
    color: white;
}

.price-item.selected .duration,
.price-item.selected .price {
    color: white;
}

.price-item:last-child {
    border-bottom: none;
}

.duration {
    font-weight: 600;
    color: #333;
}

.price {
    font-weight: bold;
    color: #667eea;
    font-size: 1.1rem;
}

.select-plan {
    width: 100%;
    padding: 12px;
    background-color: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-plan:hover {
    background-color: #764ba2;
    transform: scale(1.02);
}

.pricing-note {
    text-align: center;
    font-size: 1.1rem;
    color: #ff6b6b;
    font-weight: bold;
    background-color: #fff3f3;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Features Section */
.features {
    background-color: #f9f9f9;
    padding: 80px 20px 40px 20px;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

.feature-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid #667eea;
}

.feature-card.highlight h3 {
    color: white;
}

.feature-card.highlight p {
    color: rgba(255,255,255,0.9);
}

.features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.features-header h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
}

.feature-decoration {
    width: 170px;
    height: auto;
    display: block;
}

/* Payment Methods Section */
.payment-methods {
    background-color: white;
    padding: 80px 20px;
}

.payment-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.payment-option {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.payment-option h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.fee-status {
    font-size: 0.9rem;
    opacity: 0.9;
}

.payment-note {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
}

.payment-note a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
}

/* Device Setup Section */
.device-setup {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.device-setup h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.setup-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: bold;
}

.setup-note {
    text-align: center;
    font-size: 1rem;
    color: #ff6b6b;
    margin-bottom: 3rem;
    font-weight: bold;
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.setup-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.setup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.setup-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.setup-card p {
    color: #666;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.setup-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.setup-link {
    display: inline-block;
    background-color: #667eea;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 0.9rem;
}

.setup-link:hover {
    background-color: #764ba2;
    transform: scale(1.02);
}

.expand-btn {
    background-color: #ff6b6b;
}

.expand-btn:hover {
    background-color: #ff5252;
}

.firestick-guide {
    margin-top: 1.5rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}

.firestick-guide ol {
    margin-left: 1.5rem;
}

.firestick-guide li {
    margin-bottom: 0.8rem;
    color: #333;
    line-height: 1.6;
}

/* Showcase Main Section */
.showcase-main {
    background-color: #f9f9f9;
    padding: 80px 20px;
    min-height: 100vh;
}

.showcase-main h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.showcase-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.showcase-gallery {
    display: none;
}

.showcase-gallery-fullsize {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.showcase-fullsize-item {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.showcase-fullsize-item:hover {
    transform: scale(1.01);
}

.showcase-fullsize-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 3001;
}

.lightbox-close:hover {
    color: #ff6b6b;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact > .container > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-box {
    background-color: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 2rem auto;
    border: 2px solid rgba(255,255,255,0.2);
}

.contact-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-box p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Modal */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-content h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.close {
    color: #666;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #667eea;
}

.modal-content textarea {
    resize: vertical;
}

/* Success Modal Styles */
.modal-content.success-content {
    text-align: center;
    max-width: 450px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.success-checkmark {
    font-size: 5rem;
    color: #28a745;
    margin: 1.5rem 0;
    font-weight: bold;
    animation: scaleIn 0.6s ease-out;
}

.modal-content.success-content h3 {
    color: #28a745;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-message {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer p {
    margin: 0.5rem 0;
}

/* Social Links */
.social-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.facebook-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.facebook-button img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.facebook-button:hover img {
    transform: scale(1.1);
}

.facebook-button::after {
    content: attr(title);
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.facebook-button::before {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.facebook-button:hover::after,
.facebook-button:hover::before {
    opacity: 1;
}

.tiktok-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.tiktok-button img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.tiktok-button:hover img {
    transform: scale(1.1);
}

.tiktok-button::after {
    content: attr(title);
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.tiktok-button::before {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tiktok-button:hover::after,
.tiktok-button:hover::before {
    opacity: 1;
}

@media (max-width: 480px) {
    .tiktok-button {
        width: 40px;
        height: 40px;
    }

    .tiktok-button::after {
        font-size: 0.8rem;
        bottom: 50px;
    }

    .tiktok-button::before {
        bottom: 40px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 60px 15px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .free-trial-banner {
        padding: 1.5rem;
    }

    .banner-content {
        flex-direction: column;
        gap: 1rem;
    }

    .banner-image {
        max-width: 100%;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing,
    .features,
    .device-setup,
    .contact,
    .payment-methods {
        padding: 60px 15px;
    }

    .features h2,
    .pricing h2,
    .device-setup h2,
    .contact h2,
    .payment-methods h2 {
        font-size: 1.8rem;
    }

    .features-grid,
    .payment-grid,
    .setup-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 30px;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }

    .features-header {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .features-header h2 {
        font-size: 1.8rem;
    }

    .feature-decoration {
        width: 110px;
    }

    .contact-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .nav-menu ul {
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .free-trial-banner {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .banner-content {
        gap: 1rem;
    }

    .banner-text {
        text-align: center;
    }

    .free-trial-banner p {
        font-size: 0.95rem;
    }

    .banner-image {
        max-width: 200px;
    }

    .pricing,
    .features,
    .device-setup,
    .contact,
    .payment-methods {
        padding: 30px 15px;
    }

    .facebook-button {
        width: 40px;
        height: 40px;
    }

    .facebook-button::after {
        font-size: 0.8rem;
        bottom: 50px;
    }

    .facebook-button::before {
        bottom: 40px;
    }

    .features-header {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .features-header h2 {
        font-size: 1.3rem;
    }

    .feature-decoration {
        width: 85px;
    }

    .setup-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal-content {
        width: 90%;
        padding: 1.2rem;
        max-height: 80vh;
    }

    .contact-box {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .contact-box h3 {
        font-size: 1.5rem;
    }

    .contact-box p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .tiktok-button {
        width: 40px;
        height: 40px;
    }

    .tiktok-button::after {
        font-size: 0.8rem;
        bottom: 50px;
    }

    .tiktok-button::before {
        bottom: 40px;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
    }

    .connection-badge {
        font-size: 2.5rem;
    }

    .setup-card {
        padding: 1.5rem;
    }

    .setup-card h3 {
        font-size: 1.1rem;
    }

    .firestick-guide {
        padding: 1rem;
    }

    .firestick-guide ol {
        margin-left: 1rem;
    }

    .firestick-guide li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

/* Featured Image Section */
.featured-image {
    padding: 60px 20px;
    background-color: white;
}

.image-container {
    max-width: 600px;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-image {
        padding: 40px 20px;
    }

    .image-container img {
        border-radius: 10px;
    }
}
