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

/* Скрываем картинку счетчика LiveInternet (но браузер её загружает!) */
#licnt811C {
    opacity: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #2a2a2a;
    color: #e0e0e0;
    min-height: 100vh;
    padding: 20px;
}

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

/* Заголовок */
header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.3em;
    opacity: 0.9;
}

/* Desktop - показываем длинный текст */
.header-mobile {
    display: none;
}

.header-desktop {
    display: block;
}

/* Development Warning */
.dev-warning {
    text-align: center;
    margin: 20px 0 30px 0;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    animation: pulseWarning 2s ease-in-out infinite;
}

.dev-warning-text {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.8);
    display: inline-block;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes pulseWarning {
    0%, 100% {
        background: rgba(255, 0, 0, 0.05);
        border-color: rgba(255, 0, 0, 0.2);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
    }
    50% {
        background: rgba(255, 0, 0, 0.15);
        border-color: rgba(255, 0, 0, 0.5);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
}

@keyframes textPulse {
    0%, 100% {
        color: #ff3333;
        text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
        transform: scale(1);
    }
    50% {
        color: #ff6666;
        text-shadow: 0 0 20px rgba(255, 51, 51, 1);
        transform: scale(1.05);
    }
}

/* Визуализация Tesla */
.tesla-visualizer {
    background: #111;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    display: flex;
    gap: 30px;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    min-height: 380px;
}

.tesla-front {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.tesla-rear {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#teslaFrontCanvas,
#teslaRearCanvas {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Режим редактирования позиций огней */
.edit-lights-section {
    margin-bottom: 30px;
    text-align: center;
}

.edit-panel {
    margin-top: 20px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.edit-panel-header h3 {
    color: #667eea;
    margin-bottom: 10px;
}

.edit-panel-header p {
    color: #e0e0e0;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.edit-panel-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tesla-visualizer.edit-mode {
    border: 3px solid #667eea;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

.tesla-visualizer.edit-mode canvas {
    cursor: crosshair;
}

/* Загрузка готового шоу */
.load-show-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.load-show-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.load-show-label {
    color: #e0e0e0;
    font-size: 1.1em;
    font-weight: 500;
}

.secondary-button {
    padding: 12px 25px;
    font-size: 1em;
    border: 2px solid #667eea;
    border-radius: 10px;
    background: transparent;
    color: #667eea;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Главные кнопки */
.main-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: white;
    color: #667eea;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.big-button {
    width: 100%;
    padding: 25px 30px;
    font-size: 1.3em;
    border: 2px solid #667eea;
    border-radius: 15px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.big-button:hover:not(:disabled) {
    transform: translateY(-5px);
    background: rgba(102, 126, 234, 0.2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.big-button:active:not(:disabled) {
    transform: translateY(-2px);
}

.big-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.big-button.loading {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.3) 0%, rgba(102, 126, 234, 0.1) 50%, rgba(102, 126, 234, 0.3) 100%);
    background-size: 200% 100%;
    animation: loadingAnimation 1.5s ease-in-out infinite;
    opacity: 1;
}

.big-button.success {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    color: #22c55e;
    opacity: 1;
}

.big-button.error {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
    opacity: 1;
}

@keyframes loadingAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.info-text {
    margin-top: 10px;
    color: white;
    font-size: 0.9em;
    min-height: 20px;
}

.generation-options {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.options-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.options-section h4 {
    margin: 0 0 5px 0;
    color: #667eea;
    font-size: 0.95em;
    font-weight: 600;
}

#effectsOptions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    color: #667eea;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-label span {
    user-select: none;
}

/* Плеер */
.player-section {
    background: #111;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.player-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.player-button {
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 10px;
    background: #667eea;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.player-button:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.volume-icon {
    font-size: 1.3em;
}

.volume-slider {
    width: 120px;
    height: 6px;
    background: #333;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #667eea;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider:hover::-webkit-slider-thumb {
    background: #764ba2;
    transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #667eea;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.volume-slider:hover::-moz-range-thumb {
    background: #764ba2;
    transform: scale(1.2);
}

.volume-value {
    min-width: 45px;
    font-size: 0.9em;
    color: #e0e0e0;
    font-weight: bold;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 50px;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-bar:hover {
    border-color: #667eea;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.1s linear;
    width: 0%;
}

.progress-time {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1em;
    font-weight: bold;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

/* Продвинутый режим */
.advanced-toggle {
    text-align: center;
    margin-bottom: 20px;
}

#advancedModeBtn {
    padding: 15px 30px;
    font-size: 1em;
    border: 2px solid white;
    border-radius: 10px;
    background: transparent;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

#advancedModeBtn:hover {
    background: white;
    color: #667eea;
}

.advanced-section {
    background: #111;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.timeline-editor,
.effects-library {
    margin-bottom: 30px;
}

.timeline-editor h3,
.effects-library h3 {
    margin-bottom: 15px;
    color: #667eea;
}

#timeline {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    min-height: 200px;
    border: 1px solid #333;
}

#effectsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.effect-card {
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #333;
}

.effect-card:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: #667eea;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Timeline редактор */
.timeline-container {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #222;
    border-bottom: 2px solid #333;
}

.timeline-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    background: #667eea;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.timeline-btn:hover {
    background: #5568d3;
}

.timeline-tracks {
    overflow-x: auto;
    max-height: 400px;
    overflow-y: auto;
}

.track {
    display: flex;
    border-bottom: 1px solid #333;
}

.track-name {
    min-width: 180px;
    padding: 15px;
    background: #222;
    font-weight: bold;
    font-size: 0.9em;
    border-right: 2px solid #333;
    color: #e0e0e0;
}

.track-content {
    flex: 1;
    position: relative;
    min-height: 50px;
    background: #1a1a1a;
    cursor: crosshair;
}

.keyframe {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.keyframe:hover {
    transform: translateY(-50%) scale(1.5);
    background: #764ba2;
}

.timeline-ruler {
    display: flex;
    position: relative;
    height: 30px;
    background: #222;
    border-top: 2px solid #333;
    padding-left: 180px;
}

.ruler-marker {
    position: absolute;
    border-left: 1px solid #444;
    height: 100%;
    font-size: 0.8em;
    padding-left: 5px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    /* Mobile - показываем короткий текст */
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
        font-size: 1.8em;
        font-weight: bold;
    }

    /* Development warning - адаптация для мобильных */
    .dev-warning {
        margin: 15px 0 20px 0;
        padding: 10px;
    }

    .dev-warning-text {
        font-size: 1.2em;
    }

    header h1 {
        font-size: 2em;
    }

    .main-controls {
        flex-direction: column;
    }

    .step {
        min-width: 100%;
    }

    .tesla-visualizer {
        flex-direction: column;
        align-items: center;
    }

    .tesla-front,
    .tesla-rear {
        flex: 1 1 auto;
        width: 100%;
    }

    #teslaRearCanvas {
        max-width: 100%;
    }

    .track-name {
        min-width: 120px;
        font-size: 0.8em;
    }

    .timeline-ruler {
        padding-left: 120px;
    }
}

/* Hamburger Menu Button */
.hamburger-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.2);
    border: 2px solid #667eea;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(102, 126, 234, 0.4);
    transform: scale(1.05);
}

.hamburger-btn:active {
    transform: scale(0.95);
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: #667eea;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Menu Modal */
.menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.menu-modal-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid #667eea;
    box-shadow: 0 10px 50px rgba(102, 126, 234, 0.5);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.menu-modal.active .menu-modal-content {
    transform: scale(1);
}

.close-menu-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #667eea;
    font-size: 2.5em;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    color: #764ba2;
    transform: rotate(90deg);
}

.menu-nav h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 2em;
}

/* Menu Items (Accordion style) */
.menu-item {
    margin-bottom: 15px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: rgba(102, 126, 234, 0.6);
}

.menu-item-header {
    width: 100%;
    padding: 15px 20px;
    background: rgba(102, 126, 234, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.menu-item-header:hover {
    background: rgba(102, 126, 234, 0.2);
}

.menu-item-title {
    color: #e0e0e0;
    font-size: 1.2em;
    font-weight: 600;
    text-align: left;
}

.menu-item-icon {
    color: #667eea;
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.menu-item.active .menu-item-icon {
    transform: rotate(45deg);
}

.menu-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.menu-item.active .menu-item-content {
    max-height: 3000px;
    overflow-y: auto;
}

.menu-item-content p {
    padding: 10px 20px;
    margin: 0;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95em;
}

.menu-item-content p:last-child {
    padding-bottom: 20px;
}

.menu-item-content p strong {
    color: #667eea;
}

.menu-item-content p em {
    color: #999;
    font-size: 0.9em;
}

/* Buy Me a Coffee section */
.buy-coffee-section {
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
    border-top: 2px solid rgba(102, 126, 234, 0.3);
}

.buy-coffee-section p {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Mobile adjustments for hamburger */
@media (max-width: 768px) {
    .hamburger-btn {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .hamburger-line {
        width: 25px;
    }

    .menu-modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .menu-nav h2 {
        font-size: 1.5em;
    }
}

/* Share Button (left side) */
.share-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.2);
    border: 2px solid #667eea;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(102, 126, 234, 0.4);
    transform: scale(1.05);
}

.share-btn:active {
    transform: scale(0.95);
}

.share-btn svg {
    transition: transform 0.3s ease;
}

.share-btn:hover svg {
    transform: scale(1.1);
}

/* Share Modal */
.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.share-modal-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid #667eea;
    box-shadow: 0 10px 50px rgba(102, 126, 234, 0.5);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.share-modal.active .share-modal-content {
    transform: scale(1);
}

.close-share-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #667eea;
    font-size: 2.5em;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-share-btn:hover {
    color: #764ba2;
    transform: rotate(90deg);
}

.share-modal-content h2 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 2em;
    text-align: center;
}

.share-description {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.share-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.share-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-social-btn svg {
    width: 24px;
    height: 24px;
}

/* Social network colors */
.share-social-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-social-btn.facebook:hover {
    background: #145dbf;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.share-social-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-social-btn.twitter:hover {
    background: #1a8cd8;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.share-social-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-social-btn.linkedin:hover {
    background: #005e93;
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.share-social-btn.reddit {
    background: #ff4500;
    color: white;
}

.share-social-btn.reddit:hover {
    background: #cc3700;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.share-social-btn.telegram {
    background: #0088cc;
    color: white;
}

.share-social-btn.telegram:hover {
    background: #006699;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.share-social-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-social-btn.whatsapp:hover {
    background: #1da851;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.share-social-btn.email {
    background: #667eea;
    color: white;
}

.share-social-btn.email:hover {
    background: #5568d3;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.share-social-btn.copy-link {
    background: #2d3748;
    color: white;
    border: 2px solid #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-social-btn.copy-link:hover {
    background: #1a202c;
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.share-social-btn.copy-link.copied {
    background: #22c55e;
    border-color: #22c55e;
}

.share-social-btn.copy-link.copied:hover {
    background: #16a34a;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

/* Mobile adjustments for share button */
@media (max-width: 768px) {
    .share-btn {
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
    }

    .share-modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .share-modal-content h2 {
        font-size: 1.5em;
    }

    .share-buttons {
        grid-template-columns: 1fr;
    }
}
