.florida-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 2rem;
    background: rgba(10, 25, 41, 0.1);
    backdrop-filter: blur(12px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
}

/* 动态背景 - 与首页一致 */
body {
    background: linear-gradient(135deg, #2d1354, #5a2a84, #8c52ff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* 科技感背景图案 - 与首页一致 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../../public/images/tech_background.svg'),
                      radial-gradient(circle at 25px 25px, rgba(157, 78, 221, 0.2) 2px, transparent 0),
                      radial-gradient(circle at 75px 75px, rgba(123, 44, 191, 0.15) 2px, transparent 0);
    background-size: cover, 100px 100px, 150px 150px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: -1;
    animation: floatBackground 60s linear infinite;
}

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

/* 背景装饰元素 - 与首页一致 */
.bg-decor {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

.decor-1 {
    width: 500px;
    height: 500px;
    background: #9D4EDD;
    top: -250px;
    right: -250px;
    animation: float 15s ease-in-out infinite;
}

.decor-2 {
    width: 400px;
    height: 400px;
    background: #7B2CBF;
    bottom: -200px;
    left: -200px;
    animation: float 12s ease-in-out infinite reverse;
}

.decor-3 {
    width: 300px;
    height: 300px;
    background: #5A189A;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

@keyframes floatBackground {
    0% {
        background-position: center, 0 0, 0 0;
    }
    25% {
        background-position: center, 10px 10px, 15px 15px;
    }
    50% {
        background-position: center, 0 20px, 0 30px;
    }
    75% {
        background-position: center, -10px 10px, -15px 15px;
    }
    100% {
        background-position: center, 0 0, 0 0;
    }
}

/* 导航栏样式 - 与首页一致 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-action {
    background-color: #b19cd9;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177, 156, 217, 0.4);
}

.btn-action:hover {
    background-color: #9D4EDD;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.6);
}

.btn-logout {
    background-color: #ff6b6b;
}

.btn-logout:hover {
    background-color: #ff4949;
}

/* 大按钮样式 - 与首页一致 */
.btn-large {
    background-color: #b19cd9;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(177, 156, 217, 0.5);
    display: inline-block;
}

.btn-large:hover {
    background-color: #9D4EDD;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.7);
}

.user-actions {
    display: flex;
    gap: 15px;
}


/* 英雄区域样式 */
.florida-hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.florida-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
}

.florida-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(241, 196, 15, 0.1);
    border-radius: 50%;
}

.florida-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.florida-hero p {
    font-size: 1.2rem;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 面包屑导航样式 */
.florida-breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: white;
}

.florida-breadcrumbs a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.florida-breadcrumbs a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* 城市网格样式 */
.florida-cities {
    margin-bottom: 50px;
}

.florida-cities h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.florida-cities h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.city-card {
    background: rgba(200, 200, 200, 0.15);
    color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.city-card a {
    display: block;
    padding: 25px 20px;
    text-decoration: none;
    color: white;
    position: relative;
    height: 100%;
}

.city-card i {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

/* 特色区域样式 */
.florida-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: white;
    line-height: 1.6;
}

/* 页脚样式 - 使用与首页一致的样式 */
/* 已删除.florida-footer相关样式，改为使用首页定义的footer.footer样式 */

/* 响应式设计 */
@media (max-width: 992px) {
    .florida-hero h1 {
        font-size: 2.2rem;
    }
    .florida-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .florida-hero {
        padding: 40px 20px;
    }
    .florida-hero h1 {
        font-size: 1.8rem;
    }
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .florida-nav .logo {
        font-size: 1.2rem;
    }
    .florida-hero h1 {
        font-size: 1.5rem;
    }
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .city-card a {
        padding: 20px 15px;
    }
}