/* Website Builder Animation */
.website-builder {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.browser-frame {
    background: var(--secondary-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
}

.browser-header {
    background: var(--primary-bg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
    background: var(--border);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.website-content {
    padding: 24px;
}

.header-block {
    height: 60px;
    background: var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
    width: 100%;
}

.content-blocks {
    display: grid;
    gap: 12px;
    width: 100%;
}

.content-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.content-block {
    height: 40px;
    background: var(--border);
    border-radius: 6px;
    flex: 1;
    min-width: 0;
}

.building {
    animation: buildBlock 2s ease-in-out infinite;
}

@keyframes buildBlock {
    0%, 50% { 
        background: var(--border);
        transform: scale(1);
    }
    25% { 
        background: var(--accent);
        transform: scale(1.02);
    }
}

.code-editor {
    background: #1e1e1e;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    width: 100%;
    overflow: hidden;
}

.code-header {
    color: var(--accent);
    font-size: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

.tech-name {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    min-width: 80px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.code-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 60px;
}

.code-line {
    font-family: inherit;
    font-size: 12px;
    line-height: 1.4;
    color: #e6e6e6;
    min-height: 16px;
    position: relative;
    padding-left: 8px;
    opacity: 1;
    transition: opacity 0.3s ease;
    word-break: break-all;
}

.typing-animation {
    animation: typeWriter 2s ease-out;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--accent);
}

@keyframes typeWriter {
    0% { width: 0; }
    90% { width: 100%; }
    100% { width: 100%; border-right: none; }
}

/* SEO Growth Animation - Mobile Style */
.seo-growth {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 400px;
}

/* Mobile Phone Container */
.mobile-phone {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 8px solid #333;
    border-radius: 32px;
    padding: 24px 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 600px;
    min-height: 600px;
}

.mobile-phone::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #555, #777);
    border-radius: 2px;
}

/* Google Search Interface + Results Combined */
.google-mobile-search {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    height: 540px;
    display: flex;
    flex-direction: column;
}

.google-header {
    background: #ffffff;
    padding: 20px 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e8eaed;
    flex-shrink: 0;
}

.google-logo {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Product Sans', sans-serif;
    letter-spacing: -0.5px;
}

.google-logo .g1 { color: #4285f4; }
.google-logo .o1 { color: #ea4335; }
.google-logo .o2 { color: #fbbc05; }
.google-logo .g2 { color: #4285f4; }
.google-logo .l { color: #34a853; }
.google-logo .e { color: #ea4335; }

.search-input-container {
    padding: 16px 20px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e8eaed;
    position: relative;
    flex-shrink: 0;
}

.search-input {
    width: 100%;
    height: 48px;
    border: 2px solid #dfe1e5;
    border-radius: 24px;
    padding: 0 20px 0 50px;
    font-size: 16px;
    outline: none;
    background: #ffffff;
    color: #202124;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    border-color: #4285f4;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
}

.search-icon {
    position: absolute;
    left: 38px;
    top: 45% !important;
    transform: translateY(-50%);
    font-size: 18px;
    color: #9aa0a6;
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Results */
.mobile-search-results {
    padding: 20px;
    background: #ffffff;
    flex: 1;
    overflow-y: auto;
}

.results-info {
    font-size: 13px;
    color: #70757a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8eaed;
    font-weight: 400;
}

.mobile-results {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-result-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    position: relative;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-result-item:last-child {
    border-bottom: none;
}

.mobile-result-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-result-item.highlight {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08) 0%, rgba(66, 133, 244, 0.04) 100%);
    border: 2px solid rgba(66, 133, 244, 0.2);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    margin: 8px 0;
    box-shadow: 0 4px 16px rgba(66, 133, 244, 0.1);
}

.mobile-result-item.highlight::after {
    content: "1";
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4);
    border: 2px solid white;
}

.mobile-result-url {
    font-size: 13px;
    color: #202124;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.mobile-result-favicon {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(66, 133, 244, 0.3);
}

.mobile-result-title {
    font-size: 18px;
    color: #1a0dab;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.4;
}

.mobile-result-snippet {
    font-size: 14px;
    color: #4d5156;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 8px;
}

/* Rising animation */
.rising {
    animation: riseUp 0.8s ease-out forwards;
}

@keyframes riseUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .seo-growth {
        max-width: 360px;
    }
    
    .mobile-phone {
        height: 550px;
        min-height: 550px;
    }
    
    .google-mobile-search {
        height: 490px;
    }
}

@media (max-width: 1024px) {
    .seo-growth {
        max-width: 340px;
    }
    
    .mobile-phone {
        height: 500px;
        min-height: 500px;
        border: 6px solid #333;
        border-radius: 28px;
        padding: 20px 14px;
    }
    
    .google-mobile-search {
        height: 440px;
        border-radius: 10px;
    }
    
    .google-header {
        padding: 16px 16px 12px;
    }
    
    .google-logo {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .seo-growth {
        max-width: 320px;
    }
    
    .mobile-phone {
        height: 480px;
        min-height: 480px;
        border: 5px solid #333;
        border-radius: 24px;
        padding: 18px 12px;
    }
    
    .mobile-phone::before {
        width: 60px;
        height: 3px;
        top: 8px;
    }
    
    .google-mobile-search {
        height: 420px;
        border-radius: 8px;
    }
    
    .google-header {
        padding: 14px 16px 10px;
    }
    
    .google-logo {
        font-size: 18px;
    }
    
    .search-input-container {
        padding: 12px 16px 16px;
    }
    
    .search-input {
        height: 44px;
        padding: 0 16px 0 44px;
        font-size: 15px;
        border-radius: 22px;
    }
    
    .search-icon {
        left: 30px;
        font-size: 16px;
    }
    
    .mobile-search-results {
        padding: 16px;
    }
    
    .mobile-results {
        gap: 20px;
    }
    
    .mobile-result-item {
        padding: 12px 0;
    }
    
    .mobile-result-item.highlight {
        padding: 16px;
    }
    
    .mobile-result-title {
        font-size: 16px;
    }
    
    .mobile-result-snippet {
        font-size: 13px;
    }
    
    .mobile-result-item.highlight::after {
        width: 24px;
        height: 24px;
        font-size: 11px;
        top: -8px;
        right: -8px;
    }
}

@media (max-width: 600px) {
    .seo-growth {
        max-width: 300px;
    }

    .search-display {
        height: 40px;
        padding: 0 14px 0 40px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    .mobile-phone {
        height: 450px;
        min-height: 450px;
        border: 4px solid #333;
        border-radius: 20px;
        padding: 16px 10px;
    }
    
    .mobile-phone::before {
        width: 50px;
        height: 2px;
        top: 6px;
    }
    
    .google-mobile-search {
        height: 390px;
    }
    
    .google-header {
        padding: 12px 14px 8px;
    }
    
    .google-logo {
        font-size: 16px;
    }
    
    .search-input-container {
        padding: 10px 14px 14px;
    }
    
    .search-input {
        height: 40px;
        padding: 0 14px 0 40px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    .search-icon {
        left: 26px;
        font-size: 14px;
    }
    
    .mobile-search-results {
        padding: 14px;
    }
    
    .mobile-results {
        gap: 16px;
    }
    
    .mobile-result-item {
        padding: 10px 0;
    }
    
    .mobile-result-item.highlight {
        padding: 14px;
    }
    
    .mobile-result-title {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .mobile-result-snippet {
        font-size: 12px;
    }
    
    .mobile-result-url {
        font-size: 12px;
    }
    
    .mobile-result-favicon {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
    
    .mobile-result-item.highlight::after {
        width: 22px;
        height: 22px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
}

@media (max-width: 480px) {
    .seo-growth {
        max-width: 280px;
    }
    
    .mobile-phone {
        height: 420px;
        min-height: 420px;
        border: 3px solid #333;
        border-radius: 18px;
        padding: 14px 8px;
    }
    
    .google-mobile-search {
        height: 360px;
    }
    
    .google-header {
        padding: 10px 12px 6px;
    }
    
    .google-logo {
        font-size: 14px;
    }
    
    .search-input-container {
        padding: 8px 12px 12px;
    }
    
    .search-input {
        height: 36px;
        padding: 0 12px 0 36px;
        font-size: 13px;
        border-radius: 18px;
    }
    
    .search-icon {
        left: 22px;
        top: 16px;
        font-size: 13px;
    }
    
    .mobile-search-results {
        padding: 12px;
    }
    
    .mobile-results {
        gap: 14px;
    }
    
    .mobile-result-item {
        padding: 8px 0;
    }
    
    .mobile-result-item.highlight {
        padding: 12px;
    }
    
    .mobile-result-title {
        font-size: 14px;
    }
    
    .mobile-result-snippet {
        font-size: 11px;
    }
    
    .mobile-result-url {
        font-size: 11px;
    }
    
    .mobile-result-favicon {
        width: 14px;
        height: 14px;
        font-size: 7px;
    }
    
    .mobile-result-item.highlight::after {
        width: 20px;
        height: 20px;
        font-size: 9px;
        top: -5px;
        right: -5px;
    }
}
.ads-dashboard {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    
    /* Prosty kolor tła pasujący do strony */
    background: var(--secondary-bg);
}


.platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.platform-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card.google {
    border-color: rgba(66, 133, 244, 0.3);
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.2);
}

.platform-card.facebook {
    border-color: rgba(24, 119, 242, 0.3);
    box-shadow: 0 8px 32px rgba(24, 119, 242, 0.2);
}

.platform-card.instagram {
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 8px 32px rgba(225, 48, 108, 0.2);
}

.platform-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
}

.platform-card.google .platform-icon {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
}

.platform-card.facebook .platform-icon {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
}

.platform-card.instagram .platform-icon {
    background: linear-gradient(135deg, #e1306c, #c13584, #833ab4);
}

.platform-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.platform-stats {
    font-size: 18px;
    font-weight: 800;
    color: #10b981;
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 1;
}

.search-display {
    width: 100%;
    height: 48px;
    border: 2px solid #dfe1e5;
    border-radius: 24px;
    padding: 12px 20px 12px 50px;
    font-size: 16px;
    background: #ffffff;
    color: #202124 !important;
    font-weight: 400;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: default;
    user-select: none;
    box-sizing: border-box;
    line-height: 1;
}

.search-display:empty::before {
    content: "twój biznes";
    color: #202124;
}


.metrics-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    z-index: 2;
    
    /* Prosty kolor tła */
    background: rgba(0, 0, 0, 0.3);
}

.metric {
    text-align: center;
    position: relative;
}

.metric::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    animation: metricGlow 2s ease-in-out infinite;
}

@keyframes metricGlow {
    0%, 100% { opacity: 0; transform: translateX(-50%) scaleX(0); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1); }
}

.metric-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.metric-number.counting {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Ads Dashboard Animation */
.ads-dashboard {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}


.metrics-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.metric {
    text-align: center;
    position: relative;
}

.metric::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    animation: metricGlow 2s ease-in-out infinite;
}
.metric-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: -0.01em;
}


/* Social Media Animation */
.social-dashboard {
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(219, 39, 119, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.social-dashboard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(219, 39, 119, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    animation: socialPulse 4s ease-in-out infinite;
}

@keyframes socialPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.social-posts {
    position: relative;
    z-index: 2;
}

.social-post {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.social-post.appearing {
    animation: slideInPost 0.8s ease-out forwards;
}

@keyframes slideInPost {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #db2777, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.post-avatar::before {
    content: "👤";
}

.post-info {
    flex: 1;
}

.post-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.post-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.post-content {
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 12px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.post-text {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInText 1s ease-out 0.5s forwards;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.post-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.likes, .shares {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.likes {
    color: #f87171;
}

.shares {
    color: #60a5fa;
}

.follower-growth {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.growth-line {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-bottom: 20px;
    position: relative;
}

.growth-point {
    width: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 4px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

.growth-point:nth-child(1) { height: 30px; }
.growth-point:nth-child(2) { height: 45px; }
.growth-point:nth-child(3) { height: 60px; }

.growth-point.active {
    opacity: 1;
    transform: scale(1);
}

.follower-count {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Mobile responsive dla ads dashboard */
@media (max-width: 768px) {
    .ads-dashboard {
        max-width: 100%;
        height: 350px;
        padding: 16px;
        gap: 24px;
        
        /* To samo tło na mobile */
        background: var(--secondary-bg);
        
        /* Wymuś lepszą wydajność */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        will-change: auto;
    }

    .search-display {
        height: 44px;
        padding: 0 16px 0 44px;
        font-size: 15px;
        border-radius: 22px;
    }

    .platform-cards {
        gap: 12px;
    }

    .platform-card {
        padding: 16px 8px;
    }

    .platform-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .platform-name {
        font-size: 11px;
    }

    .platform-stats {
        font-size: 16px;
    }

    .metrics-panel {
        padding: 16px;
        gap: 12px;
    }

    .metric-number {
        font-size: 20px;
    }

    .metric-label {
        font-size: 11px;
    }

    /* Social Media responsive */
    .social-dashboard {
        max-width: 100%;
        height: 400px;
        padding: 16px;
        gap: 20px;
    }

    .social-post {
        padding: 16px;
        margin-bottom: 12px;
    }

    .post-header {
        gap: 10px;
        margin-bottom: 12px;
    }

    .post-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .post-name {
        font-size: 13px;
    }

    .post-time {
        font-size: 11px;
    }

    .post-content {
        height: 50px;
        margin-bottom: 12px;
        padding: 0 12px;
    }

    .post-text {
        font-size: 12px;
    }

    .post-stats {
        font-size: 13px;
        gap: 16px;
    }

    .follower-growth {
        padding: 20px;
    }

    .growth-line {
        height: 50px;
        margin-bottom: 16px;
    }

    .growth-point {
        width: 6px;
    }

    .growth-point:nth-child(1) { height: 25px; }
    .growth-point:nth-child(2) { height: 35px; }
    .growth-point:nth-child(3) { height: 50px; }

    .follower-count {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ads-dashboard {
        height: 320px;
        padding: 12px;
        gap: 20px;
    }

    .search-icon {
        left: 22px;
        font-size: 13px;
    }

    .search-display {
        height: 36px;
        padding: 0 12px 0 36px;
        font-size: 13px;
        border-radius: 18px;
    }

    .platform-cards {
        gap: 8px;
    }

    .platform-card {
        padding: 12px 6px;
    }

    .platform-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .platform-name {
        font-size: 10px;
    }

    .platform-stats {
        font-size: 14px;
    }

    .metrics-panel {
        padding: 12px;
        gap: 8px;
    }

    .metric-number {
        font-size: 18px;
    }

    .metric-label {
        font-size: 10px;
    }

    /* Social Media małe ekrany */
    .social-dashboard {
        height: 180px;
        padding: 12px;
        gap: 16px;
    }

    .social-post {
        padding: 12px;
        margin-bottom: 10px;
    }

    .post-header {
        gap: 8px;
        margin-bottom: 10px;
    }

    .post-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .post-name {
        font-size: 12px;
    }

    .post-time {
        font-size: 10px;
    }

    .post-content {
        height: 40px;
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .post-text {
        font-size: 11px;
    }

    .post-stats {
        font-size: 12px;
        gap: 12px;
    }

    .follower-growth {
        padding: 16px;
    }

    .growth-line {
        height: 40px;
        margin-bottom: 12px;
    }

    .growth-point {
        width: 5px;
    }

    .growth-point:nth-child(1) { height: 20px; }
    .growth-point:nth-child(2) { height: 30px; }
    .growth-point:nth-child(3) { height: 40px; }

    .follower-count {
        font-size: 14px;
    }
}