        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(150deg, #663399, #008B8B);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .container {
            background: rgba(255, 255, 255, 0.95);
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            text-align: center;
            max-width: 600px;
            width: 100%;
        }
        
        .icon {
            font-size: 80px;
            margin-bottom: 30px;
            color: #663399;
        }
        
        h1 {
            font-size: 36px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        p {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .btn {
            background: linear-gradient(150deg, #663399, #008B8B);
            color: white;
            padding: 15px 40px;
            font-size: 18px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(102, 51, 153, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(102, 51, 153, 0.4);
            background: linear-gradient(150deg, #7744aa, #009C9C);
        }
        
        .construction-details {
            margin-top: 30px;
            padding: 20px;
            background: rgba(102, 51, 153, 0.1);
            border-radius: 10px;
            border-left: 4px solid #663399;
        }
        
        .construction-details p {
            margin-bottom: 0;
            color: #555;
            font-size: 16px;
        }