/* Bookmarklet Pages Specific Styles */

.bookmarklet-page {
    max-width: 1200px;
    margin: 0 auto;
}

/* Back Link */
.back-link {
    margin-bottom: 30px;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.back-link a:hover {
    color: #00ff9d;
    background: rgba(0, 255, 157, 0.1);
    transform: translateX(-5px);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
}

.platform-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(0, 255, 157, 0.6));
    animation: float 3s ease-in-out infinite;
}

.platform-icon.axiom-theme {
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.6));
}

.platform-icon.padre-theme {
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.6));
}

.platform-icon.bullx-theme {
    filter: drop-shadow(0 0 30px rgba(255, 193, 7, 0.6));
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto;
}

/* Bookmarklet Section */
.bookmarklet-section {
    text-align: center;
    padding: 80px 20px;
    margin: 60px 0;
    background: linear-gradient(145deg, rgba(0, 255, 157, 0.05), rgba(0, 212, 255, 0.05));
    border: 2px solid rgba(0, 255, 157, 0.3);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.bookmarklet-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bookmarklet-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00ff9d;
    position: relative;
    z-index: 1;
}

.instruction-text {
    font-size: 18px;
    color: #c0c0c0;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.bookmarklet-container {
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

/* Bookmarklet Button */
.bookmarklet {
    display: inline-block;
    padding: 24px 48px;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
    color: #000;
    text-decoration: none;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    cursor: move;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 40px rgba(0, 255, 157, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.bookmarklet::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.bookmarklet:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 255, 157, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.bookmarklet:active {
    transform: scale(0.98);
}

/* Theme Variants */
.bookmarklet.axiom-theme {
    background: linear-gradient(135deg, #8a2be2 0%, #9d4edd 100%);
    box-shadow: 
        0 10px 40px rgba(138, 43, 226, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bookmarklet.axiom-theme:hover {
    box-shadow: 
        0 20px 60px rgba(138, 43, 226, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.bookmarklet.padre-theme {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    box-shadow: 
        0 10px 40px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bookmarklet.padre-theme:hover {
    box-shadow: 
        0 20px 60px rgba(255, 107, 53, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.bookmarklet.bullx-theme {
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    box-shadow: 
        0 10px 40px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bookmarklet.bullx-theme:hover {
    box-shadow: 
        0 20px 60px rgba(255, 193, 7, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hint-text {
    font-size: 14px;
    color: #888;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Instructions Section */
.instructions-section {
    margin: 80px 0;
    padding: 0 20px;
}

.instructions-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.instruction-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.instruction-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(10, 15, 30, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.instruction-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #00ff9d;
}

.instruction-list {
    padding-left: 20px;
}

.instruction-list > li {
    font-size: 16px;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.instruction-list strong {
    color: #fff;
    font-weight: 600;
}

.instruction-list ul {
    margin-top: 10px;
    padding-left: 20px;
}

.instruction-list ul li {
    margin-bottom: 8px;
    color: #a0a0a0;
    font-size: 15px;
}

kbd {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-family: monospace;
    font-size: 13px;
    color: #00ff9d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    padding: 2px 8px;
    background: rgba(0, 255, 157, 0.2);
    border-radius: 6px;
    color: #00ff9d;
    font-weight: 600;
}

.highlight.axiom {
    background: rgba(138, 43, 226, 0.2);
    color: #9d4edd;
}

.highlight.padre {
    background: rgba(255, 107, 53, 0.2);
    color: #ff8c42;
}

.highlight.bullx {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

/* Usage Section */
.usage-section {
    margin: 80px 0;
    padding: 0 20px;
}

.usage-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.usage-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.usage-step:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.usage-step .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.2), rgba(0, 212, 255, 0.2));
    border: 2px solid rgba(0, 255, 157, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #00ff9d;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.usage-step .step-number.axiom-theme {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(157, 78, 221, 0.2));
    border-color: rgba(138, 43, 226, 0.5);
    color: #9d4edd;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.usage-step .step-number.padre-theme {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 66, 0.2));
    border-color: rgba(255, 107, 53, 0.5);
    color: #ff8c42;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.usage-step .step-number.bullx-theme {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 235, 59, 0.2));
    border-color: rgba(255, 193, 7, 0.5);
    color: #ffc107;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.usage-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.usage-step p {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
}

.usage-step a {
    color: #00ff9d;
    text-decoration: none;
}

.usage-step a:hover {
    text-decoration: underline;
}

/* Features Section */
.features-section {
    margin: 80px 0;
    padding: 60px 20px;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.features-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.5));
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00ff9d;
}

.feature-item p {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 255, 157, 0.6);
}

.cta-button.axiom-theme {
    background: linear-gradient(135deg, #8a2be2 0%, #9d4edd 100%);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.4);
}

.cta-button.axiom-theme:hover {
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.6);
}

.cta-button.padre-theme {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.cta-button.padre-theme:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.6);
}

.cta-button.bullx-theme {
    background: linear-gradient(135deg, #ffc107 0%, #ffeb3b 100%);
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.4);
}

.cta-button.bullx-theme:hover {
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.6);
}

/* Notice Box */
.notice-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(145deg, rgba(255, 193, 7, 0.08), rgba(255, 152, 0, 0.05));
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
    padding: 24px 30px;
    margin: 40px 20px;
    backdrop-filter: blur(10px);
}

.notice-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 10px;
}

.notice-text {
    font-size: 15px;
    line-height: 1.7;
    color: #c0c0c0;
    margin: 0;
}

.notice-text strong {
    color: #ffc107;
    font-weight: 600;
}

/* Footer Links */
.footer-links {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

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

.footer-links a:hover {
    color: #00ff9d;
    text-decoration: underline;
}

.footer-links span {
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .platform-icon {
        font-size: 60px;
    }
    
    .bookmarklet {
        font-size: 20px;
        padding: 20px 36px;
    }
    
    .instruction-cards {
        grid-template-columns: 1fr;
    }
    
    .usage-steps {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
}






