/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f5f7; /* Light background */
    color: #333; /* Dark text for contrast */
    padding-top: 80px; /* space for navbar */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content wrapper */
.main-content {
    flex: 1;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff; /* White background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    z-index: 1000;
    height: 65px; /* Increased height */
    border-bottom: 1px solid #e5e7eb; /* Light gray bottom border */
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 40px; /* Slightly bigger logo */
    height: 40px; /* Slightly bigger logo */
    border-radius: 50%; /* Circular logo */
    transition: transform 0.3s ease; /* Restore animation */
}

.logo img:hover {
    transform: rotate(360deg); /* Restore rotating animation */
}

.logo span {
    font-size: 1.6em; /* Slightly bigger text */
    font-weight: bold;
    color: #7c3aed; /* Purple color for logo text */
    text-shadow: none; /* Remove text shadow for clean look */
}

/* Navigation Links Styling */
.navbar nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar nav a {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 25px; /* Increased padding */
    text-decoration: none;
    color: #7c3aed; /* Purple links */
    font-weight: 500;
    font-size: 1.3em; /* Slightly larger font */
}

.navbar nav a:hover {
    color: #5b21b6; /* Darker purple on hover */
}

.navbar nav a.active {
    color: #7c3aed; /* Active link color */
    font-weight: 600;
}

.navbar nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px; /* Slightly thicker underline */
    background-color: #7c3aed;
}

/* Responsive Design for Navbar */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .navbar nav a {
        padding: 0 10px;
        font-size: 1em;
    }
}

@media screen and (max-width: 576px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    .navbar .logo {
        margin-bottom: 10px;
    }

    .navbar nav {
        width: 100%;
        justify-content: center;
    }

    .navbar nav a {
        padding: 5px 10px;
        font-size: 0.9em;
    }
}

/* Container */
.container {
    padding: 40px 20px;
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
}

/* Crypto Addresses Section */
.crypto-addresses-section {
    width: 100%;
    padding: 15px 0;
    background: #38348b; /* Dark blue/purple background as shown in image */
    color: white;
    text-align: center;
}

.crypto-addresses-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.crypto-address {
    display: flex;
    align-items: center;
    gap: 10px;
}

.crypto-address i {
    font-size: 1.2em;
}

.btc-address {
    color: #f59e0b; /* Amber color */
    font-weight: bold;
}

.eth-address {
    color: #3b82f6; /* Blue color */
    font-weight: bold;
}

.ltc-address {
    color: #e2e8f0; /* Light gray/white */
    font-weight: bold;
}

.copy-icon {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.copy-icon:hover {
    opacity: 1;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .crypto-addresses-container {
        flex-direction: column;
        gap: 15px;
    }
}

/* Remove old donate-section styles that are no longer needed */
.donate-section {
    display: none;
}

/* Logos Styling */
.donate-marquee i {
    margin: 0 5px; /* Add space between icons and addresses */
    font-size: 1.2em; /* Adjust icon size */
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
    .donate-marquee {
        font-size: 1em; /* Slightly smaller font on smaller screens */
    }
}

@media (max-width: 480px) {
    .donate-marquee {
        font-size: 0.9em; /* Smaller font on very small screens */
    }
}

.cursor {
    display: inline-block;
    color: #7c3aed; /* Purple cursor */
    font-weight: bold;
    font-size: 1em;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 2.8em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2em;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* Typing Container */
.typing-container {
    font-size: 1.4em;
    font-weight: 600;
    color: #7c3aed;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #7c3aed;
    color: white;
    border: 2px solid #7c3aed;
}

.btn-primary:hover {
    background: #6d28d9;
    border-color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.2);
}

.btn-outline {
    background: transparent;
    color: #7c3aed;
    border: 2px solid #7c3aed;
}

.btn-outline:hover {
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

/* Responsive Hero */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btn {
        width: 80%;
        text-align: center;
    }
}

/* Services Section */
.services-section {
    padding: 60px 0;
}

.services-heading {
    text-align: center;
    margin-bottom: 50px;
}

.services-title {
    font-size: 2.4em;
    color: #1e293b;
    margin-bottom: 15px;
}

.services-subtitle {
    font-size: 1.1em;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Message Below Subtitle */
p.message {
    font-size: 1.1em;
    margin-bottom: 28px;
    color: #4b5563; /* Dark gray text */
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #ffffff; /* White background */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    transition: box-shadow 0.3s ease;
    border: 1px solid #e5e7eb; /* Light border */
}

/* Hover Effect */
p.message:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

/* Offer Cards - Improved Layout */
.offers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    width: calc(20% - 20px);
    min-width: 250px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(229, 231, 235, 0.9);
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Recommended Card */
.card.recommended {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.08);
    position: relative;
}

.recommended-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #7c3aed, #a855f7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(124, 58, 237, 0.2);
}

.card.recommended:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.12);
}

.card .service-icon {
    font-size: 24px;
    color: #7c3aed;
    margin-bottom: 20px;
    display: block;
}

/* Card Title */
.card h2 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.4;
}

/* Card Description */
.card p {
    color: #4b5563;
    font-size: 0.9em;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.price-container {
    margin-top: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.starting-text {
    color: #6b7280;
    font-size: 0.9em;
    margin-right: 8px;
}

.price {
    font-weight: 700;
    color: #10b981; /* Green color for FREE prices */
    font-size: 1.3em;
}

.price.paid {
    color: #7c3aed; /* Purple for paid services */
}

.price.not-supported {
    color: #ef4444; /* Red for not supported services */
    font-weight: 700;
}

/* Request Button - Outline Style */
.request-button {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: #7c3aed;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border: 1.5px solid #7c3aed;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.request-button:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Card Layout */
@media (max-width: 1400px) {
    .card {
        width: calc(25% - 20px);
    }
}

@media (max-width: 1200px) {
    .card {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .card {
        width: calc(50% - 20px);
    }
    
    .hero-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .offers {
        gap: 15px;
    }
    
    .card {
        width: calc(50% - 15px);
        padding: 20px;
        min-height: 350px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .card h2 {
        font-size: 1.1em;
    }
    
    .card p {
        font-size: 0.9em;
    }
}

@media (max-width: 576px) {
    .card {
        width: 100%;
        min-height: auto;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1em;
    }
}

/* Contact Section - Updated for New Design */
.contact-section {
    background: #f9fafb;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.contact-heading {
    margin-bottom: 50px;
}

.contact-title {
    font-size: 2.5em;
    color: #1e293b;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.1em;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

.contact-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.contact-method {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 2.5em;
    color: #7c3aed;
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1e293b;
}

.contact-method p {
    font-size: 1em;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    padding: 10px 24px;
    background: #7c3aed;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.contact-button:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.2);
}

.contact-button i {
    margin-right: 8px;
}

/* Responsive Contact Methods */
@media (max-width: 992px) {
    .contact-methods {
        gap: 30px;
    }
    
    .contact-method {
        width: calc(50% - 15px);
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 2.2em;
    }
    
    .contact-method {
        width: 100%;
        max-width: 340px;
        padding: 25px;
    }
}

/* Footer */
.footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 30px 0;
    text-align: center;
}

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

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-info {
    text-align: left;
    flex: 1;
    min-width: 300px;
    margin-bottom: 20px;
}

.footer-info h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #f8fafc;
}

.footer-info p {
    font-size: 1em;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 400px;
}

.footer-crypto {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    gap: 30px;
}

.crypto-item {
    flex: 1;
    min-width: 200px;
    margin-bottom: 15px;
}

.crypto-item h4 {
    font-size: 1.1em;
    color: #f8fafc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.crypto-item h4 i {
    margin-right: 10px;
    font-size: 1.2em;
}

.crypto-address {
    color: #cbd5e1;
    font-size: 0.85em;
    word-break: break-all;
    display: block;
}

.btc-color {
    color: #f7931a;
}

.eth-color {
    color: #627eea;
}

.ltc-color {
    color: #345d9d;
}

.footer-divider {
    height: 1px;
    background: rgba(203, 213, 225, 0.2);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: #cbd5e1;
    font-size: 0.9em;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f8fafc;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
    }
    
    .footer-info, .footer-crypto {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Ticket Section Highlight Effect */
.ticket-section {
    transition: background-color 0.5s ease;
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    margin-top: 40px;
}

.ticket-section h2 {
    font-size: 2.2em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 600;
}

.ticket-section p {
    font-size: 1.1em;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.discord-button {
    display: inline-block;
    padding: 14px 30px;
    background: #7c3aed;
    color: white;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 8px;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(124, 58, 237, 0.25);
}

.discord-button:hover {
    background: #6d28d9;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(109, 40, 217, 0.3);
}

.telegram-contact {
    margin-top: 15px;
    font-size: 1em;
    color: #4b5563;
}

.telegram-contact a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.telegram-contact a:hover {
    color: #6d28d9;
    text-decoration: underline;
}

.ticket-section.highlight {
    background-color: rgba(124, 58, 237, 0.1);
}

/* Responsive Ticket Section */
@media (max-width: 768px) {
    .ticket-section {
        padding: 40px 15px;
    }
    
    .ticket-section h2 {
        font-size: 1.8em;
    }
    
    .ticket-section p {
        font-size: 1em;
    }
    
    .discord-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 90%;
        max-width: 300px;
    }
}

/* Copyright Footer */
.copyright-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    border-top: 1px solid rgba(203, 213, 225, 0.1);
}

.copyright-footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .copyright-footer {
        padding: 12px 20px;
        font-size: 0.85em;
    }
}

/* Get in Touch Section */
.get-in-touch-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f5f7 0%, #e8e8ec 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.5s ease;
}

.get-in-touch-section.highlight-section {
    background: rgba(124, 58, 237, 0.05);
}

.get-in-touch-title {
    font-size: 2.5em;
    color: #202052;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.get-in-touch-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #585878;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.contact-channels {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-channel {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 25px 30px;
    width: 320px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contact-channel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.channel-icon {
    font-size: 2.5em;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.discord-icon {
    background: #5865F2;
}

.telegram-icon {
    background: #0088cc;
}

.channel-icon-rss {
    background: #f26522;
}

.contact-channel h3 {
    font-size: 1.3em;
    color: #202052;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-channel p {
    color: #585878;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 42px; /* Ensures consistent height */
}

.channel-button {
    display: inline-block;
    padding: 10px 0;
    background: #5f45f2;
    color: white;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    font-size: 0.95em;
}

.channel-button:hover {
    background: #4c37d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(95, 69, 242, 0.25);
}

.channel-button i {
    margin-right: 8px;
}

/* Responsive Get in Touch Section */
@media (max-width: 992px) {
    .contact-channels {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .get-in-touch-section {
        padding: 60px 0;
    }
    
    .get-in-touch-title {
        font-size: 2.2em;
    }
    
    .get-in-touch-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .contact-channel {
        width: 100%;
        max-width: 320px;
    }
}