* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f3d2e 0%, #1a4a34 20%, #1e3a5f 60%, #2d1b69 90%, #1a0f3d 100%);
    min-height: 100vh;
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(127, 255, 0, 0.3));
}

/* Description Section */
.description {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

.description p {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.7;
    color: #e0e0e0;
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

/* Card Styles */
.card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Clickable Card Styles */
.clickable-card {
    cursor: pointer;
    user-select: none;
}

.clickable-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(127, 255, 0, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(127, 255, 0, 0.1);
}

.clickable-card:active {
    transform: translateY(-4px) scale(1.01);
    transition: all 0.1s ease;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Ensure hero buttons don't overlap on small screens */
@media (max-width: 900px) {
    .btn { width: auto; }
}

/* Green Alien Squad card - special styling */
.green-alien-squad {
    background: rgba(0, 0, 0, 0.4);
}

.green-alien-squad .card-icon {
    background: rgba(127, 255, 0, 0.2);
    color: #7fff00;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(127, 255, 0, 0.3);
}

/* 357webdesign card */
.webdesign .card-icon.number {
    background: linear-gradient(45deg, #7fff00, #00ff88);
    color: #000;
    font-weight: 800;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sketch & Tell card */
.sketch-tell {
    position: relative;
}

.sketch-tell::before {
    content: "Beta - Use at Own Risk";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 165, 0, 0.9);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.sketch-tell .card-icon {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* THE GREEN ALIEN MAN card */
.green-alien-man .card-icon {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TabbyTimeTV card */
.tabby-time {
    position: relative;
}

.tabby-time::before {
    content: "🔴 LIVE";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tabby-time .card-icon {
    background: linear-gradient(45deg, #fa709a, #fee140);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* In Development card */
.in-development .card-icon {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #333;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.card p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #d0d0d0;
}

.card-link {
    color: #7fff00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    color: #00ff88;
}

/* Tools Section */
.tools-section {
    margin-bottom: 5rem;
}

.tools-header {
    text-align: center;
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    background: rgba(127, 255, 0, 0.15);
    color: #7fff00;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(127, 255, 0, 0.3);
}

.tools-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.tools-header p {
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.85;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Tool Card Styles */
.tool-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.tool-card > p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: #d0d0d0;
}

.promotion {
    background: rgba(127, 255, 0, 0.1);
    border: 1px solid rgba(127, 255, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.promotion strong {
    color: #7fff00;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.discount {
    background: linear-gradient(45deg, #7fff00, #00ff88);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.promotion p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    color: #e0e0e0;
}

.tool-link {
    color: #7fff00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tool-link:hover {
    color: #00ff88;
}

/* Footer Styles */
.footer {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #e0e0e0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    color: #d0d0d0;
}

.aliens-link {
    color: #7fff00;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.aliens-link:hover {
    color: #00ff88;
    text-decoration: underline;
}

/* Add to Home Screen Banner */
.add-to-home {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    max-width: 300px;
    display: none;
    z-index: 1000;
}

.add-to-home.show {
    display: block;
    animation: slideIn 0.3s ease;
}

.add-to-home-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.add-to-home-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.add-to-home-text strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #7fff00;
}

.add-to-home-text p {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.4;
    color: #e0e0e0;
}

.close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 3rem;
    }

    .main-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .tool-card {
        padding: 1.5rem;
    }

    .tools-header h2 {
        font-size: 2rem;
    }

    .add-to-home {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2.5rem;
    }

    .description p {
        font-size: 1rem;
    }

    .tools-header h2 {
        font-size: 1.8rem;
    }
} 

/* Card Icon Images */
.card-icon-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.green-alien-squad .card-icon-img {
    background: rgba(127, 255, 0, 0.2);
    border: 2px solid rgba(127, 255, 0, 0.5);
    padding: 8px;
}

.green-alien-man .card-icon-img {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border: 2px solid rgba(79, 172, 254, 0.5);
    padding: 8px;
}

.green-alien-records .card-icon-img {
    background: linear-gradient(45deg, #7fff00, #00ff88);
    border: 2px solid rgba(127, 255, 0, 0.5);
    padding: 6px;
    border-radius: 8px;
}

.tabby-time .card-icon-img {
    background: linear-gradient(45deg, #fa709a, #fee140);
    border: 2px solid rgba(250, 112, 154, 0.5);
    padding: 6px;
    border-radius: 8px;
}

.tipsy-turvy .card-icon-img {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    border: 2px solid rgba(255, 107, 107, 0.5);
    padding: 6px;
    border-radius: 8px;
}

.dino-tea .card-icon-img {
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
    border: 2px solid rgba(255, 182, 159, 0.5);
    padding: 6px;
    border-radius: 8px;
}

.in-development .card-icon-img {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 8px;
}

/* Link Icons */
.link-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    vertical-align: middle;
    filter: brightness(1.2);
}

/* Tool Icon Images */
.tool-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.bolt-new .tool-icon-img {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border: 2px solid rgba(79, 172, 254, 0.5);
    padding: 8px;
    border-radius: 12px;
} 

.hostinger .tool-icon-img {
    background: linear-gradient(45deg, #673de6, #7c3aed);
    border: 2px solid rgba(103, 61, 230, 0.5);
    padding: 8px;
    border-radius: 12px;
}

.iracing .tool-icon-img {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: 2px solid rgba(255, 107, 53, 0.5);
    padding: 8px;
    border-radius: 12px;
}

.lovable .tool-icon-img {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    border: 2px solid rgba(139, 92, 246, 0.5);
    padding: 8px;
    border-radius: 12px;
} 

.visible .tool-icon-img {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border: 2px solid rgba(59, 130, 246, 0.5);
    padding: 8px;
    border-radius: 12px;
} 