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

:root {
    --primary-color: #8b5fbf;
    --primary-hover: #7c54b3;
    --secondary-color: #ff6b9d;
    --accent-color: #4ecdc4;
    --success-color: #51cf66;
    --warning-color: #ffd43b;
    --error-color: #ff6b6b;

    --bg-primary: #1a1625;
    --bg-secondary: #2d2438;
    --bg-tertiary: #3d3050;
    --bg-card: #342c47;
    --bg-hover: #4a3f5c;

    --text-primary: #ffffff;
    --text-secondary: #e1d5f0;
    --text-tertiary: #c4b5d9;
    --text-muted: #9b8bb0;

    --border-color: #4a3f5c;
    --border-hover: #5e5373;

    --gradient-primary: linear-gradient(135deg, #8b5fbf 0%, #ff6b9d 100%);
    --gradient-secondary: linear-gradient(135deg, #4ecdc4 0%, #51cf66 100%);
    --gradient-tertiary: linear-gradient(135deg, #ffd43b 0%, #ff6b6b 100%);
    --gradient-cute: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);

    --shadow-sm: 0 1px 3px 0 rgba(139, 95, 191, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(139, 95, 191, 0.15), 0 2px 4px -1px rgba(139, 95, 191, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(139, 95, 191, 0.2), 0 4px 6px -2px rgba(139, 95, 191, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(139, 95, 191, 0.25), 0 10px 10px -5px rgba(139, 95, 191, 0.1);
    --shadow-cute: 0 8px 32px rgba(255, 107, 157, 0.3);

    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 20px;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(139, 95, 191, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at center, rgba(255, 212, 59, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '🌸 💕 🎀 🦋 💖 🌈 ✨ 💝 🧸 🎪 🌙 ☁️ 🎨 🦄 💫 🌟 🎵 🎊 💐 🌺 🎂 🍰 🧁 🍭 🦴 🎀 💎 👑 🌸 💕 🎀 🦋 💖 🌈 ✨ 💝 🧸 🎪 🌙 ☁️ 🎨 🦄 💫 🌟 🎵 🎊 💐 🌺';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 1.8rem;
    color: rgba(255, 182, 193, 0.08);
    white-space: pre-wrap;
    word-spacing: 80px;
    line-height: 150px;
    pointer-events: none;
    z-index: -1;
    animation: gentleFloating 25s linear infinite;
    overflow: hidden;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    animation: floatShape linear infinite;
    opacity: 0.15;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 24px 0 24px;
    min-height: 100vh;
}

/* Header Styles */
.header {
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out;
}

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

.logo-section {
    margin-bottom: 32px;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 8px;
}

.brand-decoration {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0.7;
}

.brand-decoration.left {
    animation: floatLeft 3s ease-in-out infinite;
}

.brand-decoration.right {
    animation: floatRight 3s ease-in-out infinite;
}

.brand-decoration i {
    font-size: 1.2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.3));
    transition: all 0.3s ease;
}

.brand-decoration i:nth-child(1) {
    animation-delay: 0s;
    color: #fbbf24;
}

.brand-decoration i:nth-child(2) {
    animation-delay: 0.5s;
    color: #ec4899;
}

.brand-decoration i:nth-child(3) {
    animation-delay: 1s;
    color: #06b6d4;
}

.brand-decoration:hover i {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6));
}

.brand-name {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    position: relative;
}

.brand-name::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 0.4em;
    animation: twinkle 2s ease-in-out infinite;
}

.brand-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.tagline-sub {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    font-weight: 300;
    margin-top: 8px;
    display: block;
    font-style: italic;
}

.status-indicators {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
    margin-bottom: 4px;
}

.status-dot.stable { background-color: var(--success-color); }
.status-dot.fast { background-color: var(--accent-color); }
.status-dot.secure { background-color: var(--warning-color); }

.status-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.indicator small {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-cute);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

.action-btn {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn::after {
    content: '✨';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--gradient-cute);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-cute);
    padding-right: 35px;
}

.action-btn:hover::after {
    right: 10px;
    opacity: 1;
}

/* Main Content Grid */
.main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

/* Feature Card Styles */
.feature-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cute);
}

.feature-card::after {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: sparkle 4s ease-in-out infinite;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-cute);
    border-color: var(--secondary-color);
}

.feature-card:hover::after {
    opacity: 0.8;
    animation-duration: 1s;
}

.card-header {
    text-align: center;
    margin-bottom: 32px;
}

.card-icon.cute {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-cute);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: white;
    position: relative;
    box-shadow: var(--shadow-cute);
    animation: cuteFloat 3s ease-in-out infinite;
}

.card-icon.cute:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4);
}

.icon-decoration {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Model Support Card */
.model-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.model-category h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: 600;
}

.model-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.model-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.model-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
}

.model-item img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.model-item span:first-of-type {
    flex: 1;
    color: var(--text-primary);
    font-weight: 500;
}

.model-status {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
}

.model-status.available {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.quick-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* API Integration Card */
.integration-steps {
    margin-bottom: 32px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Expertise Section */
.expertise-section {
    margin: 32px 0;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.expertise-header {
    text-align: center;
    margin-bottom: 24px;
}

.expertise-header h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.expertise-header p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.expertise-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.expertise-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid var(--bg-secondary);
    z-index: 1;
    flex-shrink: 0;
}

.timeline-dot.past {
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.4);
}

.timeline-dot.current {
    background: var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
    flex: 1;
    padding: 8px 0;
}

.timeline-content h5 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
}

.code-example {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.language-tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-tertiary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active,
.tab:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.code-content {
    position: relative;
}

.code-block {
    display: none;
    margin: 0;
    padding: 24px;
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    overflow-x: auto;
}

.code-block.active {
    display: block;
}

.code-block code {
    color: var(--text-secondary);
}

/* Pricing & Features Card */
.pricing-highlights {
    margin-bottom: 32px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.price-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-list h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--success-color);
}

.feature-item i {
    color: var(--success-color);
    font-size: 1rem;
}

.feature-item span {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* API Endpoints and Models */
.api-endpoints {
    margin-bottom: 32px;
}

.endpoint-section {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.endpoint-section h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: 600;
}

.endpoint-item {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.endpoint-item strong {
    color: var(--text-primary);
    margin-right: 8px;
}

.endpoint-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.endpoint-item a:hover {
    text-decoration: underline;
}

.supported-models h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: 600;
}

.models-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.model-tag {
    padding: 6px 12px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.model-tag:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.supported-platforms h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: 600;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.platform-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.platform-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.platform-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

/* Documentation & Support Card */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.doc-item {
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.doc-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.doc-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.doc-item h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.doc-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.doc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.doc-link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--bg-hover);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.contact-item strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-item span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 4px;
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '💌';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--gradient-cute);
    color: white;
    transform: translateY(-1px) scale(1.05);
    padding-left: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.contact-link:hover::before {
    left: 6px;
    opacity: 1;
}

/* Footer Styles */
.footer {
    margin-top: 64px;
    padding: 48px 0 32px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    border: 2px solid var(--border-color);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cute);
}

.footer::after {
    content: '🌈 🎆 ✨';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.1rem;
    opacity: 0.4;
    animation: sparkle 3s ease-in-out infinite;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.footer-info {
    margin-bottom: 24px;
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-info a {
    color: var(--secondary-color);
    text-decoration: none;
    position: relative;
}

.footer-info a::after {
    content: '🔗';
    margin-left: 4px;
    font-size: 0.8em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-info a:hover::after {
    opacity: 1;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-tagline strong {
    color: var(--text-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes floatLeft {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-8px) translateX(-4px);
    }
    50% {
        transform: translateY(-4px) translateX(-8px);
    }
    75% {
        transform: translateY(-12px) translateX(-2px);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-8px) translateX(4px);
    }
    50% {
        transform: translateY(-4px) translateX(8px);
    }
    75% {
        transform: translateY(-12px) translateX(2px);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.7;
        transform: rotate(0deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: rotate(180deg) scale(1.2);
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-5px) scale(1.1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
    }
    75% {
        transform: translateY(-7px) scale(1.15);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

@keyframes gentleFloating {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
    }
}

@keyframes floatShape {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.25;
        transform: translateY(50vh) translateX(100px) rotate(180deg) scale(1.1);
    }
    100% {
        transform: translateY(-100vh) translateX(200px) rotate(360deg) scale(0.9);
        opacity: 0;
    }
}

@keyframes cuteGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 5px currentColor);
    }
    50% {
        opacity: 1;
        transform: scale(1.3) rotate(15deg);
        filter: drop-shadow(0 0 15px currentColor);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 64px 16px 0 16px;
    }

    .brand-wrapper {
        gap: 16px;
    }

    .brand-decoration {
        gap: 8px;
    }

    .brand-decoration i {
        font-size: 1rem;
    }

    .brand-name::after {
        right: -15px;
        top: -8px;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 24px;
    }

    .status-indicators {
        gap: 24px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 200px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .docs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .contact-item {
        padding: 16px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 64px 12px 0 12px;
    }

    .feature-card {
        padding: 20px;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .brand-tagline {
        font-size: 1rem;
    }

    .status-indicators {
        flex-direction: column;
        gap: 16px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* Custom scrollbar for code blocks */
.code-block::-webkit-scrollbar {
    height: 8px;
}

.code-block::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.code-block::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.code-block::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}

/* Print styles */
@media print {
    body::before {
        display: none;
    }

    .feature-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .btn {
        border: 1px solid #ccc;
    }
}