* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3eeff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-top {
    padding: 15px 0;
}

.logo h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #ffe066;
    transform: scale(1.05);
}

/* Categories Styles */
.categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.category-item {
    text-align: center;
    cursor: pointer;
    padding: 15px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-item:hover {
    border-color: #ff6b6b;
    background: linear-gradient(145deg, #fff6f6 0%, #ffe6e6 100%);
    transform: translateY(-5px) scale(1.02);
}

.category-item i {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    margin-bottom: 10px;
}

/* Content Area Styles */
.content-area {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/*.greeting-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}*/

.greeting-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.greeting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.audio-player {
    margin-bottom: 15px;
}

.audio-player audio {
    width: 100%;
    border-radius: 25px;
    background: #f8f9fa;
}

.audio-player audio::-webkit-media-controls-panel {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.order-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: linear-gradient(135deg, #ff8e8e 0%, #ff6b6b 100%);
    transform: translateY(-2px);
}

/* Guarantees Styles */
.guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.guarantee-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.guarantee-item i {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    margin-bottom: 15px;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: #fff;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.footer-column ul li a:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .categories {
        flex-direction: column;
    }
    
    .guarantee-item {
        margin-bottom: 20px;
    }
}

/* Добавление анимации для всех интерактивных элементов */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.category-item:hover i,
.guarantee-item:hover i {
    animation: pulse 1s infinite;
}

/* Добавление декоративных элементов */
.greeting-card::before {
    content: '🎉';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 24px;
    animation: pulse 2s infinite;
}