/* Main Container Styles */
.random-month-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

/* Hero Section */
.random-month-hero {
    position: relative;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.random-month-hero-content {
    position: relative;
    z-index: 2;
}

.random-month-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.random-month-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6;
}

.random-month-hero-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 1;
}

/* Generator Section */
.random-month-generator {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.random-month-input-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.random-month-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.random-month-generate-btn {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.random-month-generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.random-month-generate-btn:active {
    transform: translateY(0);
}

.random-month-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.random-month-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.random-month-option input {
    width: 18px;
    height: 18px;
    accent-color: #6e8efb;
}

.random-month-output-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px dashed #ddd;
}

.random-month-result-container {
    text-align: center;
}

.random-month-result {
    font-size: 5rem;
    font-weight: 700;
    color: #6e8efb;
    line-height: 1;
    margin-bottom: 0.5rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.random-month-name {
    font-size: 1.5rem;
    color: #555;
}

.random-month-copy-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.random-month-copy-btn:hover {
    background: #3e8e41;
    transform: translateY(-2px);
}

.random-month-copy-btn:active {
    transform: translateY(0);
}

/* Info Boxes */
.random-month-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.random-month-info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.random-month-info-box:hover {
    transform: translateY(-5px);
}

.random-month-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.random-month-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #444;
}

.random-month-info-box p {
    color: #666;
    line-height: 1.6;
}

/* Content Section */
.random-month-content {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    overflow: hidden;
}

.random-month-content-shape-1 {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(110, 142, 251, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.random-month-content-shape-2 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(167, 119, 227, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.random-month-content-title {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.random-month-content-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.random-month-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.random-month-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.random-month-features li:last-child {
    border-bottom: none;
}

.random-month-features li span {
    margin-left: 0.8rem;
}

.random-month-related-tool {
    background: #f5f7ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.random-month-related-tool h3 {
    margin-top: 0;
    color: #444;
}

.random-month-related-tool a {
    color: #6e8efb;
    text-decoration: none;
    font-weight: 600;
}

.random-month-related-tool a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.random-month-faq {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.random-month-faq-title {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: center;
}

.random-month-faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.random-month-faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: #f9f9f9;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    color: #444;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.random-month-faq-question:hover {
    background: #f0f0f0;
}

.random-month-faq-question svg {
    transition: transform 0.3s ease;
}

.random-month-faq-question.active svg {
    transform: rotate(180deg);
}

.random-month-faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.random-month-faq-answer.show {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 500px;
}

.random-month-faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .random-month-hero h1 {
        font-size: 2rem;
    }
    
    .random-month-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .random-month-content-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .random-month-hero {
        padding: 1.5rem;
    }
    
    .random-month-generator {
        padding: 1.5rem;
    }
    
    .random-month-options {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .random-month-result {
        font-size: 4rem;
    }
}